From 32d5624c7a16d51521b5055db059d431a7d02d8b Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Wed, 25 Jan 2017 16:57:06 +0000 Subject: [PATCH] Secondary initial commit --- BankingBot.sln | 28 + BankingBot/Attributes/ProviderIdentifier.cs | 28 + BankingBot/BankingBot.csproj | 81 + BankingBot/BrowserBot.cs | 21 + BankingBot/Client.cs | 35 + BankingBot/Contracts/IBrowserBot.cs | 9 + BankingBot/Contracts/IClient.cs | 7 + BankingBot/Contracts/ILoginCredentials.cs | 9 + BankingBot/Contracts/ILoginManager.cs | 7 + BankingBot/Contracts/IProviderLoginManager.cs | 7 + BankingBot/Enums/Provider.cs | 7 + .../LloydsLoginCredentials.cs | 18 + .../LoginCredentials/LoginCredentials.cs | 19 + .../LoginManagers/LloydsLoginManager.cs | 26 + BankingBot/LoginManagers/LoginManager.cs | 49 + BankingBot/Properties/AssemblyInfo.cs | 36 + BankingBot/Responses/LoginResponse.cs | 12 + BankingBot/bin/Debug/Ninject.xml | 6616 ++++++ BankingBot/bin/Debug/WebDriver.xml | 19178 ++++++++++++++++ .../BankingBot.csproj.FileListAbsolute.txt | 9 + ...le_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs | 0 ...le_5937a670-0e60-4077-877b-f7221da3dda1.cs | 0 ...le_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs | 0 BankingBot/packages.config | 5 + .../Ninject.3.2.2.0/Ninject.3.2.2.0.nupkg | Bin 0 -> 725376 bytes .../Ninject.3.2.2.0/lib/net35/Ninject.xml | 6668 ++++++ .../Ninject.3.2.2.0/lib/net40/Ninject.xml | 6616 ++++++ .../lib/net45-full/Ninject.xml | 6616 ++++++ packages/Ninject.3.2.2.0/lib/sl2/Ninject.xml | 6579 ++++++ .../Ninject.3.2.2.0/lib/sl3-wp/Ninject.xml | 6530 ++++++ packages/Ninject.3.2.2.0/lib/sl3/Ninject.xml | 6579 ++++++ .../lib/sl4-windowsphone71/Ninject.xml | 6478 ++++++ packages/Ninject.3.2.2.0/lib/sl4/Ninject.xml | 6527 ++++++ packages/Ninject.3.2.2.0/lib/sl5/Ninject.xml | 6527 ++++++ .../Selenium.WebDriver.3.0.1.nupkg | Bin 0 -> 2233300 bytes .../lib/net35/WebDriver.xml | 18912 +++++++++++++++ .../lib/net40/WebDriver.xml | 19178 ++++++++++++++++ 37 files changed, 123417 insertions(+) create mode 100644 BankingBot.sln create mode 100644 BankingBot/Attributes/ProviderIdentifier.cs create mode 100644 BankingBot/BankingBot.csproj create mode 100644 BankingBot/BrowserBot.cs create mode 100644 BankingBot/Client.cs create mode 100644 BankingBot/Contracts/IBrowserBot.cs create mode 100644 BankingBot/Contracts/IClient.cs create mode 100644 BankingBot/Contracts/ILoginCredentials.cs create mode 100644 BankingBot/Contracts/ILoginManager.cs create mode 100644 BankingBot/Contracts/IProviderLoginManager.cs create mode 100644 BankingBot/Enums/Provider.cs create mode 100644 BankingBot/LoginCredentials/LloydsLoginCredentials.cs create mode 100644 BankingBot/LoginCredentials/LoginCredentials.cs create mode 100644 BankingBot/LoginManagers/LloydsLoginManager.cs create mode 100644 BankingBot/LoginManagers/LoginManager.cs create mode 100644 BankingBot/Properties/AssemblyInfo.cs create mode 100644 BankingBot/Responses/LoginResponse.cs create mode 100644 BankingBot/bin/Debug/Ninject.xml create mode 100644 BankingBot/bin/Debug/WebDriver.xml create mode 100644 BankingBot/obj/Debug/BankingBot.csproj.FileListAbsolute.txt create mode 100644 BankingBot/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs create mode 100644 BankingBot/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs create mode 100644 BankingBot/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs create mode 100644 BankingBot/packages.config create mode 100644 packages/Ninject.3.2.2.0/Ninject.3.2.2.0.nupkg create mode 100644 packages/Ninject.3.2.2.0/lib/net35/Ninject.xml create mode 100644 packages/Ninject.3.2.2.0/lib/net40/Ninject.xml create mode 100644 packages/Ninject.3.2.2.0/lib/net45-full/Ninject.xml create mode 100644 packages/Ninject.3.2.2.0/lib/sl2/Ninject.xml create mode 100644 packages/Ninject.3.2.2.0/lib/sl3-wp/Ninject.xml create mode 100644 packages/Ninject.3.2.2.0/lib/sl3/Ninject.xml create mode 100644 packages/Ninject.3.2.2.0/lib/sl4-windowsphone71/Ninject.xml create mode 100644 packages/Ninject.3.2.2.0/lib/sl4/Ninject.xml create mode 100644 packages/Ninject.3.2.2.0/lib/sl5/Ninject.xml create mode 100644 packages/Selenium.WebDriver.3.0.1/Selenium.WebDriver.3.0.1.nupkg create mode 100644 packages/Selenium.WebDriver.3.0.1/lib/net35/WebDriver.xml create mode 100644 packages/Selenium.WebDriver.3.0.1/lib/net40/WebDriver.xml diff --git a/BankingBot.sln b/BankingBot.sln new file mode 100644 index 0000000..bf5ab58 --- /dev/null +++ b/BankingBot.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BankingBot", "BankingBot\BankingBot.csproj", "{ED9159EE-D75C-4E04-B99D-E2364493B841}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "Client\Client.csproj", "{5D22A7BD-CF77-43DD-99AE-949ACB1E45C6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {ED9159EE-D75C-4E04-B99D-E2364493B841}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ED9159EE-D75C-4E04-B99D-E2364493B841}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ED9159EE-D75C-4E04-B99D-E2364493B841}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ED9159EE-D75C-4E04-B99D-E2364493B841}.Release|Any CPU.Build.0 = Release|Any CPU + {5D22A7BD-CF77-43DD-99AE-949ACB1E45C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5D22A7BD-CF77-43DD-99AE-949ACB1E45C6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5D22A7BD-CF77-43DD-99AE-949ACB1E45C6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5D22A7BD-CF77-43DD-99AE-949ACB1E45C6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/BankingBot/Attributes/ProviderIdentifier.cs b/BankingBot/Attributes/ProviderIdentifier.cs new file mode 100644 index 0000000..8d5ced6 --- /dev/null +++ b/BankingBot/Attributes/ProviderIdentifier.cs @@ -0,0 +1,28 @@ +using System; +using BankingBot.Enums; + +namespace BankingBot.Attributes +{ + internal class ProviderIdentifier : Attribute + { + public readonly Provider Provider; + + public ProviderIdentifier(Provider provider) + { + Provider = provider; + } + + public static Provider? GetProviderFromType(Type t) + { + foreach (var attr in t.GetCustomAttributes(false)) + { + if ((ProviderIdentifier)attr != null) + { + return ((ProviderIdentifier)attr).Provider; + } + } + + return null; + } + } +} diff --git a/BankingBot/BankingBot.csproj b/BankingBot/BankingBot.csproj new file mode 100644 index 0000000..c77255c --- /dev/null +++ b/BankingBot/BankingBot.csproj @@ -0,0 +1,81 @@ + + + + + Debug + AnyCPU + {ED9159EE-D75C-4E04-B99D-E2364493B841} + Library + Properties + BankingBot + BankingBot + v4.6.1 + 512 + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\packages\Ninject.3.2.2.0\lib\net45-full\Ninject.dll + True + + + + + + + + + + + + ..\packages\Selenium.WebDriver.3.0.1\lib\net40\WebDriver.dll + True + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/BankingBot/BrowserBot.cs b/BankingBot/BrowserBot.cs new file mode 100644 index 0000000..081f25c --- /dev/null +++ b/BankingBot/BrowserBot.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using BankingBot.Contracts; +using OpenQA.Selenium; + +namespace BankingBot +{ + public class BrowserBot : IBrowserBot + where T : IWebDriver + { + public IWebDriver WebDriver { get; private set; } + + public BrowserBot() + { + WebDriver = (IWebDriver)Activator.CreateInstance(typeof(T)); + } + } +} diff --git a/BankingBot/Client.cs b/BankingBot/Client.cs new file mode 100644 index 0000000..315d763 --- /dev/null +++ b/BankingBot/Client.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using BankingBot.Contracts; +using BankingBot.LoginManagers; +using OpenQA.Selenium; + +namespace BankingBot +{ + public class Client : IClient + where T : IWebDriver + { + #region Dependencies + private readonly ILoginManager _loginManager; + protected readonly IBrowserBot BrowserBot; + #endregion + + public ILoginCredentials LoginCredentials { get; private set; } + + public Client() + { + BrowserBot = new BrowserBot(); + _loginManager = new LoginManager(BrowserBot); + } + + public void Login(ILoginCredentials credentials) + { + this.LoginCredentials = credentials; + + _loginManager.Login(credentials); + } + } +} diff --git a/BankingBot/Contracts/IBrowserBot.cs b/BankingBot/Contracts/IBrowserBot.cs new file mode 100644 index 0000000..6274869 --- /dev/null +++ b/BankingBot/Contracts/IBrowserBot.cs @@ -0,0 +1,9 @@ +using OpenQA.Selenium; + +namespace BankingBot.Contracts +{ + public interface IBrowserBot + { + IWebDriver WebDriver { get; } + } +} \ No newline at end of file diff --git a/BankingBot/Contracts/IClient.cs b/BankingBot/Contracts/IClient.cs new file mode 100644 index 0000000..6f1156e --- /dev/null +++ b/BankingBot/Contracts/IClient.cs @@ -0,0 +1,7 @@ +namespace BankingBot.Contracts +{ + public interface IClient + { + void Login(ILoginCredentials credentials); + } +} \ No newline at end of file diff --git a/BankingBot/Contracts/ILoginCredentials.cs b/BankingBot/Contracts/ILoginCredentials.cs new file mode 100644 index 0000000..b504b5c --- /dev/null +++ b/BankingBot/Contracts/ILoginCredentials.cs @@ -0,0 +1,9 @@ +using BankingBot.Enums; + +namespace BankingBot.Contracts +{ + public interface ILoginCredentials + { + Provider? GetProvider(); + } +} \ No newline at end of file diff --git a/BankingBot/Contracts/ILoginManager.cs b/BankingBot/Contracts/ILoginManager.cs new file mode 100644 index 0000000..18cda3b --- /dev/null +++ b/BankingBot/Contracts/ILoginManager.cs @@ -0,0 +1,7 @@ +namespace BankingBot.Contracts +{ + public interface ILoginManager + { + void Login(ILoginCredentials credentials); + } +} \ No newline at end of file diff --git a/BankingBot/Contracts/IProviderLoginManager.cs b/BankingBot/Contracts/IProviderLoginManager.cs new file mode 100644 index 0000000..22479d7 --- /dev/null +++ b/BankingBot/Contracts/IProviderLoginManager.cs @@ -0,0 +1,7 @@ +namespace BankingBot.Contracts +{ + public interface IProviderLoginManager + { + void Login(ILoginCredentials credentials); + } +} \ No newline at end of file diff --git a/BankingBot/Enums/Provider.cs b/BankingBot/Enums/Provider.cs new file mode 100644 index 0000000..7b0a642 --- /dev/null +++ b/BankingBot/Enums/Provider.cs @@ -0,0 +1,7 @@ +namespace BankingBot.Enums +{ + public enum Provider + { + Lloyds + } +} \ No newline at end of file diff --git a/BankingBot/LoginCredentials/LloydsLoginCredentials.cs b/BankingBot/LoginCredentials/LloydsLoginCredentials.cs new file mode 100644 index 0000000..4ee4ea0 --- /dev/null +++ b/BankingBot/LoginCredentials/LloydsLoginCredentials.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using BankingBot.Attributes; +using BankingBot.Contracts; + +namespace BankingBot.LoginCredentials +{ + [ProviderIdentifier(Enums.Provider.Lloyds)] + public class LloydsLoginCredentials : LoginCredentials + { + public string Username { get; set; } + public string Password { get; set; } + public string Passphrase { get; set; } + } +} diff --git a/BankingBot/LoginCredentials/LoginCredentials.cs b/BankingBot/LoginCredentials/LoginCredentials.cs new file mode 100644 index 0000000..15e4e39 --- /dev/null +++ b/BankingBot/LoginCredentials/LoginCredentials.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using BankingBot.Attributes; +using BankingBot.Contracts; +using BankingBot.Enums; + +namespace BankingBot.LoginCredentials +{ + public abstract class LoginCredentials : ILoginCredentials + { + public Provider? GetProvider() + { + return ProviderIdentifier.GetProviderFromType(GetType()); + } + } +} diff --git a/BankingBot/LoginManagers/LloydsLoginManager.cs b/BankingBot/LoginManagers/LloydsLoginManager.cs new file mode 100644 index 0000000..87c2788 --- /dev/null +++ b/BankingBot/LoginManagers/LloydsLoginManager.cs @@ -0,0 +1,26 @@ +using System; +using BankingBot.Attributes; +using BankingBot.Contracts; +using BankingBot.LoginCredentials; +using OpenQA.Selenium; + +namespace BankingBot.LoginManagers +{ + [ProviderIdentifier(Enums.Provider.Lloyds)] + public class LloydsLoginManager : IProviderLoginManager + { + //private LloydsLoginCredentials _credentials; + private readonly IBrowserBot _browserBot; + + public LloydsLoginManager(IBrowserBot browserBot) + { + _browserBot = browserBot; + } + + public void Login(ILoginCredentials credentials) + { + _browserBot.WebDriver.Url = "https://online.lloydsbank.co.uk/personal/logon/login.jsp"; + _browserBot.WebDriver.Navigate(); + } + } +} diff --git a/BankingBot/LoginManagers/LoginManager.cs b/BankingBot/LoginManagers/LoginManager.cs new file mode 100644 index 0000000..d5573c4 --- /dev/null +++ b/BankingBot/LoginManagers/LoginManager.cs @@ -0,0 +1,49 @@ +using System; +using System.Linq; +using BankingBot.Attributes; +using BankingBot.Contracts; +using OpenQA.Selenium; + +namespace BankingBot.LoginManagers +{ + public class LoginManager : ILoginManager + { + private readonly IBrowserBot _browserBot; + + public LoginManager(IBrowserBot browserBot) + { + _browserBot = browserBot; + } + + public void Login(ILoginCredentials credentials) + { + var provLoginManagerType = GetProviderLoginManagerType(credentials); + var provLoginManager = (IProviderLoginManager)Activator.CreateInstance(provLoginManagerType, _browserBot); + provLoginManager.Login(credentials); + } + + private Type GetProviderLoginManagerType(ILoginCredentials credentials) + { + // Get all "provider login manager" classes in the assembly + // (any class that implements IProviderLoginManager) + var providerLoginManagerTypes = AppDomain.CurrentDomain.GetAssemblies() + .SelectMany(s => s.GetTypes()) + .Where(p => + typeof(IProviderLoginManager).IsAssignableFrom(p) && + p != typeof(IProviderLoginManager)); + + var credentialsProvider = credentials.GetProvider(); + foreach (var type in providerLoginManagerTypes) + { + // Get associated provider for each "provider login manager" class + var provider = ProviderIdentifier.GetProviderFromType(type); + if (provider == credentialsProvider) + { + return type; + } + } + + return null; + } + } +} diff --git a/BankingBot/Properties/AssemblyInfo.cs b/BankingBot/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..12a8f16 --- /dev/null +++ b/BankingBot/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +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("BankingBot")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("BankingBot")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[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("ed9159ee-d75c-4e04-b99d-e2364493b841")] + +// 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/BankingBot/Responses/LoginResponse.cs b/BankingBot/Responses/LoginResponse.cs new file mode 100644 index 0000000..3be814f --- /dev/null +++ b/BankingBot/Responses/LoginResponse.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BankingBot.Responses +{ + public class LoginResponse + { + } +} diff --git a/BankingBot/bin/Debug/Ninject.xml b/BankingBot/bin/Debug/Ninject.xml new file mode 100644 index 0000000..d43312d --- /dev/null +++ b/BankingBot/bin/Debug/Ninject.xml @@ -0,0 +1,6616 @@ + + + + Ninject + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + An object that notifies when it is disposed. + + + + + An object that can report whether or not it is disposed. + + + + + Gets a value indicating whether this instance is disposed. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases resources held by the object. + + + + + Releases resources before the object is reclaimed by garbage collection. + + + + + Gets a value indicating whether this instance is disposed. + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Provides a path to resolve instances. + + + + + A hack to hide methods defined on for IntelliSense + on fluent interfaces. Credit to Daniel Cazzulino. + + + + + Gets the type of this instance. + + The type of this instance. + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + An object that fires an event when it is disposed. + + + + + Occurs when the object is disposed. + + + + + Initializes a new instance of the class. + + The parent resolution root. + + + + Releases resources held by the object. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + + Gets or sets the parent resolution root (usually the kernel). + + + + + Occurs when the object is disposed. + + + + + Stores the objects that were activated + + + + + A component that contributes to the internals of Ninject. + + + + + A component that contributes to the internals of Ninject. + + + + + Gets or sets the settings. + + + + + Gets or sets the settings. + + + + + Stores the objects that were activated + + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + An object that is prunealble. + + + + + Removes instances from the cache which should no longer be re-used. + + + + + The objects that were activated as reference equal weak references. + + + + + The objects that were activated as reference equal weak references. + + + + + Initializes a new instance of the class. + + The cache pruner. + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + Prunes this instance. + + + + + Removes all dead objects. + + The objects collection to be freed of dead objects. + + + + Gets the activated object count. + + The activated object count. + + + + Gets the deactivated object count. + + The deactivated object count. + + + + Tracks instances for re-use in certain scopes. + + + + + Tracks instances for re-use in certain scopes. + + + + + Stores the specified instance in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets the number of entries currently stored in the cache. + + + + + Contains all cached instances. + This is a dictionary of scopes to a multimap for bindings to cache entries. + + + + + Initializes a new instance of the class. + + The pipeline component. + The cache pruner component. + + + + Releases resources held by the object. + + + + + + Stores the specified context in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Removes instances from the cache which should no longer be re-used. + + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets all entries for a binding withing the selected scope. + + The bindings. + All bindings of a binding. + + + + Gets all cache entries. + + Returns all cache entries. + + + + Forgets the specified cache entries. + + The cache entries. + + + + Forgets the specified entry. + + The entry. + + + + Gets the pipeline component. + + + + + Gets the number of entries currently stored in the cache. + + + + + An entry in the cache. + + + + + Initializes a new instance of the class. + + The context. + The instance reference. + + + + Gets the context of the instance. + + The context. + + + + Gets the instance reference. + + The instance reference. + + + + Uses a and some magic to poll + the garbage collector to see if it has run. + + + + + Prunes instances from an based on environmental information. + + + + + Starts pruning the specified cache based on the rules of the pruner. + + The cache that will be pruned. + + + + Stops pruning. + + + + + indicator for if GC has been run. + + + + + The caches that are being pruned. + + + + + The timer used to trigger the cache pruning + + + + + Releases resources held by the object. + + + + + Starts pruning the specified pruneable based on the rules of the pruner. + + The pruneable that will be pruned. + + + + Stops pruning. + + + + + Compares ReferenceEqualWeakReferences to objects + + + + + Returns if the specifed objects are equal. + + The first object. + The second object. + True if the objects are equal; otherwise false + + + + Returns the hash code of the specified object. + + The object for which the hash code is calculated. + The hash code of the specified object. + + + + A provider that delegates to a callback method to create instances. + + The type of instances the provider creates. + + + + A simple abstract provider for instances of a specific type. + + The type of instances the provider creates. + + + + Provides instances ot the type T + + The type provides by this implementation. + + + + Creates instances of services. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Initializes a new instance of the CallbackProvider<T> class. + + The callback method that will be called to create instances. + + + + Invokes the callback method to create an instance. + + The context. + The created instance. + + + + Gets the callback method used by the provider. + + + + + A provider that always returns the same constant value. + + The type of value that is returned. + + + + Initializes a new instance of the ConstantProvider<T> class. + + The value that the provider should return. + + + + Creates an instance within the specified context. + + The context. + The constant value this provider returns. + + + + Gets the value that the provider will return. + + + + + The standard provider for types, which activates instances via a . + + + + + Initializes a new instance of the class. + + The type (or prototype) of instances the provider creates. + The planner component. + The constructor scorer component. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the value to inject into the specified target. + + The context. + The target. + The value to inject into the specified target. + + + + Gets the implementation type that the provider will activate an instance of + for the specified service. + + The service in question. + The implementation type that will be activated. + + + + Gets a callback that creates an instance of the + for the specified type. + + The prototype the provider instance will create. + The created callback. + + + + Gets a callback that creates an instance of the + for the specified type and constructor. + + The prototype the provider instance will create. + The constructor. + The created callback. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Gets or sets the planner component. + + + + + Gets or sets the selector component. + + + + + Adds all activated instances to the activation cache. + + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The activation cache. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Gets or sets the settings. + + The ninject settings. + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Executes actions defined on the binding during activation and deactivation. + + + + + Calls the activation actions defined on the binding. + + The context. + A reference to the instance being activated. + + + + Calls the deactivation actions defined on the binding. + + The context. + A reference to the instance being deactivated. + + + + During deactivation, disposes instances that implement . + + + + + Disposes the specified instance. + + The context. + A reference to the instance being deactivated. + + + + During activation, initializes instances that implement . + + + + + Initializes the specified instance. + + The context. + A reference to the instance being activated. + + + + Injects methods on an instance during activation. + + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Injects properties on an instance during activation. + + + + + Initializes a new instance of the class. + + The injector factory component. + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Applies user supplied override values to instance properties. + + The context. + A reference to the instance being activated. + The parameter override value accessors. + + + + Gets the value to inject into the specified target. + + The context. + The target. + all property values of the current request. + The value to inject into the specified target. + + + + Gets the injector factory component. + + + + + Starts instances that implement during activation, + and stops them during deactivation. + + + + + Starts the specified instance. + + The context. + A reference to the instance being activated. + + + + Stops the specified instance. + + The context. + A reference to the instance being deactivated. + + + + Contains information about the activation of a single instance. + + + + + Contains information about the activation of a single instance. + + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Resolves this instance for this context. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Initializes a new instance of the class. + + The kernel managing the resolution. + The context's request. + The context's binding. + The cache component. + The planner component. + The pipeline component. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Resolves the instance associated with this hook. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Gets or sets the cache component. + + + + + Gets or sets the planner component. + + + + + Gets or sets the pipeline component. + + + + + Holds an instance during activation or after it has been cached. + + + + + Returns a value indicating whether the instance is of the specified type. + + The type in question. + if the instance is of the specified type, otherwise . + + + + Returns the instance as the specified type. + + The requested type. + The instance. + + + + Executes the specified action if the instance if of the specified type. + + The type in question. + The action to execute. + + + + Gets or sets the instance. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Determines whether the specified binding satisfies the constraint defined on this request. + + The binding. + True if the binding satisfies the constraint; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request should return a unique result. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The strategies to execute during activation and deactivation. + The activation cache. + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Initializes a new instance of the class. + + The service that was requested. + The constraint that will be applied to filter the bindings used for the request. + The parameters that affect the resolution. + The scope callback, if an external scope was specified. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + + + + Initializes a new instance of the class. + + The parent context. + The service that was requested. + The target that will receive the injection. + The scope callback, if an external scope was specified. + + + + Determines whether the specified binding satisfies the constraints defined on this request. + + The binding. + True if the binding satisfies the constraints; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request is for a single service. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Gets the callback that resolves the scope for the request, if an external scope was provided. + + + + + Defines a constraint on the decorated member. + + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Indicates that the decorated member should be injected. + + + + + Indicates that the decorated member should only be injected using binding(s) registered + with the specified name. + + + + + Initializes a new instance of the class. + + The name of the binding(s) to use. + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Gets the binding name. + + + + + Indicates that the decorated member represents an optional dependency. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes all registrations for the specified component. + + The component's type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Gets or sets the kernel that owns the component container. + + + + + Releases resources held by the object. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets or sets the kernel that owns the component container. + + + + + Provides meaningful exception messages. + + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that a module with the same name is already loaded. + + The new module. + The existing module. + The exception message. + + + + Generates a message saying that no module has been loaded with the specified name. + + The module name. + The exception message. + + + + Generates a message saying that the binding could not be uniquely resolved. + + The request. + The matching bindings, already formatted as strings + The exception message. + + + + Generates a message saying that the binding could not be resolved on the specified request. + + The request. + The exception message. + + + + Generates a message saying that the specified context has cyclic dependencies. + + The context. + The exception message. + + + + Generates a message saying that an invalid attribute type is used in the binding condition. + + The names of the services. + Name of the method. + The type. + The exception message. + + + + Generates a message saying that no constructors are available on the specified context. + + The context. + The exception message. + + + + Generates a message saying that no constructors are available for the given component. + + The component. + The implementation. + The exception message. + + + + Generates a message saying that the specified component is not registered. + + The component. + The exception message. + + + + Generates a message saying that the specified property could not be resolved on the specified request. + + The request. + The property name. + The exception message. + + + + Generates a message saying that the provider on the specified context returned null. + + The context. + The exception message. + + + + Generates a message saying that the constructor is ambiguous. + + The context. + The best constructor directives. + The exception message. + + + + Formats the constructor. + + The constructor. + The string writer. + + + + Formats the attribute. + + The string writer. + The attribute. + + + + Provides extension methods for string formatting + + + + + Formats the activation path into a meaningful string representation. + + The request to be formatted. + The activation path formatted as string. + + + + Formats the given binding into a meaningful string representation. + + The binding to be formatted. + The context. + The binding formatted as string + + + + Formats the specified request into a meaningful string representation. + + The request to be formatted. + The request formatted as string. + + + + Formats the specified target into a meaningful string representation.. + + The target to be formatted. + The target formatted as string. + + + + Formats the specified type into a meaningful string representation.. + + The type to be formatted. + The type formatted as string. + + + + Provides extension methods for see cref="IEnumerable{T}"/> + + + + + Executes the given action for each of the elements in the enumerable. + + + The series. + The action. + + + + Converts the given enumerable type to prevent changed on the type behind. + + The type of the enumerable. + The series. + The input type as real enumerable not castable to the original type. + + + + Extensions for MemberInfo + + + + + Determines whether the specified member has attribute. + + The type of the attribute. + The member. + + true if the specified member has attribute; otherwise, false. + + + + + Determines whether the specified member has attribute. + + The member. + The type of the attribute. + + true if the specified member has attribute; otherwise, false. + + + + + Gets the property info from its declared tpe. + + The member info. + The property definition. + The flags. + The property info from the declared type of the property. + + + + Determines whether the specified property info is private. + + The property info. + + true if the specified property info is private; otherwise, false. + + + + + Gets the custom attributes. + This version is able to get custom attributes for properties from base types even if the property is none public. + + The member. + Type of the attribute. + if set to true [inherited]. + + + + + Extension methods for type + + + + + + Gets an enumerable containing the given type and all its base types + + The type. + An enumerable containing the given type and all its base types + + + + Inheritable weak reference base class for Silverlight + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Gets a value indicating whether this instance is alive. + + true if this instance is alive; otherwise, false. + + + + Gets or sets the target of this weak reference. + + The target of this weak reference. + + + + Represents a future value. + + The type of value. + + + + Initializes a new instance of the Future<T> class. + + The callback that will be triggered to read the value. + + + + Gets the value from the future. + + The future. + The future value. + + + + Gets the value, resolving it if necessary. + + + + + Gets the callback that will be called to resolve the value. + + + + + Indicates the object has a reference to a . + + + + + Gets the binding. + + + + + Indicates that the object has a reference to an . + + + + + Gets the kernel. + + + + + A data structure that contains multiple values for a each key. + + The type of key. + The type of value. + + + + Adds the specified value for the specified key. + + The key. + The value. + + + + Removes the specified value for the specified key. + + The key. + The value. + True if such a value existed and was removed; otherwise false. + + + + Removes all values for the specified key. + + The key. + True if any such values existed; otherwise false. + + + + Removes all values. + + + + + Determines whether the multimap contains any values for the specified key. + + The key. + True if the multimap has one or more values for the specified key; otherwise, false. + + + + Determines whether the multimap contains the specified value for the specified key. + + The key. + The value. + True if the multimap contains such a value; otherwise, false. + + + + Returns an enumerator that iterates through a the multimap. + + An object that can be used to iterate through the multimap. + + + + Gets the collection of values stored under the specified key. + + The key. + + + + Gets the collection of keys. + + + + + Gets the collection of collections of values. + + + + + Weak reference that can be used in collections. It is equal to the + object it references and has the same hash code. + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Scope callbacks for standard scopes. + + + + + Gets the callback for transient scope. + + + + + Gets the callback for singleton scope. + + + + + Gets the callback for thread scope. + + + + + A delegate that can inject values into a constructor. + + + + + Creates injectors for members via s. + + + + + Creates injectors from members. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A delegate that can inject values into a method. + + + + + A delegate that can inject values into a property. + + + + + Creates injectors from members via reflective invocation. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + Retrieves assembly names from file names using a temporary app domain. + + + + + Retrieves assembly names from file names using a temporary app domain. + + + + + Gets all assembly names of the assemblies in the given files that match the filter. + + The filenames. + The filter. + All assembly names of the assemblies in the given files that match the filter. + + + + Gets all assembly names of the assemblies in the given files that match the filter. + + The filenames. + The filter. + All assembly names of the assemblies in the given files that match the filter. + + + + Creates a temporary app domain. + + The created app domain. + + + + This class is loaded into the temporary appdomain to load and check if the assemblies match the filter. + + + + + Gets the assembly names of the assemblies matching the filter. + + The filenames. + The filter. + All assembly names of the assemblies matching the filter. + + + + Loads modules from compiled assemblies. + + + + + Loads modules at runtime by searching external files. + + + + + Loads modules from the specified files. + + The names of the files to load modules from. + + + + Gets the file extensions that the plugin understands how to load. + + + + + The assembly name retriever. + + + + + The file extensions that are supported. + + + + + Initializes a new instance of the class. + + The kernel into which modules will be loaded. + The assembly name retriever. + + + + Loads modules from the specified files. + + The names of the files to load modules from. + + + + Gets the kernel into which modules will be loaded. + + + + + Gets the file extensions that the plugin understands how to load. + + + + + Finds modules defined in external files. + + + + + Loads any modules found in the files that match the specified patterns. + + The patterns to search. + + + + A pluggable unit that can be loaded into an . + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Gets the module's name. + + + + + Automatically finds and loads modules from assemblies. + + + + + Initializes a new instance of the class. + + The kernel into which modules will be loaded. + + + + Loads any modules found in the files that match the specified patterns. + + The patterns to search. + + + + Gets or sets the kernel into which modules will be loaded. + + + + + A loadable unit that defines bindings for your application. + + + + + Provides a path to register bindings. + + + + + Provides a path to register bindings. + + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax. + + + + Declares a binding from the service to itself. + + The services to bind. + The fluent syntax. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The services to re-bind. + The fluent syntax. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The services to bind. + The fluent syntax + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The services to re-bind. + The fluent syntax + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel. + + The kernel. + + + + Initializes a new instance of the class. + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel that the module is loaded into. + + + + + Gets the module's name. Only a single module with a given name can be loaded at one time. + + + + + Gets the bindings that were registered by the module. + + + + + Gets the kernel. + + The kernel. + + + + Overrides the injected value of a constructor argument. + + + + + Modifies an activation process in some way. + + + + + Modifies an activation process in some way. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Initializes a new instance of the class. + + The name of the parameter. + The value of the parameter. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Defines the interface for constructor arguments. + + + + + Determines if the parameter applies to the given target. + + + Only one parameter may return true. + + The context. + The target. + Tre if the parameter applies in the specified context to the specified target. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + + + + + Overrides the injected value of a property. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Overrides the injected value of a constructor argument. + + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + True if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Overrides the injected value of a constructor argument. + + + + + A weak reference to the constructor argument value. + + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + Keeps a weak reference to the value. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + + + + + Contains logic about which bindings to use for a given service request + when other attempts have failed. + + + + + Returns any bindings from the specified collection that match the specified request. + + The multimap of all registered bindings. + The request in question. + The series of matching bindings. + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains logic about which bindings to use for a given service request. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Resolves bindings for open generic types. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Resolves bindings that have been registered directly for the service. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains information about a service registration. + + + + + Contains information about a service registration. + + + + + The configuration of a binding. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + True if the request satisfies the condition; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Gets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + The binding configuration. + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + + The object that will act as the scope, or if the service is transient. + + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + + True if the request satisfies the condition; otherwise false. + + + + + Gets or sets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Gets the binding's metadata. + + + + + + Gets or sets the type of target for the binding. + + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + + Gets or sets the condition defined for the binding. + + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + + Gets the parameters defined for the binding. + + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + + Provides a root for the fluent syntax associated with an . + + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The type of the returned syntax. + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of the returned fleunt syntax + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Adds the constructor arguments for the specified constructor expression. + + The ctor expression. + The constructor argument syntax parameter expression. + + + + Adds a constructor argument for the specified argument expression. + + The argument. + Name of the argument. + The constructor argument syntax parameter expression. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Gets the names of the services. + + The names of the services. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Initializes a new instance of the class. + + The context. + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + The fourth service type to be bound. + + + + Used to define a basic binding syntax builder. + + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Used to define the target of a binding. + + The service being bound. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Gets the binding being built. + + + + + The configuration of a binding. + + + + + Initializes a new instance of the class. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the conditions defined on this binding. + + The request. + True if the request satisfies the conditions; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + The syntax to define bindings. + + The type of the service. + + + + Used to set the condition, scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to define the conditions under which a binding should be used. + + The service being bound. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified types. + Types that derive from one of the specified types are considered as valid targets. + Should match at lease one of the targets. + + The types to match. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match one of the specified types exactly. Types that derive from one of the specified types + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Used to define the scope in which instances activated via a binding should be re-used. + + The service being bound. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Used to define the name of a binding. + + The service being bound. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Used to add additional information to a binding. + + The service being bound. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Used to add additional actions to be performed during activation or deactivation of instances via a binding. + + The service being bound. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Used to set the scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to set the name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to add additional information or actions to a binding. + + The service being bound. + + + + The names of the services added to the exceptions. + + + + + Initializes a new instance of the BindingBuilder<T> class. + + The binding configuration to build. + The names of the configured services. + The kernel. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Describes the target of a binding. + + + + + Indicates that the binding is from a type to itself. + + + + + Indicates that the binding is from one type to another. + + + + + Indicates that the binding is from a type to a provider. + + + + + Indicates that the binding is from a type to a callback method. + + + + + Indicates that the binding is from a type to a constant value. + + + + + Describes the injection of a constructor. + + + + + Describes the injection of a method or constructor. + + + + + A piece of information used in an . (Just a marker.) + + + + + Initializes a new instance of the MethodInjectionDirectiveBase<TMethod, TInjector> class. + + The method this directive represents. + The injector that will be triggered. + + + + Creates targets for the parameters of the method. + + The method. + The targets for the method's parameters. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the targets for the directive. + + + + + Initializes a new instance of the class. + + The constructor described by the directive. + The injector that will be triggered. + + + + The base .ctor definition. + + + + + Describes the injection of a method. + + + + + Initializes a new instance of the class. + + The method described by the directive. + The injector that will be triggered. + + + + Describes the injection of a property. + + + + + Initializes a new instance of the class. + + The member the directive describes. + The injector that will be triggered. + + + + Creates a target for the property. + + The property. + The target for the property. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the injection target for the directive. + + + + + Adds a directive to plans indicating which constructor should be injected during activation. + + + + + Contributes to the generation of a . + + + + + Contributes to the specified plan. + + The plan that is being generated. + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for the constructor + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which methods should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each method + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which properties should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each property + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Represents a site on a type where a value will be injected. + + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the type of the target. + + + + + Gets the name of the target. + + + + + Gets the member that contains the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Represents a site on a type where a value can be injected. + + The type of site this represents. + + + + Initializes a new instance of the Target<T> class. + + The member that contains the target. + The site represented by the target. + + + + Returns an array of custom attributes of a specified type defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes of the specified type. + + + + Returns an array of custom attributes defined on the target. + + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes. + + + + Returns a value indicating whether an attribute of the specified type is defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + True if such an attribute is defined; otherwise false. + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the value(s) that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + A series of values that are available for injection. + + + + Gets the value that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + The value that is to be injected. + + + + Reads whether the target represents an optional dependency. + + if it is optional; otherwise . + + + + Reads the resolution constraint from target. + + The resolution constraint. + + + + Gets the member that contains the target. + + + + + Gets or sets the site (property, parameter, etc.) represented by the target. + + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Initializes a new instance of the class. + + The method that defines the parameter. + The parameter that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Initializes a new instance of the class. + + The property that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Describes the means by which a type should be activated. + + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Generates plans for how to activate instances. + + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Describes the means by which a type should be activated. + + + + + Initializes a new instance of the class. + + The type the plan describes. + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Gets the directives defined in the plan. + + + + + Generates plans for how to activate instances. + + + + + Initializes a new instance of the class. + + The strategies to execute during planning. + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Creates an empty plan for the specified type. + + The type for which a plan should be created. + The created plan. + + + + Creates a new plan for the specified type. + This method requires an active reader lock! + + The type. + The newly created plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Generates scores for constructors, to determine which is the best one to call during activation. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Determines whether members should be injected during activation. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Constructor selector that selects the constructor matching the one passed to the constructor. + + + + + Initializes a new instance of the class. + + The constructor info of the constructor that shall be selected. + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Scores constructors by either looking for the existence of an injection marker + attribute, or by counting the number of parameters. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Checkes whether a binding exists for a given target. + + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checkes whether a binding exists for a given target on the specified kernel. + + The kernel. + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checks whether any parameters exist for the geiven target.. + + The context. + The target. + Whether a parameter exists for the target in the given context. + + + + Determines whether members should be injected during activation by checking + if they are decorated with an injection marker attribute. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Selects members for injection. + + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets or sets the constructor scorer. + + + + + Gets the heuristics used to determine which members should be injected. + + + + + Selects members for injection. + + + + + Initializes a new instance of the class. + + The constructor scorer. + The injection heuristics. + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets the default binding flags. + + + + + Gets or sets the constructor scorer. + + + + + Gets the property injection heuristics. + + + + + Extension methods that enhance module loading. + + + + + Creates a new instance of the module and loads it into the kernel. + + The type of the module. + The kernel. + + + + Loads the module(s) into the kernel. + + The kernel. + The modules to load. + + + + Loads modules from the files that match the specified pattern(s). + + The kernel. + The file patterns (i.e. "*.dll", "modules/*.rb") to match. + + + + Loads modules defined in the specified assemblies. + + The kernel. + The assemblies to search. + + + + Extensions that enhance resolution of services. + + + + + Gets an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Evaluates if an instance of the specified service can be resolved. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding with the specified name can be resolved. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding that matches the specified constraint can be resolved. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Indicates that an error occured during activation of an instance. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The exception message. + + + + Initializes a new instance of the class. + + The exception message. + The inner exception. + + + + Initializes a new instance of the class. + + The serialized object data. + The serialization context. + + + + Allows to register kernel globally to perform some tasks on all kernels. + The registration is done by loading the GlobalKernelRegistrationModule to the kernel. + + + + + Performs an action on all registered kernels. + + The action. + + + + Registers the kernel into which the module is loaded on the GlobalKernelRegistry using the + type specified by TGlobalKernelRegistry. + + The type that is used to register the kernel. + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + A service that requires initialization after it is activated. + + + + + Initializes the instance. Called during activation. + + + + + A super-factory that can create objects of all kinds, following hints provided by s. + + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Loads modules from the files that match the specified pattern(s). + + The file patterns (i.e. "*.dll", "modules/*.rb") to match. + + + + Loads modules defined in the specified assemblies. + + The assemblies to search. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets the attribute that indicates that a member should be injected. + + + + + Gets the interval at which the cache should be pruned. + + + + + Gets the default scope callback. + + + + + Gets a value indicating whether the kernel should automatically load extensions at startup. + + + + + Gets the paths that should be searched for extensions. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets a value indicating whether Ninject should inject non public members. + + + + + Gets a value indicating whether Ninject should inject private properties of base classes. + + + Activating this setting has an impact on the performance. It is recomended not + to use this feature and use constructor injection instead. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By defuault this is disabled and whenever a provider returns null an exception is thrown. + + true if null is allowed as injected value otherwise false. + + + + A service that is started when activated, and stopped when deactivated. + + + + + Starts this instance. Called during activation. + + + + + Stops this instance. Called during deactivation. + + + + + The base implementation of an . + + + + + Lock used when adding missing bindings. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The component container to use. + The configuration to use. + The modules to load into the kernel. + + + + Releases resources held by the object. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Loads modules from the files that match the specified pattern(s). + + The file patterns (i.e. "*.dll", "modules/*.rb") to match. + + + + Loads modules defined in the specified assemblies. + + The assemblies to search. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Returns an IComparer that is used to determine resolution precedence. + + An IComparer that is used to determine resolution precedence. + + + + Returns a predicate that can determine if a given IBinding matches the request. + + The request/ + A predicate that can determine if a given IBinding matches the request. + + + + Adds components to the kernel during startup. + + + + + Attempts to handle a missing binding for a service. + + The service. + True if the missing binding can be handled; otherwise false. + + + + Attempts to handle a missing binding for a request. + + The request. + True if the missing binding can be handled; otherwise false. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Creates a context for the specified request and binding. + + The request. + The binding. + The created context. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets or sets the attribute that indicates that a member should be injected. + + + + + Gets or sets the interval at which the GC should be polled. + + + + + Gets or sets the default scope callback. + + + + + Gets or sets a value indicating whether the kernel should automatically load extensions at startup. + + + + + Gets or sets the paths that should be searched for extensions. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets a value indicating whether Ninject should inject non public members. + + + + + Gets a value indicating whether Ninject should inject private properties of base classes. + + + Activating this setting has an impact on the performance. It is recomended not + to use this feature and use constructor injection instead. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By default this is disabled and whenever a provider returns null an exception is thrown. + + + true if null is allowed as injected value otherwise false. + + + + + The standard implementation of a kernel. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Adds components to the kernel during startup. + + + + + Gets the kernel. + + The kernel. + + + diff --git a/BankingBot/bin/Debug/WebDriver.xml b/BankingBot/bin/Debug/WebDriver.xml new file mode 100644 index 0000000..a944c06 --- /dev/null +++ b/BankingBot/bin/Debug/WebDriver.xml @@ -0,0 +1,19178 @@ + + + + WebDriver + + + + + Provides a mechanism by which to find elements within a document. + + It is possible to create your own locating mechanisms for finding documents. + In order to do this,subclass this class and override the protected methods. However, + it is expected that that all subclasses rely on the basic finding mechanisms provided + through static methods of this class. An example of this can be found in OpenQA.Support.ByIdOrName + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the given functions to find elements. + + A function that takes an object implementing + and returns the found . + A function that takes an object implementing + and returns a of the foundIWebElements. + IWebElements/>. + + + + Determines if two instances are equal. + + One instance to compare. + The other instance to compare. + + if the two instances are equal; otherwise, . + + + + Determines if two instances are unequal. + s + One instance to compare.The other instance to compare. if the two instances are not equal; otherwise, . + + + Gets a mechanism to find elements by their ID. + + The ID to find. + A object the driver can use to find the elements. + + + + Gets a mechanism to find elements by their link text. + + The link text to find. + A object the driver can use to find the elements. + + + + Gets a mechanism to find elements by their name. + + The name to find. + A object the driver can use to find the elements. + + + + Gets a mechanism to find elements by an XPath query. + When searching within a WebElement using xpath be aware that WebDriver follows standard conventions: + a search prefixed with "//" will search the entire document, not just the children of this current node. + Use ".//" to limit your search to the children of this WebElement. + + The XPath query to use. + A object the driver can use to find the elements. + + + + Gets a mechanism to find elements by their CSS class. + + The CSS class to find. + A object the driver can use to find the elements. + If an element has many classes then this will match against each of them. + For example if the value is "one two onone", then the following values for the + className parameter will match: "one" and "two". + + + + Gets a mechanism to find elements by a partial match on their link text. + + The partial link text to find. + A object the driver can use to find the elements. + + + + Gets a mechanism to find elements by their tag name. + + The tag name to find. + A object the driver can use to find the elements. + + + + Gets a mechanism to find elements by their cascading style sheet (CSS) selector. + + The CSS selector to find. + A object the driver can use to find the elements. + + + + Finds the first element matching the criteria. + + An object to use to search for the elements. + The first matching on the current context. + + + + Finds all elements matching the criteria. + + An object to use to search for the elements. + A of all WebElements + matching the current criteria, or an empty list if nothing matches. + + + + Gets a string representation of the finder. + + The string displaying the finder content. + + + + Determines whether the specified Object is equal + to the current Object. + + The Object to compare with the + current Object. + + if the specified Object + is equal to the current Object; otherwise, + . + + + + Serves as a hash function for a particular type. + + A hash code for the current Object. + + + + Gets or sets the value of the description for this class instance. + + + + + Gets or sets the method used to find a single element matching specified criteria. + + + + + Gets or sets the method used to find all elements matching specified criteria. + + + + + Represents a cookie in the browser. + + + + + Initializes a new instance of the class with a specific name, + value, domain, path and expiration date. + + The name of the cookie. + The value of the cookie. + The domain of the cookie. + The path of the cookie. + The expiration date of the cookie. + If the name is or an empty string, + or if it contains a semi-colon. + If the value is . + + + + Initializes a new instance of the class with a specific name, + value, path and expiration date. + + The name of the cookie. + The value of the cookie. + The path of the cookie. + The expiration date of the cookie. + If the name is or an empty string, + or if it contains a semi-colon. + If the value is . + + + + Initializes a new instance of the class with a specific name, + value, and path. + + The name of the cookie. + The value of the cookie. + The path of the cookie. + If the name is or an empty string, + or if it contains a semi-colon. + If the value is . + + + + Initializes a new instance of the class with a specific name and value. + + The name of the cookie. + The value of the cookie. + If the name is or an empty string, + or if it contains a semi-colon. + If the value is . + + + + Converts a Dictionary to a Cookie. + + The Dictionary object containing the cookie parameters. + A object with the proper parameters set. + + + + Creates and returns a string representation of the cookie. + + A string representation of the cookie. + + + + Determines whether the specified Object is equal + to the current Object. + + The Object to compare with the + current Object. + + if the specified Object + is equal to the current Object; otherwise, + . + + + + Serves as a hash function for a particular type. + + A hash code for the current Object. + + + + Gets the name of the cookie. + + + + + Gets the value of the cookie. + + + + + Gets the domain of the cookie. + + + + + Gets the path of the cookie. + + + + + Gets a value indicating whether the cookie is secure. + + + + + Gets a value indicating whether the cookie is an HTTP-only cookie. + + + + + Gets the expiration date of the cookie. + + + + + Gets the cookie expiration date in seconds from the defined zero date (01 January 1970 00:00:00 UTC). + + This property only exists so that the JSON serializer can serialize a + cookie without resorting to a custom converter. + + + + Defines an object responsible for detecting sequences of keystrokes + representing file paths and names. + + + + + Returns a value indicating whether a specified key sequence represents + a file name and path. + + The sequence to test for file existence. + + if the key sequence represents a file; otherwise, . + + + + Represents the default file detector for determining whether a file + must be uploaded to a remote server. + + + + + Returns a value indicating whether a specified key sequence represents + a file name and path. + + The sequence to test for file existence. + This method always returns in this implementation. + + + + Base class for managing options specific to a browser driver. + + + + + Provides a means to add additional capabilities not yet added as type safe options + for the specific browser driver. + + The name of the capability to add. + The value of the capability to add. + + thrown when attempting to add a capability for which there is already a type safe option, or + when is or the empty string. + + Calling + where has already been added will overwrite the + existing value with the new value in . + + + + + Returns DesiredCapabilities for the specific browser driver with these + options included ascapabilities. This does not copy the options. Further + changes will be reflected in the returned capabilities. + + The DesiredCapabilities for browser driver with these options. + + + + Sets the logging preferences for this driver. + + The type of log for which to set the preference. + Known log types can be found in the class. + The value to which to set the log level. + + + + Generates the logging preferences dictionary for transmission as a desired capability. + + The dictionary containing the logging preferences. + + + + Provides a way to start a server that understands remote commands + + + + + Starts the server. + + + + + Exposes the service provided by a native WebDriver server executable. + + + + + Initializes a new instance of the class. + + The full path to the directory containing the executable providing the service to drive the browser. + The port on which the driver executable should listen. + The file name of the driver service executable. + A URL at which the driver service executable may be downloaded. + + If the path specified is or an empty string. + + + If the specified driver service executable does not exist in the specified directory. + + + + + Releases all resources associated with this . + + + + + Starts the DriverService. + + + + + Finds the specified driver service executable. + + The file name of the executable to find. + A URL at which the driver service executable may be downloaded. + The directory containing the driver service executable. + + If the specified driver service executable does not exist in the current directory or in a directory on the system path. + + + + + Releases all resources associated with this . + + + if the Dispose method was explicitly called; otherwise, . + + + + Stops the DriverService. + + + + + Waits until a the service is initialized, or the timeout set + by the property is reached. + + + if the service is properly started and receiving HTTP requests; + otherwise; . + + + + Gets the Uri of the service. + + + + + Gets or sets the port of the service. + + + + + Gets or sets a value indicating whether the initial diagnostic information is suppressed + when starting the driver server executable. Defaults to , meaning + diagnostic information should be shown by the driver server executable. + + + + + Gets a value indicating whether the service is running. + + + + + Gets or sets a value indicating whether the command prompt window of the service should be hidden. + + + + + Gets the process ID of the running driver service executable. Returns 0 if the process is not running. + + + + + Gets the executable file name of the driver service. + + + + + Gets the command-line arguments for the driver service. + + + + + Gets a value indicating the time to wait for an initial connection before timing out. + + + + + Gets a value indicating the time to wait for the service to terminate before forcing it to terminate. + + + + + Gets a value indicating whether the service is responding to HTTP requests. + + + + + Represents exceptions that are thrown when an error occurs during actions. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + The exception that is thrown when an element is not visible. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + The exception that is thrown when an element is not visible. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + Defines the interface through which the user can manipulate JavaScript alerts. + + + + + Dismisses the alert. + + + + + Accepts the alert. + + + + + Sends keys to the alert. + + The keystrokes to send. + + + + Sets the user name and password in an alert prompting for credentials. + + The user name to set. + The password to set. + + + + Gets the text of the alert. + + + + + Interface determining whether the driver implementation allows detection of files + when sending keystrokes to a file upload element. + + + + + Gets or sets the responsible for detecting + sequences of keystrokes representing file paths and names. + + + + + Capabilities of the browser that you are going to use + + + + + Gets a value indicating whether the browser has a given capability. + + The capability to get. + Returns if the browser has the capability; otherwise, . + + + + Gets a capability of the browser. + + The capability to get. + An object associated with the capability, or + if the capability is not set on the browser. + + + + Gets the browser name + + + + + Gets the platform + + + + + Gets the browser version + + + + + Gets a value indicating whether the browser is JavaScript enabled + + + + + Defines an interface allowing the user to manipulate cookies on the current page. + + + + + Adds a cookie to the current page. + + The object to be added. + + + + Gets a cookie with the specified name. + + The name of the cookie to retrieve. + The containing the name. Returns + if no cookie with the specified name is found. + + + + Deletes the specified cookie from the page. + + The to be deleted. + + + + Deletes the cookie with the specified name from the page. + + The name of the cookie to be deleted. + + + + Deletes all cookies from the page. + + + + + Gets all cookies defined for the current page. + + + + + Defines the interface through which the user can determine the capabilities of a driver. + + + + + Gets the object describing the driver's capabilities. + + + + + Provides access to input devices for advanced user interactions. + + + + + Gets an object for sending keystrokes to the browser. + + + + + Gets an object for sending mouse commands to the browser. + + + + + Interface implemented by each driver that allows access to touch screen capabilities. + + + + + Gets the device representing the touch screen. + + + + + Defines the interface through which the user can execute JavaScript. + + + + + Executes JavaScript in the context of the currently selected frame or window. + + The JavaScript code to execute. + The arguments to the script. + The value returned by the script. + + + The method executes JavaScript in the context of + the currently selected frame or window. This means that "document" will refer + to the current document. If the script has a return value, then the following + steps will be taken: + + + + + For an HTML element, this method returns a + + + For a number, a is returned + + + For a boolean, a is returned + + + For all other cases a is returned. + + + For an array,we check the first element, and attempt to return a + of that type, following the rules above. Nested lists are not + supported. + + + If the value is null or there is no return value, + is returned. + + + + + Arguments must be a number (which will be converted to a ), + a , a or a . + An exception will be thrown if the arguments do not meet these criteria. + The arguments will be made available to the JavaScript via the "arguments" magic + variable, as if the function were called via "Function.apply" + + + + + + Executes JavaScript asynchronously in the context of the currently selected frame or window. + + The JavaScript code to execute. + The arguments to the script. + The value returned by the script. + + + + Provides methods representing basic keyboard actions. + + + + + Sends a sequence of keystrokes to the target. + + A string representing the keystrokes to send. + + + + Presses a key. + + The key value representing the key to press. + The key value must be one of the values from the class. + + + + Releases a key. + + The key value representing the key to release. + The key value must be one of the values from the class. + + + + Defines the interface through which the user can discover where an element is on the screen. + + + + + Gets the location of an element on the screen, scrolling it into view + if it is not currently on the screen. + + + + + Gets the coordinates identifying the location of this element using + various frames of reference. + + + + + Interface allowing handling of driver logs. + + + + + Gets the set of objects for a specified log. + + The log for which to retrieve the log entries. + Log types can be found in the class. + The list of objects for the specified log. + + + + Gets the list of available log types for this driver. + + + + + Provides methods representing basic mouse actions. + + + + + Clicks at a set of coordinates using the primary mouse button. + + An describing where to click. + + + + Double-clicks at a set of coordinates. + + A describing where to double-click. + + + + Presses the primary mouse button at a set of coordinates. + + A describing where to press the mouse button down. + + + + Releases the primary mouse button at a set of coordinates. + + A describing where to release the mouse button. + + + + Moves the mouse to the specified set of coordinates. + + A describing where to move the mouse to. + + + + Moves the mouse to the specified set of coordinates. + + A describing where to click. + A horizontal offset from the coordinates specified in . + A vertical offset from the coordinates specified in . + + + + Clicks at a set of coordinates using the secondary mouse button. + + A describing where to click. + + + + Defines an interface allowing the user to access the browser's history and to + navigate to a given URL. + + + + + Move back a single entry in the browser's history. + + + + + Move a single "item" forward in the browser's history. + + Does nothing if we are on the latest page viewed. + + + + Load a new web page in the current browser window. + + The URL to load. It is best to use a fully qualified URL + + Calling the method will load a new web page in the current browser window. + This is done using an HTTP GET operation, and the method will block until the + load is complete. This will follow redirects issued either by the server or + as a meta-redirect from within the returned HTML. Should a meta-redirect "rest" + for any duration of time, it is best to wait until this timeout is over, since + should the underlying page change while your test is executing the results of + future calls against this interface will be against the freshly loaded page. + + + + + Load a new web page in the current browser window. + + The URL to load. + + Calling the method will load a new web page in the current browser window. + This is done using an HTTP GET operation, and the method will block until the + load is complete. This will follow redirects issued either by the server or + as a meta-redirect from within the returned HTML. Should a meta-redirect "rest" + for any duration of time, it is best to wait until this timeout is over, since + should the underlying page change while your test is executing the results of + future calls against this interface will be against the freshly loaded page. + + + + + Refreshes the current page. + + + + + The exception that is thrown when the users attempts to set a cookie with an invalid domain. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + The exception that is thrown when a reference to an element is no longer valid. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + The exception that is thrown when an item is not found. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + The exception that is thrown when an element is not found. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + The exception that is thrown when an element is not visible. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + Defines an interface allowing the user to set options on the browser. + + + + + Provides access to the timeouts defined for this driver. + + An object implementing the interface. + + + + Gets an object allowing the user to manipulate cookies on the page. + + + + + Gets an object allowing the user to manipulate the currently-focused browser window. + + "Currently-focused" is defined as the browser window having the window handle + returned when IWebDriver.CurrentWindowHandle is called. + + + + Gets an object allowing the user to examing the logs for this driver instance. + + + + + Represents rotation of the browser view for orientation-sensitive devices. + When using this with a real device, the device should not be moved so that + the built-in sensors do not interfere. + + + + + Gets or sets the screen orientation of the browser on the device. + + + + + Defines the interface used to search for elements. + + + + + Finds the first using the given method. + + The locating mechanism to use. + The first matching on the current context. + If no element matches the criteria. + + + + Finds all IWebElements within the current context + using the given mechanism. + + The locating mechanism to use. + A of all WebElements + matching the current criteria, or an empty list if nothing matches. + + + + Defines the interface used to take screen shot images of the screen. + + + + + Gets a object representing the image of the page on the screen. + + A object containing the image. + + + + Defines the interface through which the user can locate a given frame or window. + + + + + Select a frame by its (zero-based) index. + + The zero-based index of the frame to select. + An instance focused on the specified frame. + If the frame cannot be found. + + + + Select a frame by its name or ID. + + The name of the frame to select. + An instance focused on the specified frame. + If the frame cannot be found. + + + + Select a frame using its previously located + The frame element to switch to. + An instance focused on the specified frame. + If the element is neither a FRAME nor an IFRAME element. + If the element is no longer valid. + + + + Select the parent frame of the currently selected frame. + + An instance focused on the specified frame. + + + + Switches the focus of future commands for this driver to the window with the given name. + + The name of the window to select. + An instance focused on the given window. + If the window cannot be found. + + + + Selects either the first frame on the page or the main document when a page contains iFrames. + + An instance focused on the default frame. + + + + Switches to the element that currently has the focus, or the body element + if no element with focus can be detected. + + An instance representing the element + with the focus, or the body element if no element with focus can be detected. + + + + Switches to the currently active modal dialog for this particular driver instance. + + A handle to the dialog. + + + + Defines the interface through which the user can define timeouts. + + + + + Specifies the amount of time the driver should wait when searching for an + element if it is not immediately present. + + A structure defining the amount of time to wait. + A self reference + + When searching for a single element, the driver should poll the page + until the element has been found, or this timeout expires before throwing + a . When searching for multiple elements, + the driver should poll the page until at least one element has been found + or this timeout has expired. + + Increasing the implicit wait timeout should be used judiciously as it + will have an adverse effect on test run time, especially when used with + slower location strategies like XPath. + + + + + Specifies the amount of time the driver should wait when executing JavaScript asynchronously. + + A structure defining the amount of time to wait. + Setting this parameter to will allow the script to run indefinitely. + A self reference + + + + Specifies the amount of time the driver should wait for a page to load when setting the property. + + A structure defining the amount of time to wait. + Setting this parameter to will allow the page to load indefinitely. + A self reference + + + + Interface representing basic touch screen operations. + + + + + Allows the execution of single tap on the screen, analogous to click using a Mouse. + + The object representing the location on the screen, + usually an . + + + + Allows the execution of the gesture 'down' on the screen. It is typically the first of a + sequence of touch gestures. + + The x coordinate relative to the view port. + The y coordinate relative to the view port. + + + + Allows the execution of the gesture 'up' on the screen. It is typically the last of a + sequence of touch gestures. + + The x coordinate relative to the view port. + The y coordinate relative to the view port. + + + + Allows the execution of the gesture 'move' on the screen. + + The x coordinate relative to the view port. + The y coordinate relative to the view port. + + + + Creates a scroll gesture that starts on a particular screen location. + + The object representing the location on the screen + where the scroll starts, usually an . + The x coordinate relative to the view port. + The y coordinate relative to the view port. + + + + Creates a scroll gesture for a particular x and y offset. + + The horizontal offset relative to the view port. + The vertical offset relative to the view port. + + + + Allows the execution of double tap on the screen, analogous to click using a Mouse. + + The object representing the location on the screen, + usually an . + + + + Allows the execution of a long press gesture on the screen. + + The object representing the location on the screen, + usually an . + + + + Creates a flick gesture for the current view. + + The horizontal speed in pixels per second. + The vertical speed in pixels per second. + + + + Creates a flick gesture for the current view starting at a specific location. + + The object representing the location on the screen + where the scroll starts, usually an . + The x offset relative to the viewport. + The y offset relative to the viewport. + The speed in pixels per second. + + + + Defines the interface through which the user controls the browser. + + + The interface is the main interface to use for testing, which + represents an idealized web browser. The methods in this class fall into three categories: + Control of the browser itselfSelection of IWebElementsDebugging aids + Key properties and methods are , which is used to + load a new web page by setting the property, and the various methods similar + to , which is used to find IWebElements. + + You use the interface by instantiate drivers that implement of this interface. + You should write your tests against this interface so that you may "swap in" a + more fully featured browser when there is a requirement for one. + + + + + Close the current window, quitting the browser if it is the last window currently open. + + + + + Quits this driver, closing every associated window. + + + + + Instructs the driver to change its settings. + + An object allowing the user to change + the settings of the driver. + + + + Instructs the driver to navigate the browser to another location. + + An object allowing the user to access + the browser's history and to navigate to a given URL. + + + + Instructs the driver to send future commands to a different frame or window. + + An object which can be used to select + a frame or window. + + + + Gets or sets the URL the browser is currently displaying. + + + Setting the property will load a new web page in the current browser window. + This is done using an HTTP GET operation, and the method will block until the + load is complete. This will follow redirects issued either by the server or + as a meta-redirect from within the returned HTML. Should a meta-redirect "rest" + for any duration of time, it is best to wait until this timeout is over, since + should the underlying page change while your test is executing the results of + future calls against this interface will be against the freshly loaded page. + + + + + + + Gets the title of the current browser window. + + + + + Gets the source of the page last loaded by the browser. + + + If the page has been modified after loading (for example, by JavaScript) + there is no guarantee that the returned text is that of the modified page. + Please consult the documentation of the particular driver being used to + determine whether the returned text reflects the current state of the page + or the text last sent by the web server. The page source returned is a + representation of the underlying DOM: do not expect it to be formatted + or escaped in the same way as the response sent from the web server. + + + + + Gets the current window handle, which is an opaque handle to this + window that uniquely identifies it within this driver instance. + + + + + Gets the window handles of open browser windows. + + + + + Defines the interface through which the user controls elements on the page. + + The interface represents an HTML element. + Generally, all interesting operations to do with interacting with a page will + be performed through this interface. + + + + + Clears the content of this element. + + If this element is a text entry element, the + method will clear the value. It has no effect on other elements. Text entry elements + are defined as elements with INPUT or TEXTAREA tags. + Thrown when the target element is no longer valid in the document DOM. + + + + Simulates typing text into the element. + + The text to type into the element. + The text to be typed may include special characters like arrow keys, + backspaces, function keys, and so on. Valid special keys are defined in + . + + Thrown when the target element is not enabled. + Thrown when the target element is not visible. + Thrown when the target element is no longer valid in the document DOM. + + + + Submits this element to the web server. + + If this current element is a form, or an element within a form, + then this will be submitted to the web server. If this causes the current + page to change, then this method will block until the new page is loaded. + Thrown when the target element is no longer valid in the document DOM. + + + + Clicks this element. + + + + Click this element. If the click causes a new page to load, the + method will attempt to block until the page has loaded. After calling the + method, you should discard all references to this + element unless you know that the element and the page will still be present. + Otherwise, any further operations performed on this element will have an undefined. + behavior. + + + If this element is not clickable, then this operation is ignored. This allows you to + simulate a users to accidentally missing the target when clicking. + + + Thrown when the target element is not visible. + Thrown when the target element is no longer valid in the document DOM. + + + + Gets the value of the specified attribute for this element. + + The name of the attribute. + The attribute's current value. Returns a if the + value is not set. + The method will return the current value + of the attribute, even if the value has been modified after the page has been + loaded. Note that the value of the following attributes will be returned even if + there is no explicit attribute on the element: + Attribute nameValue returned if not explicitly specifiedValid element typescheckedcheckedCheck BoxselectedselectedOptions in Select elementsdisableddisabledInput and other UI elements + Thrown when the target element is no longer valid in the document DOM. + + + + Gets the value of a CSS property of this element. + + The name of the CSS property to get the value of. + The value of the specified CSS property. + The value returned by the + method is likely to be unpredictable in a cross-browser environment. + Color values should be returned as hex strings. For example, a + "background-color" property set as "green" in the HTML source, will + return "#008000" for its value. + Thrown when the target element is no longer valid in the document DOM. + + + + Gets the tag name of this element. + + + The property returns the tag name of the + element, not the value of the name attribute. For example, it will return + "input" for an element specified by the HTML markup <input name="foo" />. + + Thrown when the target element is no longer valid in the document DOM. + + + + Gets the innerText of this element, without any leading or trailing whitespace, + and with other whitespace collapsed. + + Thrown when the target element is no longer valid in the document DOM. + + + + Gets a value indicating whether or not this element is enabled. + + The property will generally + return for everything except explicitly disabled input elements. + Thrown when the target element is no longer valid in the document DOM. + + + + Gets a value indicating whether or not this element is selected. + + This operation only applies to input elements such as checkboxes, + options in a select element and radio buttons. + Thrown when the target element is no longer valid in the document DOM. + + + + Gets a object containing the coordinates of the upper-left corner + of this element relative to the upper-left corner of the page. + + Thrown when the target element is no longer valid in the document DOM. + + + + Gets a object containing the height and width of this element. + + Thrown when the target element is no longer valid in the document DOM. + + + + Gets a value indicating whether or not this element is displayed. + + The property avoids the problem + of having to parse an element's "style" attribute to determine + visibility of an element. + Thrown when the target element is no longer valid in the document DOM. + + + + Provides methods for getting and setting the size and position of the browser window. + + + + + Maximizes the current window if it is not already maximized. + + + + + Gets or sets the position of the browser window relative to the upper-left corner of the screen. + + When setting this property, it should act as the JavaScript window.moveTo() method. + + + + Gets or sets the size of the outer browser window, including title bars and window borders. + + When setting this property, it should act as the JavaScript window.resizeTo() method. + + + + Representations of keys able to be pressed that are not text keys for sending to the browser. + + + + + Represents the NUL keystroke. + + + + + Represents the Cancel keystroke. + + + + + Represents the Help keystroke. + + + + + Represents the Backspace key. + + + + + Represents the Tab key. + + + + + Represents the Clear keystroke. + + + + + Represents the Return key. + + + + + Represents the Enter key. + + + + + Represents the Shift key. + + + + + Represents the Shift key. + + + + + Represents the Control key. + + + + + Represents the Control key. + + + + + Represents the Alt key. + + + + + Represents the Alt key. + + + + + Represents the Pause key. + + + + + Represents the Escape key. + + + + + Represents the Spacebar key. + + + + + Represents the Page Up key. + + + + + Represents the Page Down key. + + + + + Represents the End key. + + + + + Represents the Home key. + + + + + Represents the left arrow key. + + + + + Represents the left arrow key. + + + + + Represents the up arrow key. + + + + + Represents the up arrow key. + + + + + Represents the right arrow key. + + + + + Represents the right arrow key. + + + + + Represents the Left arrow key. + + + + + Represents the Left arrow key. + + + + + Represents the Insert key. + + + + + Represents the Delete key. + + + + + Represents the semi-colon key. + + + + + Represents the equal sign key. + + + + + Represents the number pad 0 key. + + + + + Represents the number pad 1 key. + + + + + Represents the number pad 2 key. + + + + + Represents the number pad 3 key. + + + + + Represents the number pad 4 key. + + + + + Represents the number pad 5 key. + + + + + Represents the number pad 6 key. + + + + + Represents the number pad 7 key. + + + + + Represents the number pad 8 key. + + + + + Represents the number pad 9 key. + + + + + Represents the number pad multiplication key. + + + + + Represents the number pad addition key. + + + + + Represents the number pad thousands separator key. + + + + + Represents the number pad subtraction key. + + + + + Represents the number pad decimal separator key. + + + + + Represents the number pad division key. + + + + + Represents the function key F1. + + + + + Represents the function key F2. + + + + + Represents the function key F3. + + + + + Represents the function key F4. + + + + + Represents the function key F5. + + + + + Represents the function key F6. + + + + + Represents the function key F7. + + + + + Represents the function key F8. + + + + + Represents the function key F9. + + + + + Represents the function key F10. + + + + + Represents the function key F11. + + + + + Represents the function key F12. + + + + + Represents the function key META. + + + + + Represents the function key COMMAND. + + + + + Represents an entry in a log from a driver instance. + + + + + Initializes a new instance of the class. + + + + + Returns a string that represents the current . + + A string that represents the current . + + + + Creates a from a dictionary as deserialized from JSON. + + The from + which to create the . + A with the values in the dictionary. + + + + Gets the timestamp value of the log entry. + + + + + Gets the logging level of the log entry. + + + + + Gets the message of the log entry. + + + + + Represents the levels of logging available to driver instances. + + + + + Show all log messages. + + + + + Show messages with information useful for debugging. + + + + + Show informational messages. + + + + + Show messages corresponding to non-critical issues. + + + + + Show messages corresponding to critical issues. + + + + + Show no log messages. + + + + + Class containing names of common log types. + + + + + Log messages from the client language bindings. + + + + + Logs from the current WebDriver instance. + + + + + Logs from the browser. + + + + + Logs from the server. + + + + + Profiling logs. + + + + + The exception that is thrown when an alert is not found. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + The exception that is thrown when a frame is not found. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + The exception that is thrown when a window is not found. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + Represents the known and supported Platforms that WebDriver runs on. + + The class maps closely to the Operating System, + but differs slightly, because this class is used to extract information such as + program locations and line endings. + + + + Any platform. This value is never returned by a driver, but can be used to find + drivers with certain capabilities. + + + + + Any version of Microsoft Windows. This value is never returned by a driver, + but can be used to find drivers with certain capabilities. + + + + + Any Windows NT-based version of Microsoft Windows. This value is never returned + by a driver, but can be used to find drivers with certain capabilities. This value + is equivalent to PlatformType.Windows. + + + + + Versions of Microsoft Windows that are compatible with Windows XP. + + + + + Versions of Microsoft Windows that are compatible with Windows Vista. + + + + + Any version of the Macintosh OS + + + + + Any version of the Unix operating system. + + + + + Any version of the Linux operating system. + + + + + A version of the Android mobile operating system. + + + + + Represents the platform on which tests are to be run. + + + + + Initializes a new instance of the class for a specific platform type. + + The platform type. + + + + Compares the platform to the specified type. + + A value to compare to. + + if the platforms match; otherwise . + + + + Returns the string value for this platform type. + + The string value for this platform type. + + + + Creates a object from a string name of the platform. + + The name of the platform to create. + The Platform object represented by the string name. + + + + Gets the current platform. + + + + + Gets the major version of the platform operating system. + + + + + Gets the major version of the platform operating system. + + + + + Gets the type of the platform. + + + + + Gets the value of the platform type for transmission using the JSON Wire Protocol. + + + + + Describes the kind of proxy. + + + Keep these in sync with the Firefox preferences numbers: + http://kb.mozillazine.org/Network.proxy.type + + + + + Direct connection, no proxy (default on Windows). + + + + + Manual proxy settings (e.g., for httpProxy). + + + + + Proxy automatic configuration from URL. + + + + + Use proxy automatic detection. + + + + + Use the system values for proxy settings (default on Linux). + + + + + No proxy type is specified. + + + + + Describes proxy settings to be used with a driver instance. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the given proxy settings. + + A dictionary of settings to use with the proxy. + + + + Gets or sets the type of proxy. + + + + + Gets the type of proxy as a string for JSON serialization. + + + + + Gets or sets a value indicating whether the proxy uses automatic detection. + + + + + Gets or sets the value of the proxy for the FTP protocol. + + + + + Gets or sets the value of the proxy for the HTTP protocol. + + + + + Gets or sets the value for bypass proxy addresses. + + + + + Gets or sets the URL used for proxy automatic configuration. + + + + + Gets or sets the value of the proxy for the SSL protocol. + + + + + Gets or sets the value of the proxy for the SOCKS protocol. + + + + + Gets or sets the value of username for the SOCKS proxy. + + + + + Gets or sets the value of password for the SOCKS proxy. + + + + + Represents possible screen orientations. + + + + + Represents a portrait mode, where the screen is vertical. + + + + + Represents Landscape mode, where the screen is horizontal. + + + + + Represents an image of the page currently loaded in the browser. + + + + + Initializes a new instance of the class. + + The image of the page as a Base64-encoded string. + + + + Saves the screenshot to a file, overwriting the file if it already exists. + + The full path and file name to save the screenshot to. + A object indicating the format + to save the image to. + + + + Returns a String that represents the current Object. + + A String that represents the current Object. + + + + Gets the value of the screenshot image as a Base64-encoded string. + + + + + Gets the value of the screenshot image as an array of bytes. + + + + + The exception that is thrown when a reference to an element is no longer valid. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + The exception that is thrown when the user is unable to set a cookie. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + The exception that is thrown when an unhandled alert is present. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and alert text. + + The message that describes the error. + The text of the unhandled alert. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + Populates a SerializationInfo with the data needed to serialize the target object. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + Gets the that has not been handled. + + + + + Gets the text of the unhandled alert. + + + + + Specifies return values for actions in the driver. + + + + + The action was successful. + + + + + The index specified for the action was out of the acceptable range. + + + + + No collection was specified. + + + + + No string was specified. + + + + + No string length was specified. + + + + + No string wrapper was specified. + + + + + No driver matching the criteria exists. + + + + + No element matching the criteria exists. + + + + + No frame matching the criteria exists. + + + + + The functionality is not supported. + + + + + The specified element is no longer valid. + + + + + The specified element is not displayed. + + + + + The specified element is not enabled. + + + + + An unhandled error occurred. + + + + + An error occurred, but it was expected. + + + + + The specified element is not selected. + + + + + No document matching the criteria exists. + + + + + An unexpected JavaScript error occurred. + + + + + No result is available from the JavaScript execution. + + + + + The result from the JavaScript execution is not recognized. + + + + + No collection matching the criteria exists. + + + + + A timeout occurred. + + + + + A null pointer was received. + + + + + No window matching the criteria exists. + + + + + An illegal attempt was made to set a cookie under a different domain than the current page. + + + + + A request to set a cookie's value could not be satisfied. + + + + + An alert was found open unexpectedly. + + + + + A request was made to switch to an alert, but no alert is currently open. + + + + + An asynchronous JavaScript execution timed out. + + + + + The coordinates of the element are invalid. + + + + + The selector used (CSS/XPath) was invalid. + + + + + Represents exceptions that are thrown when an error occurs during actions. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + The exception that is thrown when an error occurs during an XPath lookup. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with + a specified error message. + + The message that describes the error. + + + + Initializes a new instance of the class with + a specified error message and a reference to the inner exception that is the + cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, + or if no inner exception is specified. + + + + Initializes a new instance of the class with serialized data. + + The that holds the serialized + object data about the exception being thrown. + The that contains contextual + information about the source or destination. + + + + Defines the interface through which the user finds elements by their ID. + + + + + Finds the first element matching the specified id. + + The id to match. + The first matching the criteria. + + + + Finds all elements matching the specified id. + + The id to match. + A containing all + IWebElements matching the criteria. + + + + Defines the interface through which the user finds elements by their CSS class. + + + + + Finds the first element matching the specified CSS class. + + The CSS class to match. + The first matching the criteria. + + + + Finds all elements matching the specified CSS class. + + The CSS class to match. + A containing all + IWebElements matching the criteria. + + + + Defines the interface through which the user finds elements by their link text. + + + + + Finds the first element matching the specified link text. + + The link text to match. + The first matching the criteria. + + + + Finds all elements matching the specified link text. + + The link text to match. + A containing all + IWebElements matching the criteria. + + + + Defines the interface through which the user finds elements by their name. + + + + + Finds the first element matching the specified name. + + The name to match. + The first matching the criteria. + + + + Finds all elements matching the specified name. + + The name to match. + A containing all + IWebElements matching the criteria. + + + + Defines the interface through which the user finds elements by their tag name. + + + + + Finds the first element matching the specified tag name. + + The tag name to match. + The first matching the criteria. + + + + Finds all elements matching the specified tag name. + + The tag name to match. + A containing all + IWebElements matching the criteria. + + + + Defines the interface through which the user finds elements by XPath. + + + + + Finds the first element matching the specified XPath query. + + The XPath query to match. + The first matching the criteria. + + + + Finds all elements matching the specified XPath query. + + The XPath query to match. + A containing all + IWebElements matching the criteria. + + + + Defines the interface through which the user finds elements by a partial match on their link text. + + + + + Finds the first element matching the specified partial link text. + + The partial link text to match. + The first matching the criteria. + + + + Finds all elements matching the specified partial link text. + + The partial link text to match. + A containing all + IWebElements matching the criteria. + + + + Defines the interface through which the user finds elements by their cascading style sheet (CSS) selector. + + + + + Finds the first element matching the specified CSS selector. + + The id to match. + The first matching the criteria. + + + + Finds all elements matching the specified CSS selector. + + The CSS selector to match. + A containing all + IWebElements matching the criteria. + + + + Interface allowing the user to determine if the driver instance supports web storage. + + + + + Gets a value indicating whether web storage is supported for this driver. + + + + + Gets an object for managing web storage. + + + + + Interface allowing the user to determine if the driver instance supports geolocation. + + + + + Gets a value indicating whether manipulating geolocation is supported for this driver. + + + + + Gets an object for managing browser location. + + + + + Interface allowing the user to determine if the driver instance supports application cache. + + + + + Gets a value indicating whether manipulating the application cache is supported for this driver. + + + + + Gets an object for managing application cache. + + + + + Interface indicating the driver has a Session ID. + + + + + Gets the session ID of the current session. + + + + + Provides a way to use the driver through + + /// + [TestFixture] + public class Testing + { + private IWebDriver driver; + + [SetUp] + public void SetUp() + { + driver = new RemoteWebDriver(new Uri("http://127.0.0.1:4444/wd/hub"),DesiredCapabilities.InternetExplorer()); + } + + [Test] + public void TestGoogle() + { + driver.Navigate().GoToUrl("http://www.google.co.uk"); + /* + * Rest of the test + */ + } + + [TearDown] + public void TearDown() + { + driver.Quit(); + } + } + + + + The default command timeout for HTTP requests in a RemoteWebDriver instance. + + + + + Initializes a new instance of the class. This constructor defaults proxy to http://127.0.0.1:4444/wd/hub + + An object containing the desired capabilities of the browser. + + + + Initializes a new instance of the class + + URI containing the address of the WebDriver remote server (e.g. http://127.0.0.1:4444/wd/hub). + An object containing the desired capabilities of the browser. + + + + Initializes a new instance of the class using the specified remote address, desired capabilities, and command timeout. + + URI containing the address of the WebDriver remote server (e.g. http://127.0.0.1:4444/wd/hub). + An object containing the desired capabilities of the browser. + The maximum amount of time to wait for each command. + + + + Initializes a new instance of the class + + An object which executes commands for the driver. + An object containing the desired capabilities of the browser. + + + + Finds the first element in the page that matches the object + + By mechanism to find the object + IWebElement object so that you can interact with that object + + + IWebDriver driver = new InternetExplorerDriver(); + IWebElement elem = driver.FindElement(By.Name("q")); + + + + + + Finds the elements on the page by using the object and returns a ReadOnlyCollection of the Elements on the page + + By mechanism to find the element + ReadOnlyCollection of IWebElement + + + IWebDriver driver = new InternetExplorerDriver(); + ReadOnlyCollection]]> classList = driver.FindElements(By.ClassName("class")); + + + + + + Closes the Browser + + + + + Close the Browser and Dispose of WebDriver + + + + + Method For getting an object to set the Speed + + Returns an IOptions object that allows the driver to set the speed and cookies and getting cookies + + + + IWebDriver driver = new InternetExplorerDriver(); + driver.Manage().GetCookies(); + + + + + + Method to allow you to Navigate with WebDriver + + Returns an INavigation Object that allows the driver to navigate in the browser + + + IWebDriver driver = new InternetExplorerDriver(); + driver.Navigate().GoToUrl("http://www.google.co.uk"); + + + + + + Method to give you access to switch frames and windows + + Returns an Object that allows you to Switch Frames and Windows + + + IWebDriver driver = new InternetExplorerDriver(); + driver.SwitchTo().Frame("FrameName"); + + + + + + Executes JavaScript in the context of the currently selected frame or window + + The JavaScript code to execute. + The arguments to the script. + The value returned by the script. + + + + Executes JavaScript asynchronously in the context of the currently selected frame or window. + + The JavaScript code to execute. + The arguments to the script. + The value returned by the script. + + + + Finds the first element in the page that matches the ID supplied + + ID of the element + IWebElement object so that you can interact with that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + IWebElement elem = driver.FindElementById("id") + + + + + + Finds the first element in the page that matches the ID supplied + + ID of the Element + ReadOnlyCollection of Elements that match the object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsById("id") + + + + + + Finds the first element in the page that matches the CSS Class supplied + + className of the + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + IWebElement elem = driver.FindElementByClassName("classname") + + + + + + Finds a list of elements that match the class name supplied + + CSS class Name on the element + ReadOnlyCollection of IWebElement object so that you can interact with those objects + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsByClassName("classname") + + + + + + Finds the first of elements that match the link text supplied + + Link text of element + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + IWebElement elem = driver.FindElementsByLinkText("linktext") + + + + + + Finds a list of elements that match the link text supplied + + Link text of element + ReadOnlyCollection]]> object so that you can interact with those objects + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsByClassName("classname") + + + + + + Finds the first of elements that match the part of the link text supplied + + part of the link text + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + IWebElement elem = driver.FindElementsByPartialLinkText("partOfLink") + + + + + + Finds a list of elements that match the class name supplied + + part of the link text + ReadOnlyCollection]]> objects so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsByPartialLinkText("partOfTheLink") + + + + + + Finds the first of elements that match the name supplied + + Name of the element on the page + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + elem = driver.FindElementsByName("name") + + + + + + Finds a list of elements that match the name supplied + + Name of element + ReadOnlyCollect of IWebElement objects so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsByName("name") + + + + + + Finds the first of elements that match the DOM Tag supplied + + DOM tag Name of the element being searched + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + IWebElement elem = driver.FindElementsByTagName("tag") + + + + + + Finds a list of elements that match the DOM Tag supplied + + DOM tag Name of element being searched + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsByTagName("tag") + + + + + + Finds the first of elements that match the XPath supplied + + xpath to the element + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + IWebElement elem = driver.FindElementsByXPath("//table/tbody/tr/td/a"); + + + + + + Finds a list of elements that match the XPath supplied + + xpath to the element + ReadOnlyCollection of IWebElement objects so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsByXpath("//tr/td/a") + + + + + + Finds the first element matching the specified CSS selector. + + The CSS selector to match. + The first matching the criteria. + + + + Finds all elements matching the specified CSS selector. + + The CSS selector to match. + A containing all + IWebElements matching the criteria. + + + + Gets a object representing the image of the page on the screen. + + A object containing the image. + + + + Dispose the RemoteWebDriver Instance + + + + + Escapes invalid characters in a CSS selector. + + The selector to escape. + The selector with invalid characters escaped. + + + + Executes commands with the driver + + Command that needs executing + Parameters needed for the command + WebDriver Response + + + + Find the element in the response + + Response from the browser + Element from the page + + + + Finds the elements that are in the response + + Response from the browser + Collection of elements + + + + Stops the client from running + + if its in the process of disposing + + + + Starts a session with the driver + + Capabilities of the browser + + + + Executes a command with this driver . + + A value representing the command to execute. + A containing the names and values of the parameters of the command. + A containing information about the success or failure of the command and any data returned by the command. + + + + Starts the command executor, enabling communication with the browser. + + + + + Stops the command executor, ending further communication with the browser. + + + + + Finds an element matching the given mechanism and value. + + The mechanism by which to find the element. + The value to use to search for the element. + The first matching the given criteria. + + + + Finds all elements matching the given mechanism and value. + + The mechanism by which to find the elements. + The value to use to search for the elements. + A collection of all of the IWebElements matching the given criteria. + + + + Creates a with the specified ID. + + The ID of this element. + A with the specified ID. + + + + Executes JavaScript in the context of the currently selected frame or window using a specific command. + + The JavaScript code to execute. + The name of the command to execute. + The arguments to the script. + The value returned by the script. + + + + Converts the arguments to JavaScript objects. + + The arguments. + The list of the arguments converted to JavaScript objects. + + + + Gets or sets the URL the browser is currently displaying. + + + + + + + + Gets the title of the current browser window. + + + + + Gets the source of the page last loaded by the browser. + + + + + Gets the current window handle, which is an opaque handle to this + window that uniquely identifies it within this driver instance. + + + + + Gets the window handles of open browser windows. + + + + + Gets an object for sending keystrokes to the browser. + + + + + Gets an object for sending mouse commands to the browser. + + + + + Gets a value indicating whether web storage is supported for this driver. + + + + + Gets an object for managing web storage. + + + + + Gets a value indicating whether manipulating the application cache is supported for this driver. + + + + + Gets an object for managing application cache. + + + + + Gets a value indicating whether manipulating geolocation is supported for this driver. + + + + + Gets an object for managing browser location. + + + + + Gets the capabilities that the RemoteWebDriver instance is currently using + + + + + Gets or sets the responsible for detecting + sequences of keystrokes representing file paths and names. + + + + + Gets the for the current session of this driver. + + + + + Gets a value indicating whether or not the driver is compliant with the W3C WebDriver specification. + + + + + Gets the which executes commands for this driver. + + + + + Provides a mechanism to write tests against Chrome + + + + [TestFixture] + public class Testing + { + private IWebDriver driver; + + [SetUp] + public void SetUp() + { + driver = new ChromeDriver(); + } + + [Test] + public void TestGoogle() + { + driver.Navigate().GoToUrl("http://www.google.co.uk"); + /* + * Rest of the test + */ + } + + [TearDown] + public void TearDown() + { + driver.Quit(); + } + } + + + + + + Accept untrusted SSL Certificates + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the specified options. + + The to be used with the Chrome driver. + + + + Initializes a new instance of the class using the specified driver service. + + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified path + to the directory containing ChromeDriver.exe. + + The full path to the directory containing ChromeDriver.exe. + + + + Initializes a new instance of the class using the specified path + to the directory containing ChromeDriver.exe and options. + + The full path to the directory containing ChromeDriver.exe. + The to be used with the Chrome driver. + + + + Initializes a new instance of the class using the specified path + to the directory containing ChromeDriver.exe, options, and command timeout. + + The full path to the directory containing ChromeDriver.exe. + The to be used with the Chrome driver. + The maximum amount of time to wait for each command. + + + + Initializes a new instance of the class using the specified + and options. + + The to use. + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified . + + The to use. + The to be used with the Chrome driver. + The maximum amount of time to wait for each command. + + + + Gets or sets the responsible for detecting + sequences of keystrokes representing file paths and names. + + The Chrome driver does not allow a file detector to be set, + as the server component of the Chrome driver (ChromeDriver.exe) only + allows uploads from the local computer environment. Attempting to set + this property has no effect, but does not throw an exception. If you + are attempting to run the Chrome driver remotely, use + in conjunction with a standalone WebDriver server. + + + + Exposes the service provided by the native ChromeDriver executable. + + + + + Initializes a new instance of the class. + + The full path to the ChromeDriver executable. + The file name of the ChromeDriver executable. + The port on which the ChromeDriver executable should listen. + + + + Creates a default instance of the ChromeDriverService. + + A ChromeDriverService that implements default settings. + + + + Creates a default instance of the ChromeDriverService using a specified path to the ChromeDriver executable. + + The directory containing the ChromeDriver executable. + A ChromeDriverService using a random port. + + + + Creates a default instance of the ChromeDriverService using a specified path to the ChromeDriver executable with the given name. + + The directory containing the ChromeDriver executable. + The name of the ChromeDriver executable file. + A ChromeDriverService using a random port. + + + + Returns the Chrome driver filename for the currently running platform + + The file name of the Chrome driver service executable. + + + + Gets or sets the location of the log file written to by the ChromeDriver executable. + + + + + Gets or sets the base URL path prefix for commands (e.g., "wd/url"). + + + + + Gets or sets the address of a server to contact for reserving a port. + + + + + Gets or sets the port on which the Android Debug Bridge is listening for commands. + + + + + Gets or sets a value indicating whether to enable verbose logging for the ChromeDriver executable. + Defaults to . + + + + + Gets or sets the comma-delimited list of IP addresses that are approved to + connect to this instance of the Chrome driver. Defaults to an empty string, + which means only the local loopback address can connect. + + + + + Gets the command-line arguments for the driver service. + + + + + Represents the type-safe options for setting settings for emulating a + mobile device in the Chrome browser. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The user agent string to be used by the browser when emulating + a mobile device. + + + + Gets or sets the user agent string to be used by the browser when emulating + a mobile device. + + + + + Gets or sets the width in pixels to be used by the browser when emulating + a mobile device. + + + + + Gets or sets the height in pixels to be used by the browser when emulating + a mobile device. + + + + + Gets or sets the pixel ratio to be used by the browser when emulating + a mobile device. + + + + + Gets or sets a value indicating whether touch events should be enabled by + the browser when emulating a mobile device. Defaults to . + + + + + Class to manage options specific to + + Used with ChromeDriver.exe v17.0.963.0 and higher. + + + + ChromeOptions options = new ChromeOptions(); + options.AddExtensions("\path\to\extension.crx"); + options.BinaryLocation = "\path\to\chrome"; + + + + For use with ChromeDriver: + + + + ChromeDriver driver = new ChromeDriver(options); + + + + For use with RemoteWebDriver: + + + + RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities()); + + + + + + Gets the name of the capability used to store Chrome options in + a object. + + + + + Adds a single argument to the list of arguments to be appended to the Chrome.exe command line. + + The argument to add. + + + + Adds arguments to be appended to the Chrome.exe command line. + + An array of arguments to add. + + + + Adds arguments to be appended to the Chrome.exe command line. + + An object of arguments to add. + + + + Adds a single argument to be excluded from the list of arguments passed by default + to the Chrome.exe command line by chromedriver.exe. + + The argument to exclude. + + + + Adds arguments to be excluded from the list of arguments passed by default + to the Chrome.exe command line by chromedriver.exe. + + An array of arguments to exclude. + + + + Adds arguments to be excluded from the list of arguments passed by default + to the Chrome.exe command line by chromedriver.exe. + + An object of arguments to exclude. + + + + Adds a path to a packed Chrome extension (.crx file) to the list of extensions + to be installed in the instance of Chrome. + + The full path to the extension to add. + + + + Adds a list of paths to packed Chrome extensions (.crx files) to be installed + in the instance of Chrome. + + An array of full paths to the extensions to add. + + + + Adds a list of paths to packed Chrome extensions (.crx files) to be installed + in the instance of Chrome. + + An of full paths to the extensions to add. + + + + Adds a base64-encoded string representing a Chrome extension to the list of extensions + to be installed in the instance of Chrome. + + A base64-encoded string representing the extension to add. + + + + Adds a list of base64-encoded strings representing Chrome extensions to the list of extensions + to be installed in the instance of Chrome. + + An array of base64-encoded strings representing the extensions to add. + + + + Adds a list of base64-encoded strings representing Chrome extensions to be installed + in the instance of Chrome. + + An of base64-encoded strings + representing the extensions to add. + + + + Adds a preference for the user-specific profile or "user data directory." + If the specified preference already exists, it will be overwritten. + + The name of the preference to set. + The value of the preference to set. + + + + Adds a preference for the local state file in the user's data directory for Chrome. + If the specified preference already exists, it will be overwritten. + + The name of the preference to set. + The value of the preference to set. + + + + Allows the Chrome browser to emulate a mobile device. + + The name of the device to emulate. The device name must be a + valid device name from the Chrome DevTools Emulation panel. + Specifying an invalid device name will not throw an exeption, but + will generate an error in Chrome when the driver starts. To unset mobile + emulation, call this method with as the argument. + + + + Allows the Chrome browser to emulate a mobile device. + + The + object containing the settings of the device to emulate. + Thrown if the device settings option does + not have a user agent string set. + Specifying an invalid device name will not throw an exeption, but + will generate an error in Chrome when the driver starts. To unset mobile + emulation, call this method with as the argument. + + + + Adds a type of window that will be listed in the list of window handles + returned by the Chrome driver. + + The name of the window type to add. + This method can be used to allow the driver to access {webview} + elements by adding "webview" as a window type. + + + + Adds a list of window types that will be listed in the list of window handles + returned by the Chrome driver. + + An array of window types to add. + + + + Adds a list of window types that will be listed in the list of window handles + returned by the Chrome driver. + + An of window types to add. + + + + Provides a means to add additional capabilities not yet added as type safe options + for the Chrome driver. + + The name of the capability to add. + The value of the capability to add. + + thrown when attempting to add a capability for which there is already a type safe option, or + when is or the empty string. + + Calling + where has already been added will overwrite the + existing value with the new value in . + Also, by default, calling this method adds capabilities to the options object passed to + chromedriver.exe. + + + + Provides a means to add additional capabilities not yet added as type safe options + for the Chrome driver. + + The name of the capability to add. + The value of the capability to add. + Indicates whether the capability is to be set as a global + capability for the driver instead of a Chrome-specific option. + + thrown when attempting to add a capability for which there is already a type safe option, or + when is or the empty string. + + Calling + where has already been added will overwrite the + existing value with the new value in + + + + Returns DesiredCapabilities for Chrome with these options included as + capabilities. This does not copy the options. Further changes will be + reflected in the returned capabilities. + + The DesiredCapabilities for Chrome with these options. + + + + Gets or sets the location of the Chrome browser's binary executable file. + + + + + Gets or sets a value indicating whether Chrome should be left running after the + ChromeDriver instance is exited. Defaults to . + + + + + Gets or sets the proxy to use with this instance of Chrome. + + + + + Gets the list of arguments appended to the Chrome command line as a string array. + + + + + Gets the list of extensions to be installed as an array of base64-encoded strings. + + + + + Gets or sets the address of a Chrome debugger server to connect to. + Should be of the form "{hostname|IP address}:port". + + + + + Gets or sets the directory in which to store minidump files. + + + + + Gets or sets the performance logging preferences for the driver. + + + + + Represents the type-safe options for setting preferences for performance + logging in the Chrome browser. + + + + + Adds a single category to the list of Chrome tracing categories for which events should be collected. + + The category to add. + + + + Adds categories to the list of Chrome tracing categories for which events should be collected. + + An array of categories to add. + + + + Adds categories to the list of Chrome tracing categories for which events should be collected. + + An object of categories to add. + + + + Gets or sets a value indicating whether Chrome will collect events from the Network domain. + Defaults to . + + + + + Gets or sets a value indicating whether Chrome will collect events from the Page domain. + Defaults to . + + + + + Gets or sets a value indicating whether Chrome will collect events from the Timeline domain. + Defaults to , but is set to when tracing + is enabled by adding one or more tracing categories. + + + + + Gets or sets the interval between Chrome DevTools trace buffer usage events. + Defaults to 1000 milliseconds. + + Thrown when an attempt is made to set + the value to a time span of less tnan or equal to zero milliseconds. + + + + Gets a comma-separated list of the categories for which tracing is enabled. + + + + + Defines the interface through which the user can access the driver used to find an element. + + + + + Gets the used to find this element. + + + + + RemoteWebElement allows you to have access to specific items that are found on the page + + + + + + + Initializes a new instance of the class. + + The instance hosting this element. + The ID assigned to the element. + + + + Clears the content of this element. + + If this element is a text entry element, the + method will clear the value. It has no effect on other elements. Text entry elements + are defined as elements with INPUT or TEXTAREA tags. + Thrown when the target element is no longer valid in the document DOM. + + + + Simulates typing text into the element. + + The text to type into the element. + The text to be typed may include special characters like arrow keys, + backspaces, function keys, and so on. Valid special keys are defined in + . + + Thrown when the target element is not enabled. + Thrown when the target element is not visible. + Thrown when the target element is no longer valid in the document DOM. + + + + Submits this element to the web server. + + If this current element is a form, or an element within a form, + then this will be submitted to the web server. If this causes the current + page to change, then this method will attempt to block until the new page + is loaded. + Thrown when the target element is no longer valid in the document DOM. + + + + Clicks this element. + + + Click this element. If the click causes a new page to load, the + method will attempt to block until the page has loaded. After calling the + method, you should discard all references to this + element unless you know that the element and the page will still be present. + Otherwise, any further operations performed on this element will have an undefined + behavior. + + Thrown when the target element is not enabled. + Thrown when the target element is not visible. + Thrown when the target element is no longer valid in the document DOM. + + + + Gets the value of the specified attribute for this element. + + The name of the attribute. + The attribute's current value. Returns a if the + value is not set. + The method will return the current value + of the attribute, even if the value has been modified after the page has been + loaded. Note that the value of the following attributes will be returned even if + there is no explicit attribute on the element: + Attribute nameValue returned if not explicitly specifiedValid element typescheckedcheckedCheck BoxselectedselectedOptions in Select elementsdisableddisabledInput and other UI elements + Thrown when the target element is no longer valid in the document DOM. + + + + Gets the value of a CSS property of this element. + + The name of the CSS property to get the value of. + The value of the specified CSS property. + The value returned by the + method is likely to be unpredictable in a cross-browser environment. + Color values should be returned as hex strings. For example, a + "background-color" property set as "green" in the HTML source, will + return "#008000" for its value. + Thrown when the target element is no longer valid in the document DOM. + + + + Finds all IWebElements within the current context + using the given mechanism. + + The locating mechanism to use. + A of all WebElements + matching the current criteria, or an empty list if nothing matches. + + + + Finds the first using the given method. + + The locating mechanism to use. + The first matching on the current context. + If no element matches the criteria. + + + + Finds the first of elements that match the link text supplied + + Link text of element + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + IWebElement elem = driver.FindElementByLinkText("linktext") + + + + + + Finds the first of elements that match the link text supplied + + Link text of element + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsByLinkText("linktext") + + + + + + Finds the first element in the page that matches the ID supplied + + ID of the element + IWebElement object so that you can interact with that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + IWebElement elem = driver.FindElementById("id") + + + + + + Finds the first element in the page that matches the ID supplied + + ID of the Element + ReadOnlyCollection of Elements that match the object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsById("id") + + + + + + Finds the first of elements that match the name supplied + + Name of the element + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + elem = driver.FindElementsByName("name") + + + + + + Finds a list of elements that match the name supplied + + Name of element + ReadOnlyCollect of IWebElement objects so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsByName("name") + + + + + + Finds the first of elements that match the DOM Tag supplied + + tag name of the element + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + IWebElement elem = driver.FindElementsByTagName("tag") + + + + + + Finds a list of elements that match the DOM Tag supplied + + DOM Tag of the element on the page + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsByTagName("tag") + + + + + + Finds the first element in the page that matches the CSS Class supplied + + CSS class name of the element on the page + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + IWebElement elem = driver.FindElementByClassName("classname") + + + + + + Finds a list of elements that match the class name supplied + + CSS class name of the elements on the page + ReadOnlyCollection of IWebElement object so that you can interact with those objects + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsByClassName("classname") + + + + + + Finds the first of elements that match the XPath supplied + + xpath to the element + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + IWebElement elem = driver.FindElementsByXPath("//table/tbody/tr/td/a"); + + + + + + Finds a list of elements that match the XPath supplied + + xpath to element on the page + ReadOnlyCollection of IWebElement objects so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsByXpath("//tr/td/a") + + + + + + Finds the first of elements that match the part of the link text supplied + + part of the link text + IWebElement object so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + IWebElement elem = driver.FindElementsByPartialLinkText("partOfLink") + + + + + + Finds a list of elements that match the link text supplied + + part of the link text + ReadOnlyCollection]]> objects so that you can interact that object + + + IWebDriver driver = new RemoteWebDriver(DesiredCapabilities.Firefox()); + ReadOnlyCollection]]> elem = driver.FindElementsByPartialLinkText("partOfTheLink") + + + + + + Finds the first element matching the specified CSS selector. + + The id to match. + The first matching the criteria. + + + + Finds all elements matching the specified CSS selector. + + The CSS selector to match. + A containing all + IWebElements matching the criteria. + + + + Gets a object representing the image of this element on the screen. + + A object containing the image. + + + + Method to get the hash code of the element + + Integer of the hash code for the element + + + + Compares if two elements are equal + + Object to compare against + A boolean if it is equal or not + + + + Finds a child element matching the given mechanism and value. + + The mechanism by which to find the element. + The value to use to search for the element. + The first matching the given criteria. + + + + Finds all child elements matching the given mechanism and value. + + The mechanism by which to find the elements. + The value to use to search for the elements. + A collection of all of the IWebElements matching the given criteria. + + + + Executes a command on this element using the specified parameters. + + The to execute against this element. + A containing names and values of the parameters for the command. + The object containing the result of the command execution. + + + + Gets the used to find this element. + + + + + Gets the tag name of this element. + + + The property returns the tag name of the + element, not the value of the name attribute. For example, it will return + "input" for an element specified by the HTML markup <input name="foo" />. + + Thrown when the target element is no longer valid in the document DOM. + + + + Gets the innerText of this element, without any leading or trailing whitespace, + and with other whitespace collapsed. + + Thrown when the target element is no longer valid in the document DOM. + + + + Gets a value indicating whether or not this element is enabled. + + The property will generally + return for everything except explicitly disabled input elements. + Thrown when the target element is no longer valid in the document DOM. + + + + Gets a value indicating whether or not this element is selected. + + This operation only applies to input elements such as checkboxes, + options in a select element and radio buttons. + Thrown when the target element is no longer valid in the document DOM. + + + + Gets a object containing the coordinates of the upper-left corner + of this element relative to the upper-left corner of the page. + + Thrown when the target element is no longer valid in the document DOM. + + + + Gets a object containing the height and width of this element. + + Thrown when the target element is no longer valid in the document DOM. + + + + Gets a value indicating whether or not this element is displayed. + + The property avoids the problem + of having to parse an element's "style" attribute to determine + visibility of an element. + Thrown when the target element is no longer valid in the document DOM. + + + + Gets the point where the element would be when scrolled into view. + + + + + Gets the coordinates identifying the location of this element using + various frames of reference. + + + + + Gets the ID of the element. + + This property is internal to the WebDriver instance, and is + not intended to be used in your code. The element's ID has no meaning + outside of internal WebDriver usage, so it would be improper to scope + it as public. However, both subclasses of + and the parent driver hosting the element have a need to access the + internal element ID. Therefore, we have two properties returning the + same value, one scoped as internal, the other as protected. + + + + Gets the ID of the element + + This property is internal to the WebDriver instance, and is + not intended to be used in your code. The element's ID has no meaning + outside of internal WebDriver usage, so it would be improper to scope + it as public. However, both subclasses of + and the parent driver hosting the element have a need to access the + internal element ID. Therefore, we have two properties returning the + same value, one scoped as internal, the other as protected. + + + + Provides a mechanism to get elements off the page for test + + + + + Initializes a new instance of the class. + + Driver in use + Id of the element + + + + Provides a mechanism to write tests against Edge + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the specified options. + + The to be used with the Edge driver. + + + + Initializes a new instance of the class using the specified driver service. + + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified path + to the directory containing EdgeDriver.exe. + + The full path to the directory containing EdgeDriver.exe. + + + + Initializes a new instance of the class using the specified path + to the directory containing EdgeDriver.exe and options. + + The full path to the directory containing EdgeDriver.exe. + The to be used with the Edge driver. + + + + Initializes a new instance of the class using the specified path + to the directory containing EdgeDriver.exe, options, and command timeout. + + The full path to the directory containing EdgeDriver.exe. + The to be used with the Edge driver. + The maximum amount of time to wait for each command. + + + + Initializes a new instance of the class using the specified + and options. + + The to use. + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified . + + The to use. + The to be used with the Edge driver. + The maximum amount of time to wait for each command. + + + + Exposes the service provided by the native MicrosoftWebDriver executable. + + + + + Initializes a new instance of the class. + + The full path to the EdgeDriver executable. + The file name of the EdgeDriver executable. + The port on which the EdgeDriver executable should listen. + + + + Creates a default instance of the EdgeDriverService. + + A EdgeDriverService that implements default settings. + + + + Creates a default instance of the EdgeDriverService using a specified path to the EdgeDriver executable. + + The directory containing the EdgeDriver executable. + A EdgeDriverService using a random port. + + + + Creates a default instance of the EdgeDriverService using a specified path to the EdgeDriver executable with the given name. + + The directory containing the EdgeDriver executable. + The name of the EdgeDriver executable file. + A EdgeDriverService using a random port. + + + + Creates a default instance of the EdgeDriverService using a specified path to the EdgeDriver executable with the given name and listening port. + + The directory containing the EdgeDriver executable. + The name of the EdgeDriver executable file + The port number on which the driver will listen + A EdgeDriverService using the specified port. + + + + Gets or sets the value of the host adapter on which the Edge driver service should listen for connections. + + + + + Gets or sets the value of the package the Edge driver service will launch and automate. + + + + + Gets or sets a value indicating whether the service should use verbose logging. + + + + + Gets the command-line arguments for the driver service. + + + + + Specifies the behavior of waiting for page loads in the Edge driver. + + + + + Indicates the behavior is not set. + + + + + Waits for pages to load and ready state to be 'complete'. + + + + + Waits for pages to load and for ready state to be 'interactive' or 'complete'. + + + + + Does not wait for pages to load, returning immediately. + + + + + Class to manage options specific to + + + EdgeOptions options = new EdgeOptions(); + + + + For use with EdgeDriver: + + + + EdgeDriver driver = new EdgeDriver(options); + + + + For use with RemoteWebDriver: + + + + RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities()); + + + + + + Provides a means to add additional capabilities not yet added as type safe options + for the Edge driver. + + The name of the capability to add. + The value of the capability to add. + + thrown when attempting to add a capability for which there is already a type safe option, or + when is or the empty string. + + Calling where + has already been added will overwrite the existing value with the new value in + + + + Returns DesiredCapabilities for Edge with these options included as + capabilities. This copies the options. Further changes will not be + reflected in the returned capabilities. + + The DesiredCapabilities for Edge with these options. + + + + Gets or sets the value for describing how the browser is to wait for pages to load in the Edge driver. + Defaults to . + + + + + Provides a mechanism to get elements off the page for test + + + + + Initializes a new instance of the class + + Driver in use + Id of the element + + + + Represents the binary associated with Firefox. + + The class is responsible for instantiating the + Firefox process, and the operating system environment in which it runs. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class located at a specific file location. + + Full path and file name to the Firefox executable. + + + + Starts Firefox using the specified profile and command-line arguments. + + The to use with this instance of Firefox. + The command-line arguments to use in starting Firefox. + + + + Sets a variable to be used in the Firefox execution environment. + + The name of the environment variable to set. + The value of the environment variable to set. + + + + Waits for the process to complete execution. + + + + + Releases all resources used by the . + + + + + Returns a String that represents the current Object. + + A String that represents the current Object. + + + + Starts the Firefox process. + + + + + Releases the unmanaged resources used by the and optionally + releases the managed resources. + + + to release managed and resources; + to only release unmanaged resources. + + + + Gets or sets the timeout to wait for Firefox to be available for command execution. + + + + + Gets the associated with this . + + + + + Gets a value indicating whether the current operating system is Linux. + + + + + Gets a containing string key-value pairs + representing any operating system environment variables beyond the defaults. + + + + + Provides a way to access Firefox to run tests. + + + When the FirefoxDriver object has been instantiated the browser will load. The test can then navigate to the URL under test and + start your test. + + In the case of the FirefoxDriver, you can specify a named profile to be used, or you can let the + driver create a temporary, anonymous profile. A custom extension allowing the driver to communicate + to the browser will be installed into the profile. + + + + [TestFixture] + public class Testing + { + private IWebDriver driver; + + [SetUp] + public void SetUp() + { + driver = new FirefoxDriver(); + } + + [Test] + public void TestGoogle() + { + driver.Navigate().GoToUrl("http://www.google.co.uk"); + /* + * Rest of the test + */ + } + + [TearDown] + public void TearDown() + { + driver.Quit(); + } + } + + + + + + The name of the ICapabilities setting to use to define a custom Firefox profile. + + + + + The name of the ICapabilities setting to use to define a custom location for the + Firefox executable. + + + + + The default port on which to communicate with the Firefox extension. + + + + + Indicates whether native events is enabled by default for this platform. + + + + + Indicates whether the driver will accept untrusted SSL certificates. + + + + + Indicates whether the driver assume the issuer of untrusted certificates is untrusted. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class for a given profile. + + A object representing the profile settings + to be used in starting Firefox. + + + + Initializes a new instance of the class for a given set of capabilities. + + The object containing the desired + capabilities of this FirefoxDriver. + + + + Initializes a new instance of the class for a given profile and binary environment. + + A object representing the operating system + environmental settings used when running Firefox. + A object representing the profile settings + to be used in starting Firefox. + + + + Initializes a new instance of the class for a given profile, binary environment, and timeout value. + + A object representing the operating system + environmental settings used when running Firefox. + A object representing the profile settings + to be used in starting Firefox. + The maximum amount of time to wait for each command. + + + + Initializes a new instance of the class using the specified options. Uses the Mozilla-provided Marionette driver implementation. + + The to be used with the Firefox driver. + + + + Initializes a new instance of the class using the specified driver service. Uses the Mozilla-provided Marionette driver implementation. + + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified options, driver service, and timeout. Uses the Mozilla-provided Marionette driver implementation. + + The to use. + The to be used with the Firefox driver. + The maximum amount of time to wait for each command. + + + + In derived classes, the method prepares the environment for test execution. + + + + + Creates a with the specified ID. + + The ID of this element. + A with the specified ID. For the FirefoxDriver this will be a . + + + + Gets or sets the responsible for detecting + sequences of keystrokes representing file paths and names. + + The Firefox driver does not allow a file detector to be set, + as the server component of the Firefox driver only allows uploads from + the local computer environment. Attempting to set this property has no + effect, but does not throw an exception. If you are attempting to run + the Firefox driver remotely, use in + conjunction with a standalone WebDriver server. + + + + Gets a value indicating whether the Firefox driver instance uses + Mozilla's Marionette implementation. This is a temporary property + and will be removed when Marionette is available for the release + channel of Firefox. + + + + + Provides a way to send commands to the remote server + + + + + Executes a command + + The command you wish to execute + A response from the browser + + + + Gets the repository of objects containin information about commands. + + + + + Provides a way of executing Commands using the FirefoxDriver. + + + + + Initializes a new instance of the class. + + The on which to make the connection. + The creating the connection. + The name of the host on which to connect to the Firefox extension (usually "localhost"). + The maximum amount of time to wait for each command. + + + + Executes a command + + The command you wish to execute + A response from the browser + + + + Releases all resources used by the . + + + + + Releases the unmanaged resources used by the and + optionally releases the managed resources. + + + to release managed and resources; + to only release unmanaged resources. + + + + Gets the repository of objects containin information about commands. + + + + + Represents the valid values of logging levels available with the Firefox driver (geckodriver.exe). + + + + + Represents the Trace value, the most detailed logging level available. + + + + + Represents the Debug value + + + + + Represents the Config value + + + + + Represents the Info value + + + + + Represents the Warn value + + + + + Represents the Error value + + + + + Represents the Fatal value, the least detailed logging level available. + + + + + Represents that the logging value is unspecified, and should be the default level. + + + + + Provides methods for launching Firefox with the WebDriver extension installed. + + + + + Initializes a new instance of the class. + + The on which to make the connection. + The creating the connection. + The name of the host on which to connect to the Firefox extension (usually "localhost"). + + + + Starts the server. + + + + + Releases all resources used by the . + + + + + Releases the unmanaged resources used by the and optionally + releases the managed resources. + + + to release managed and resources; + to only release unmanaged resources. + + + + Gets the for communicating with this server. + + + + + Exposes the service provided by the native FirefoxDriver executable. + + + + + Initializes a new instance of the class. + + The full path to the Firefox driver executable. + The file name of the Firefox driver executable. + The port on which the Firefox driver executable should listen. + + + + Creates a default instance of the FirefoxDriverService. + + A FirefoxDriverService that implements default settings. + + + + Creates a default instance of the FirefoxDriverService using a specified path to the Firefox driver executable. + + The directory containing the Firefox driver executable. + A FirefoxDriverService using a random port. + + + + Creates a default instance of the FirefoxDriverService using a specified path to the Firefox driver executable with the given name. + + The directory containing the Firefox driver executable. + The name of th Firefox driver executable file. + A FirefoxDriverService using a random port. + + + + Returns the Firefox driver filename for the currently running platform + + The file name of the Chrome driver service executable. + + + + Gets or sets the location of the Firefox binary executable. + + + + + Gets or sets the port used by the driver executable to communicate with the browser. + + + + + Gets or sets the value of the IP address of the host adapter on which the + service should listen for connections. + + + + + Gets or sets a value indicating whether to connect to an already-running + instance of Firefox. + + + + + Gets a value indicating the time to wait for an initial connection before timing out. + + + + + Gets a value indicating the time to wait for the service to terminate before forcing it to terminate. + + + + + Gets a value indicating whether the service is responding to HTTP requests. + + + + + Gets the command-line arguments for the driver service. + + + + + Provides the ability to install extensions into a . + + + + + Initializes a new instance of the class. + + The name of the file containing the Firefox extension. + WebDriver attempts to resolve the parameter + by looking first for the specified file in the directory of the calling assembly, + then using the full path to the file, if a full path is provided. + + + + Initializes a new instance of the class. + + The name of the file containing the Firefox extension. + The ID of the resource within the assembly containing the extension + if the file is not present in the file system. + WebDriver attempts to resolve the parameter + by looking first for the specified file in the directory of the calling assembly, + then using the full path to the file, if a full path is provided. If the file is + not found in the file system, WebDriver attempts to locate a resource in the + executing assembly with the name specified by the + parameter. + + + + Installs the extension into a profile directory. + + The Firefox profile directory into which to install the extension. + + + + Class to manage options specific to + + Used with the marionette executable wires.exe. + + + + FirefoxOptions options = new FirefoxOptions(); + + + + For use with FirefoxDriver: + + + + FirefoxDriver driver = new FirefoxDriver(options); + + + + For use with RemoteWebDriver: + + + + RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities()); + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class for the given profile and binary. + + The to use in the options. + The to use in the options. + + + + Adds an argument to be used in launching the Firefox browser. + + The argument to add. + Arguments must be preceeded by two dashes ("--"). + + + + Adds a list arguments to be used in launching the Firefox browser. + + An array of arguments to add. + Each argument must be preceeded by two dashes ("--"). + + + + Adds a list arguments to be used in launching the Firefox browser. + + An array of arguments to add. + Each argument must be preceeded by two dashes ("--"). + + + + Sets a preference in the profile used by Firefox. + + Name of the preference to set. + Value of the preference to set. + + + + Sets a preference in the profile used by Firefox. + + Name of the preference to set. + Value of the preference to set. + + + + Sets a preference in the profile used by Firefox. + + Name of the preference to set. + Value of the preference to set. + + + + Sets a preference in the profile used by Firefox. + + Name of the preference to set. + Value of the preference to set. + + + + Sets a preference in the profile used by Firefox. + + Name of the preference to set. + Value of the preference to set. + + + + Provides a means to add additional capabilities not yet added as type safe options + for the Chrome driver. + + The name of the capability to add. + The value of the capability to add. + + thrown when attempting to add a capability for which there is already a type safe option, or + when is or the empty string. + + Calling + where has already been added will overwrite the + existing value with the new value in . + Also, by default, calling this method adds capabilities to the options object passed to + geckodriver.exe. + + + + Provides a means to add additional capabilities not yet added as type safe options + for the Firefox driver. + + The name of the capability to add. + The value of the capability to add. + Indicates whether the capability is to be set as a global + capability for the driver instead of a Firefox-specific option. + + thrown when attempting to add a capability for which there is already a type safe option, or + when is or the empty string. + + Calling + where has already been added will overwrite the + existing value with the new value in + + + + Returns DesiredCapabilities for Firefox with these options included as + capabilities. This does not copy the options. Further changes will be + reflected in the returned capabilities. + + The DesiredCapabilities for Firefox with these options. + + + + Gets or sets a value indicating whether to use the legacy driver implementation. + + + + + Gets or sets the object to be used with this instance. + + + + + Gets or sets the path and file name of the Firefox browser executable. + + + + + Gets or sets the logging level of the Firefox driver. + + + + + Provides the ability to edit the preferences associated with a Firefox profile. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using a + specific profile directory. + + The directory containing the profile. + + + + Initializes a new instance of the class using a + specific profile directory. + + The directory containing the profile. + Delete the source directory of the profile upon cleaning. + + + + Converts a base64-encoded string into a . + + The base64-encoded string containing the profile contents. + The constructed . + + + + Adds a Firefox Extension to this profile + + The path to the new extension + + + + Sets a preference in the profile. + + The name of the preference to add. + A value to add to the profile. + + + + Sets a preference in the profile. + + The name of the preference to add. + A value to add to the profile. + + + + Sets a preference in the profile. + + The name of the preference to add. + A value to add to the profile. + + + + Set proxy preferences for this profile. + + The object defining the proxy + preferences for the profile. + + + + Writes this in-memory representation of a profile to disk. + + + + + Cleans this Firefox profile. + + If this profile is a named profile that existed prior to + launching Firefox, the method removes the WebDriver + Firefox extension. If the profile is an anonymous profile, the profile + is deleted. + + + + Converts the profile into a base64-encoded string. + + A base64-encoded string containing the contents of the profile. + + + + Adds the WebDriver extension for Firefox to the profile. + + + + + Generates a random directory name for the profile. + + A random directory name for the profile. + + + + Deletes the lock files for a profile. + + + + + Installs all extensions in the profile in the directory on disk. + + + + + Deletes the cache of extensions for this profile, if the cache exists. + + If the extensions cache does not exist for this profile, the + method performs no operations, but + succeeds. + + + + Writes the user preferences to the profile. + + + + + Reads the existing preferences from the profile. + + A containing key-value pairs representing the preferences. + Assumes that we only really care about the preferences, not the comments + + + + Sets a preference for a manually specified proxy. + + The protocol for which to set the proxy. + The setting for the proxy. + + + + Gets or sets the port on which the profile connects to the WebDriver extension. + + + + + Gets the directory containing the profile. + + + + + Gets or sets a value indicating whether to delete this profile after use with + the . + + + + + Gets or sets a value indicating whether native events are enabled. + + + + + Gets or sets a value indicating whether to always load the library for allowing Firefox + to execute commands without its window having focus. + + The property is only used on Linux. + + + + Gets or sets a value indicating whether Firefox should accept SSL certificates which have + expired, signed by an unknown authority or are generally untrusted. Set to true + by default. + + + + + Gets or sets a value indicating whether Firefox assume untrusted SSL certificates + come from an untrusted issuer or are self-signed. Set to true by default. + + + + Due to limitations within Firefox, it is easy to find out if a certificate has expired + or does not match the host it was served for, but hard to find out if the issuer of the + certificate is untrusted. By default, it is assumed that the certificates were not + issued from a trusted certificate authority. + + + If you receive an "untrusted site" prompt it Firefox when using a certificate that was + issued by valid issuer, but the certificate has expired or is being served served for + a different host (e.g. production certificate served in a testing environment) set this + to false. + + + + + + Allows the user to enumerate and access existing named Firefox profiles. + + + + + Initializes a new instance of the class. + + + + + Gets a with a given name. + + The name of the profile to get. + A with a given name. + Returns if no profile with the given name exists. + + + + Gets a containing FirefoxProfiles + representing the existing named profiles for Firefox. + + + + + Allows the user to control elements on a page in Firefox. + + + + + Initializes a new instance of the class. + + The instance hosting this element. + The ID assigned to the element. + + + + Determines whether two instances are equal. + + The to compare with the current . + + if the specified is equal to the + current ; otherwise, . + + + + Serves as a hash function for a . + + A hash code for the current . + + + + Represents the preferences used by a profile in Firefox. + + + + + Initializes a new instance of the class. + + A set of preferences that cannot be modified once set. + A set of default preferences. + + + + Sets a preference. + + The name of the preference to set. + A value give the preference. + If the preference already exists in the currently-set list of preferences, + the value will be updated. + + + + Sets a preference. + + The name of the preference to set. + A value give the preference. + If the preference already exists in the currently-set list of preferences, + the value will be updated. + + + + Sets a preference. + + The name of the preference to set. + A value give the preference. + If the preference already exists in the currently-set list of preferences, + the value will be updated. + + + + Gets a preference from the list of preferences. + + The name of the preference to retrieve. + The value of the preference, or an empty string if the preference is not set. + + + + Appends this set of preferences to the specified set of preferences. + + A dictionary containing the preferences to which to + append these values. + If the preference already exists in , + the value will be updated. + + + + Writes the preferences to a file. + + The full path to the file to be written. + + + + Represents the executable file for Firefox. + + + + + Initializes a new instance of the class. + + The path and file name to the Firefox executable. + + + + Sets the library path for the Firefox executable environment. + + The used to execute the binary. + + + + Locates the Firefox binary by platform. + + The full path to the binary. + + + + Retrieves an environment variable + + Name of the variable. + Default value of the variable. + The value of the variable. If no variable with that name is set, returns the default. + + + + Retrieves the platform specific environment property name which contains the library path. + + The platform specific environment property name which contains the library path. + + + + Walk a PATH to locate binaries with a specified name. Binaries will be searched for in the + order they are provided. + + The binary names to search for. + The first binary found matching that name. + + + + Gets the full path to the executable. + + + + + Defines the interface through which the mutex port for establishing communication + with the WebDriver extension can be locked. + + + + + Locks the mutex port. + + The amount of time (in milliseconds) to wait for + the mutex port to become available. + + + + Locks the mutex port. + + The describing the amount of time to wait for + the mutex port to become available. + + + + Unlocks the mutex port. + + + + + Parses and reads an INI file. + + + + + Initializes a new instance of the class. + + The full path to the .INI file to be read. + + + + Gets a value from the .INI file. + + The section in which to find the key-value pair. + The key of the key-value pair. + The value associated with the given section and key. + + + + Gets a containing the names of the sections in the .INI file. + + + + + Provides a mutex-like lock on a socket. + + + + + Initializes a new instance of the class. + + Port to use to acquire the lock. + The class will attempt to acquire the + specified port number, and wait for it to become free. + + + + Locks the mutex port. + + The describing the amount of time to wait for + the mutex port to become available. + + + + Locks the mutex port. + + The amount of time (in milliseconds) to wait for + the mutex port to become available. + + + + Unlocks the mutex port. + + + + + Releases all resources associated with this + + + + Represents the application cache status. + + + + + AppCache status is uncached + + + + + AppCache status is idle + + + + + AppCache status is checkint + + + + + AppCache status is downloading + + + + + AppCache status is updated-ready + + + + + AppCache status is obsolete + + + + + Defines an interface allowing the user to access application cache status + + + + + Gets the current state of the application cache. + + + + + Represents the local storage for the site currently opened in the browser. + Each site has its own separate storage area. + + + + + Returns value of the local storage given a key. + + key to for a local storage entry + Value of the local storage entry as given a key. + + + + Returns the set of keys associated with local storage. + + Returns the set of keys associated with local storage as . + + + + Adds key/value pair to local storage. + + storage key + storage value + + + + Removes key/value pair from local storage. + + key to remove from storage + Value from local storage as string for the given key. + + + + Clears local storage. + + + + + Gets the number of items in local storage. + + + + + Interface for location context + + + + + Gets or sets a value indicating the physical location of the browser. + + + + + Represents the session storage for the site currently opened in the browser. + Each site has its own separate storage area. + + + + + Returns value of the session storage given a key. + + key to for a session storage entry + Value of the session storage entry as given a key. + + + + Returns the set of keys associated with session storage. + + Returns the set of keys associated with session storage as . + + + + Adds key/value pair to session storage. + + storage key + storage value + + + + Removes key/value pair from session storage. + + key to remove from storage + Value from session storage as string for the given key. + + + + Clears local storage. + + + + + Gets the number of items in session storage. + + + + + Represents both local and session storage for the site currently opened in the browser. + + + + + Gets the local storage for the site currently opened in the browser. + + + + + Gets the session storage for the site currently opened in the browser. + + + + + Represents the physical location of the browser. + + + + + Initializes a new instance of the class. + + latitude for current location + longitude for current location + altitude for current location + + + + Retuns string represenation for current location. + + Returns string reprsentation for current location. + + + + Gets the latitude of the current location. + + + + + Gets the longitude of the current location. + + + + + Gets the altitude of the current location. + + + + + Provides a way to access Internet Explorer to run your tests by creating a InternetExplorerDriver instance + + + When the WebDriver object has been instantiated the browser will load. The test can then navigate to the URL under test and + start your test. + + + + [TestFixture] + public class Testing + { + private IWebDriver driver; + + [SetUp] + public void SetUp() + { + driver = new InternetExplorerDriver(); + } + + [Test] + public void TestGoogle() + { + driver.Navigate().GoToUrl("http://www.google.co.uk"); + /* + * Rest of the test + */ + } + + [TearDown] + public void TearDown() + { + driver.Quit(); + driver.Dispose(); + } + } + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the desired + options. + + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified driver service. + + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified path + to the directory containing IEDriverServer.exe. + + The full path to the directory containing IEDriverServer.exe. + + + + Initializes a new instance of the class using the specified path + to the directory containing IEDriverServer.exe and options. + + The full path to the directory containing IEDriverServer.exe. + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified path + to the directory containing IEDriverServer.exe, options, and command timeout. + + The full path to the directory containing IEDriverServer.exe. + The used to initialize the driver. + The maximum amount of time to wait for each command. + + + + Initializes a new instance of the class using the specified + and options. + + The to use. + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified + , , and command timeout. + + The to use. + The used to initialize the driver. + The maximum amount of time to wait for each command. + + + + Gets or sets the responsible for detecting + sequences of keystrokes representing file paths and names. + + The IE driver does not allow a file detector to be set, + as the server component of the IE driver (IEDriverServer.exe) only + allows uploads from the local computer environment. Attempting to set + this property has no effect, but does not throw an exception. If you + are attempting to run the IE driver remotely, use + in conjunction with a standalone WebDriver server. + + + + Represents the valid values for driver engine available with the IEDriverServer.exe. + + + + + Represents the Legacy value, forcing the driver to use only the open-source + driver engine implementation. + + + + + Represents the AutoDetect value, instructing the driver to use the vendor-provided + driver engine implementation, if available, falling back to the open-source + implementation, if it is not available. + + + + + Represents the Vendor value, instructing the driver to use the vendor-provided + driver engine implementation, and throwing an exception if it is not available. + + + + + Represents the valid values of logging levels available with the IEDriverServer.exe. + + + + + Represents the Trace value, the most detailed logging level available. + + + + + Represents the Debug value + + + + + Represents the Info value + + + + + Represents the Warn value + + + + + Represents the Error value + + + + + Represents the Fatal value, the least detailed logging level available. + + + + + Exposes the service provided by the native IEDriverServer executable. + + + + + Initializes a new instance of the class. + + The full path to the IEDriverServer executable. + The file name of the IEDriverServer executable. + The port on which the IEDriverServer executable should listen. + + + + Creates a default instance of the InternetExplorerDriverService. + + A InternetExplorerDriverService that implements default settings. + + + + Creates a default instance of the InternetExplorerDriverService using a specified path to the IEDriverServer executable. + + The directory containing the IEDriverServer executable. + A InternetExplorerDriverService using a random port. + + + + Creates a default instance of the InternetExplorerDriverService using a specified path to the IEDriverServer executable with the given name. + + The directory containing the IEDriverServer executable. + The name of the IEDriverServer executable file. + A InternetExplorerDriverService using a random port. + + + + Gets or sets the value of the host adapter on which the IEDriverServer should listen for connections. + + + + + Gets or sets the location of the log file written to by the IEDriverServer. + + + + + Gets or sets the logging level used by the IEDriverServer. + + + + + Gets or sets the implementation to be used by the IEDriverServer. + + + + + Gets or sets the path to which the supporting library of the IEDriverServer.exe is extracted. + Defaults to the temp directory if this property is not set. + + + The IEDriverServer.exe requires extraction of a supporting library to perform some of its functions. Setting + This library is extracted to the temp directory if this property is not set. If the property is set, it must + be set to a valid directory. + + + + + Gets or sets the comma-delimited list of IP addresses that are approved to + connect to this instance of the IEDriverServer. Defaults to an empty string, + which means only the local loopback address can connect. + + + + + Gets the command-line arguments for the driver service. + + + + + Specifies the scroll behavior of elements scrolled into view in the IE driver. + + + + + Scrolls elements to align with the top of the viewport. + + + + + Scrolls elements to align with the bottom of the viewport. + + + + + Specifies the behavior of handling unexpected alerts in the IE driver. + + + + + Indicates the behavior is not set. + + + + + Ignore unexpected alerts, such that the user must handle them. + + + + + Accept unexpected alerts. + + + + + Dismiss unexpected alerts. + + + + + Specifies the behavior of waiting for page loads in the IE driver. + + + + + Indicates the behavior is not set. + + + + + Waits for pages to load and ready state to be 'complete'. + + + + + Waits for pages to load and for ready state to be 'interactive' or 'complete'. + + + + + Does not wait for pages to load, returning immediately. + + + + + Class to manage options specific to + + + InternetExplorerOptions options = new InternetExplorerOptions(); + options.IntroduceInstabilityByIgnoringProtectedModeSettings = true; + + + + For use with InternetExplorerDriver: + + + + InternetExplorerDriver driver = new InternetExplorerDriver(options); + + + + For use with RemoteWebDriver: + + + + RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities()); + + + + + + Provides a means to add additional capabilities not yet added as type safe options + for the Internet Explorer driver. + + The name of the capability to add. + The value of the capability to add. + + thrown when attempting to add a capability for which there is already a type safe option, or + when is or the empty string. + + Calling where + has already been added will overwrite the existing value with the new value in + + + + Returns DesiredCapabilities for IE with these options included as + capabilities. This copies the options. Further changes will not be + reflected in the returned capabilities. + + The DesiredCapabilities for IE with these options. + + + + Gets or sets a value indicating whether to ignore the settings of the Internet Explorer Protected Mode. + + + + + Gets or sets a value indicating whether to ignore the zoom level of Internet Explorer . + + + + + Gets or sets a value indicating whether to use native events in interacting with elements. + + + + + Gets or sets a value indicating whether to require the browser window to have focus before interacting with elements. + + + + + Gets or sets the initial URL displayed when IE is launched. If not set, the browser launches + with the internal startup page for the WebDriver server. + + + By setting the to + and this property to a correct URL, you can launch IE in the Internet Protected Mode zone. This can be helpful + to avoid the flakiness introduced by ignoring the Protected Mode settings. Nevertheless, setting Protected Mode + zone settings to the same value in the IE configuration is the preferred method. + + + + + Gets or sets the value for describing how elements are scrolled into view in the IE driver. Defaults + to scrolling the element to the top of the viewport. + + + + + Gets or sets the value for describing how unexpected alerts are to be handled in the IE driver. + Defaults to . + + + + + Gets or sets the value for describing how the browser is to wait for pages to load in the IE driver. + Defaults to . + + + + + Gets or sets a value indicating whether to enable persistently sending WM_MOUSEMOVE messages + to the IE window during a mouse hover. + + + + + Gets or sets the amount of time the driver will attempt to look for a newly launched instance + of Internet Explorer. + + + + + Gets or sets the amount of time the driver will attempt to look for the file selection + dialog when attempting to upload a file. + + + + + Gets or sets a value indicating whether to force the use of the Windows CreateProcess API + when launching Internet Explorer. The default value is . + + + + + Gets or sets a value indicating whether to force the use of the Windows ShellWindows API + when attaching to Internet Explorer. The default value is . + + + + + Gets or sets a value indicating whether to validate the document type of the loaded + document when setting cookies. + + + + + Gets or sets the command line arguments used in launching Internet Explorer when the + Windows CreateProcess API is used. This property only has an effect when the + is . + + + + + Gets or sets the to be used with Internet Explorer. By default, + will install the specified proxy to be the system proxy, used by all instances of + Internet Explorer. To change this default behavior, change the + property. + + + + + Gets or sets a value indicating whether to use the supplied + settings on a per-process basis, not updating the system installed proxy setting. + This property is only valid when setting a , where the + property is either , + , or , and is + otherwise ignored. Defaults to . + + + + + Gets or sets a value indicating whether to clear the Internet Explorer cache + before launching the browser. When set to , clears the + system cache for all instances of Internet Explorer, even those already running + when the driven instance is launched. Defaults to . + + + + + Gets or sets a value indicating whether to enable full-page screenshots for + the IE driver. Defaults to . + + + + + InternetExplorerWebElement allows you to have access to specific items that are found on the page. + + + + + + [Test] + public void TestGoogle() + { + driver = new InternetExplorerDriver(); + InternetExplorerWebElement elem = driver.FindElement(By.Name("q")); + elem.SendKeys("Cheese please!"); + } + + + + + + Initializes a new instance of the class. + + Driver in use. + ID of the element. + + + + Provides a mechanism for building advanced interactions with the browser. + + + + + Initializes a new instance of the class. + + The object on which the actions built will be performed. + + + + Sends a modifier key down message to the browser. + + The key to be sent. + A self-reference to this . + If the key sent is not is not one + of , , or . + + + + Sends a modifier key down message to the specified element in the browser. + + The element to which to send the key command. + The key to be sent. + A self-reference to this . + If the key sent is not is not one + of , , or . + + + + Sends a modifier key up message to the browser. + + The key to be sent. + A self-reference to this . + If the key sent is not is not one + of , , or . + + + + Sends a modifier up down message to the specified element in the browser. + + The element to which to send the key command. + The key to be sent. + A self-reference to this . + If the key sent is not is not one + of , , or . + + + + Sends a sequence of keystrokes to the browser. + + The keystrokes to send to the browser. + A self-reference to this . + + + + Sends a sequence of keystrokes to the specified element in the browser. + + The element to which to send the keystrokes. + The keystrokes to send to the browser. + A self-reference to this . + + + + Clicks and holds the mouse button down on the specified element. + + The element on which to click and hold. + A self-reference to this . + + + + Clicks and holds the mouse button at the last known mouse coordinates. + + A self-reference to this . + + + + Releases the mouse button on the specified element. + + The element on which to release the button. + A self-reference to this . + + + + Releases the mouse button at the last known mouse coordinates. + + A self-reference to this . + + + + Clicks the mouse on the specified element. + + The element on which to click. + A self-reference to this . + + + + Clicks the mouse at the last known mouse coordinates. + + A self-reference to this . + + + + Double-clicks the mouse on the specified element. + + The element on which to double-click. + A self-reference to this . + + + + Double-clicks the mouse at the last known mouse coordinates. + + A self-reference to this . + + + + Moves the mouse to the specified element. + + The element to which to move the mouse. + A self-reference to this . + + + + Moves the mouse to the specified offset of the top-left corner of the specified element. + + The element to which to move the mouse. + The horizontal offset to which to move the mouse. + The vertical offset to which to move the mouse. + A self-reference to this . + + + + Moves the mouse to the specified offset of the last known mouse coordinates. + + The horizontal offset to which to move the mouse. + The vertical offset to which to move the mouse. + A self-reference to this . + + + + Right-clicks the mouse on the specified element. + + The element on which to right-click. + A self-reference to this . + + + + Right-clicks the mouse at the last known mouse coordinates. + + A self-reference to this . + + + + Performs a drag-and-drop operation from one element to another. + + The element on which the drag operation is started. + The element on which the drop is performed. + A self-reference to this . + + + + Performs a drag-and-drop operation on one element to a specified offset. + + The element on which the drag operation is started. + The horizontal offset to which to move the mouse. + The vertical offset to which to move the mouse. + A self-reference to this . + + + + Builds the sequence of actions. + + A composite which can be used to perform the actions. + + + + Performs the currently built action. + + + + + Gets the instance of the specified . + + The to get the location of. + The of the . + + + + Adds an action to current list of actions to be performed. + + The to be added. + + + + Defines an action for keyboard and mouse interaction with the browser. + + + + + Initializes a new instance of the class for the given element. + + An object that provides coordinates for this action. + + + + Initializes a new instance of the class. + + This action will take place in the context of the previous action's coordinates. + + + + Gets the target of the action providing coordinates of the action. + + + + + Defines an action for mouse interaction with the browser. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + An describing an element at which to perform the action. + + + + Moves the mouse to the location at which to perform the action. + + + + + Gets the coordinates at which to perform the mouse action. + + + + + Gets the mouse with which to perform the action. + + + + + Provides methods by which an interaction with the browser can be performed. + + + + + Performs this action on the browser. + + + + + Defines an action for releasing the currently held mouse button. + + + This action can be called for an element different than the one + ClickAndHoldAction was called for. However, if this action is + performed out of sequence (without holding down the mouse button, + for example) the results will be different. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + An describing an element at which to perform the action. + + + + Performs this action. + + + + + Defines an action for clicking on an element. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + An describing an element at which to perform the action. + + + + Performs this action. + + + + + Defines an action for clicking and holding the mouse button on an element. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + An describing an element at which to perform the action. + + + + Performs this action. + + + + + Defines an action that consists of a list of other actions to be performed in the browser. + + + + + Adds an action to the list of actions to be performed. + + An to be appended to the + list of actions to be performed. + A self reference. + + + + Performs the actions defined in this list of actions. + + + + + Defines an action for clicking the secondary mouse button on an element, displaying a context menu. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + An describing an element at which to perform the action. + + + + Performs this action. + + + + + Defines an action for double-clicking on an element. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + An describing an element at which to perform the action. + + + + Performs this action. + + + + + Defines an action for keyboard interaction with the browser. + + + + + Initializes a new instance of the class. + + The to use in performing the action. + An object providing the element on which to perform the action. + + + + Gets the touch screen with which to perform the action. + + + + + Gets the location at which to perform the action. + + + + + Creates a double tap gesture on a touch screen. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + An describing an element at which to perform the action. + + + + Performs the action. + + + + + Creates a flick gesture on a touch screen. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + The horizontal speed in pixels per second. + The vertical speed in pixels per second. + + + + Initializes a new instance of the class for use with the specified element. + + The with which the action will be performed. + An describing an element at which to perform the action. + The x offset relative to the viewport. + The y offset relative to the viewport. + The speed in pixels per second. + + + + Performs the action. + + + + + Provides location of the element using various frames of reference. + + + + + Gets the location of an element in absolute screen coordinates. + + + + + Gets the location of an element relative to the origin of the view port. + + + + + Gets the location of an element's position within the HTML DOM. + + + + + Gets a locator providing a user-defined location for this element. + + + + + Defines an action for keyboard interaction with the browser. + + + + + Initializes a new instance of the class. + + The to use in performing the action. + The to use in setting focus to the element on which to perform the action. + An object providing the element on which to perform the action. + + + + Focuses on the element on which the action is to be performed. + + + + + Gets the keyboard with which to perform the action. + + + + + Defines an action for keyboard interaction with the browser using a single modifier key. + + + + + Initializes a new instance of the class. + + The to use in performing the action. + The to use in setting focus to the element on which to perform the action. + An object providing the element on which to perform the action. + The modifier key (, , ) to use in the action. + + + + Gets the key with which to perform the action. + + + + + Defines an action for pressing a modifier key (Shift, Alt, or Control) on the keyboard. + + + + + Initializes a new instance of the class. + + The to use in performing the action. + The to use in setting focus to the element on which to perform the action. + An object providing the element on which to perform the action. + The modifier key (, , ) to use in the action. + + + + Performs this action. + + + + + Defines an action for releasing a modifier key (Shift, Alt, or Control) on the keyboard. + + + + + Initializes a new instance of the class. + + The to use in performing the action. + The to use in setting focus to the element on which to perform the action. + An object providing the element on which to perform the action. + The modifier key (, , ) to use in the action. + + + + Performs this action. + + + + + Creates a long press gesture on a touch screen. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + An describing an element at which to perform the action. + + + + Performs the action. + + + + + Defines an action for moving the mouse to a specified location. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + An describing an element at which to perform the action. + + + + Performs this action. + + + + + Defines an action for moving the mouse to a specified offset from its current location. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + An describing an element at which to perform the action. + The horizontal offset from the origin of the target to which to move the mouse. + The vertical offset from the origin of the target to which to move the mouse. + + + + Performs this action. + + + + + Presses a touch screen at a given location. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + The x coordinate relative to the view port. + The y coordinate relative to the view port. + + + + Performs the action. + + + + + Presses a touch screen at a given location. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + The x coordinate relative to the view port. + The y coordinate relative to the view port. + + + + Performs the action. + + + + + Presses a touch screen at a given location. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + The x coordinate relative to the view port. + The y coordinate relative to the view port. + + + + Performs the action. + + + + + Creates a double tap gesture on a touch screen. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + The horizontal offset relative to the view port. + The vertical offset relative to the view port. + + + + Initializes a new instance of the class for use with the specified element. + + The with which the action will be performed. + An describing an element at which to perform the action. + The x coordinate relative to the view port. + The y coordinate relative to the view port. + + + + Performs the action. + + + + + Defines an action for sending a sequence of keystrokes to an element. + + + + + Initializes a new instance of the class. + + The to use in performing the action. + The to use in setting focus to the element on which to perform the action. + An object providing the element on which to perform the action. + The key sequence to send. + + + + Performs this action. + + + + + Creates a single tap gesture on a touch screen. + + + + + Initializes a new instance of the class. + + The with which the action will be performed. + An describing an element at which to perform the action. + + + + Performs the action. + + + + + Provides a mechanism for building advanced interactions with the browser. + + + + + Initializes a new instance of the class. + + The object on which the actions built will be performed. + + + + Taps the touch screen on the specified element. + + The element on which to tap. + A self-reference to this . + + + + Presses down at the specified location on the screen. + + The x coordinate relative to the view port. + The y coordinate relative to the view port. + A self-reference to this . + + + + Releases a press at the specified location on the screen. + + The x coordinate relative to the view port. + The y coordinate relative to the view port. + A self-reference to this . + + + + Moves to the specified location on the screen. + + The x coordinate relative to the view port. + The y coordinate relative to the view port. + A self-reference to this . + + + + Scrolls the touch screen beginning at the specified element. + + The element on which to begin scrolling. + The x coordinate relative to the view port. + The y coordinate relative to the view port. + A self-reference to this . + + + + Double-taps the touch screen on the specified element. + + The element on which to double-tap. + A self-reference to this . + + + + Presses and holds on the touch screen on the specified element. + + The element on which to press and hold + A self-reference to this . + + + + Scrolls the touch screen to the specified offset. + + The horizontal offset relative to the view port. + The vertical offset relative to the view port. + A self-reference to this . + + + + Flicks the current view. + + The horizontal speed in pixels per second. + The vertical speed in pixels per second. + A self-reference to this . + + + + Flicks the current view starting at a specific location. + + The element at which to start the flick. + The x offset relative to the viewport. + The y offset relative to the viewport. + The speed in pixels per second. + A self-reference to this . + + + + Utility class used to execute "asynchronous" scripts. This class should + only be used by browsers that do not natively support asynchronous + script execution. + Warning: this class is intended for internal use + only. This class will be removed without warning after all + native asynchronous implementations have been completed. + + + + + Initializes a new instance of the class. + + An object capable of executing JavaScript. + + + + Executes a JavaScript script asynchronously. + + The script to execute. + An array of objects used as arguments in the script. + The object which is the return value of the script. + if the object executing the function doesn't support JavaScript. + if the page reloads during the JavaScript execution. + if the timeout expires during the JavaScript execution. + + + + Gets or sets the timeout for the script executor. + + + + + Encapsulates methods for working with files. + + + + + Recursively copies a directory. + + The source directory to copy. + The destination directory. + + if the copy is completed; otherwise . + + + + Recursively deletes a directory, retrying on error until a timeout. + + The directory to delete. + This method does not throw an exception if the delete fails. + + + + Searches for a file with the specified name. + + The name of the file to find. + The full path to the directory where the file can be found, + or an empty string if the file does not exist in the locations searched. + + This method looks first in the directory of the currently executing + assembly. If the specified file is not there, the method then looks in + each directory on the PATH environment variable, in order. + + + + + Gets the directory of the currently executing assembly. + + The directory of the currently executing assembly. + + + + Generates the full path to a random directory name in the temporary directory, following a naming pattern.. + + The pattern to use in creating the directory name, following standard + .NET string replacement tokens. + The full path to the random directory name in the temporary directory. + + + + Defines the interface through which the user can discover if there is an underlying element to be used. + + + + + Gets the wrapped by this object. + + + + + Provides entry points into needed unmanaged APIs. + + + + + Values for flags for setting information about a native operating system handle. + + + + + Sets the handle information for a Windows object. + + Handle to the object. + The handle information to set. + The flags for the handle. + + if the information is set; otherwise . + + + + Encapsulates methods for working with ports. + + + + + Finds a random, free port to be listened on. + + A random, free port to be listened on. + + + + Encapsulates methods for finding and extracting WebDriver resources. + + + + + Gets a that contains the resource to use. + + A file name in the file system containing the resource to use. + A string representing the resource name embedded in the + executing assembly, if it is not found in the file system. + A Stream from which the resource can be read. + Thrown if neither the file nor the embedded resource can be found. + + The GetResourceStream method searches for the specified resource using the following + algorithm: + In the same directory as the calling assembly.In the full path specified by the argument.Inside the calling assembly as an embedded resource. + + + + Returns a value indicating whether a resource exists with the specified ID. + + ID of the embedded resource to check for. + + if the resource exists in the calling assembly; otherwise . + + + + Represents a cookie returned to the driver by the browser. + + + + + Initializes a new instance of the class with a specific name, + value, domain, path and expiration date. + + The name of the cookie. + The value of the cookie. + The domain of the cookie. + The path of the cookie. + The expiration date of the cookie. + + if the cookie is secure; otherwise + + if the cookie is an HTTP-only cookie; otherwise + If the name is or an empty string, + or if it contains a semi-colon. + If the value or currentUrl is . + + + + Creates and returns a string representation of the current cookie. + + A string representation of the current cookie. + + + + Gets a value indicating whether the cookie is secure. + + + + + Gets a value indicating whether the cookie is an HTTP-only cookie. + + + + + Unique class for compression/decompression file. Represents a Zip file. + + + + + Compression method enumeration. + + + + + Represents an entry in Zip file directory + + + + Overriden method + Filename in Zip + + + + Create a new zip storage in a stream. + + The stream to use to create the Zip file. + General comment for Zip file. + A valid ZipStorer object. + + + + Open the existing Zip storage in a stream. + + Already opened stream with zip contents. + File access mode for stream operations. + A valid ZipStorer object. + + + + Add full contents of a file into the Zip storage. + + Compression method used to store the file. + Full path of file to add to Zip storage. + File name and path as desired in Zip directory. + Comment for stored file. + + + + Add full contents of a stream into the Zip storage. + + Compression method used to store the stream. + Stream object containing the data to store in Zip. + File name and path as desired in Zip directory. + Modification time of the data to store. + Comment for stored file. + + + + Updates central directory (if needed) and close the Zip storage. + + This is a required step, unless automatic dispose is used. + + + + Read all the file records in the central directory. + + List of all entries in directory. + + + + Copy the contents of a stored file into a physical file. + + Entry information of file to extract. + Name of file to store uncompressed data. + + if the file is successfully extracted; otherwise, . + Unique compression methods are Store and Deflate. + + + + Copy the contents of a stored file into an open stream. + + Entry information of file to extract. + Stream to store the uncompressed data. + + if the file is successfully extracted; otherwise, . + Unique compression methods are Store and Deflate. + + + + Closes the Zip file stream. + + + + + Gets a value indicating whether file names and comments should be encoded using UTF-8. + + + + + Gets a value indicating whether to force using the deflate algorithm, + even if doing so inflates the stored file. + + + + + Provides a mechanism to write tests against Opera + + + + [TestFixture] + public class Testing + { + private IWebDriver driver; + + [SetUp] + public void SetUp() + { + driver = new OperaDriver(); + } + + [Test] + public void TestGoogle() + { + driver.Navigate().GoToUrl("http://www.google.co.uk"); + /* + * Rest of the test + */ + } + + [TearDown] + public void TearDown() + { + driver.Quit(); + } + } + + + + + + Accept untrusted SSL Certificates + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the specified options. + + The to be used with the Opera driver. + + + + Initializes a new instance of the class using the specified path + to the directory containing OperaDriver.exe. + + The full path to the directory containing OperaDriver.exe. + + + + Initializes a new instance of the class using the specified path + to the directory containing OperaDriver.exe and options. + + The full path to the directory containing OperaDriver.exe. + The to be used with the Opera driver. + + + + Initializes a new instance of the class using the specified path + to the directory containing OperaDriver.exe, options, and command timeout. + + The full path to the directory containing OperaDriver.exe. + The to be used with the Opera driver. + The maximum amount of time to wait for each command. + + + + Initializes a new instance of the class using the specified + and options. + + The to use. + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified . + + The to use. + The to be used with the Opera driver. + The maximum amount of time to wait for each command. + + + + Gets or sets the responsible for detecting + sequences of keystrokes representing file paths and names. + + The Opera driver does not allow a file detector to be set, + as the server component of the Opera driver (OperaDriver.exe) only + allows uploads from the local computer environment. Attempting to set + this property has no effect, but does not throw an exception. If you + are attempting to run the Opera driver remotely, use + in conjunction with a standalone WebDriver server. + + + + Exposes the service provided by the native OperaDriver executable. + + + + + Initializes a new instance of the class. + + The full path to the OperaDriver executable. + The file name of the OperaDriver executable. + The port on which the OperaDriver executable should listen. + + + + Creates a default instance of the OperaDriverService. + + A OperaDriverService that implements default settings. + + + + Creates a default instance of the OperaDriverService using a specified path to the OperaDriver executable. + + The directory containing the OperaDriver executable. + A OperaDriverService using a random port. + + + + Creates a default instance of the OperaDriverService using a specified path to the OperaDriver executable with the given name. + + The directory containing the OperaDriver executable. + The name of the OperaDriver executable file. + A OperaDriverService using a random port. + + + + Gets or sets the location of the log file written to by the OperaDriver executable. + + + + + Gets or sets the base URL path prefix for commands (e.g., "wd/url"). + + + + + Gets or sets the address of a server to contact for reserving a port. + + + + + Gets or sets the port on which the Android Debug Bridge is listening for commands. + + + + + Gets or sets a value indicating whether to enable verbose logging for the OperaDriver executable. + Defaults to . + + + + + Gets the command-line arguments for the driver service. + + + + + Class to manage options specific to + + Used with OperaDriver.exe for Chromium v0.1.0 and higher. + + + + OperaOptions options = new OperaOptions(); + options.AddExtensions("\path\to\extension.crx"); + options.BinaryLocation = "\path\to\opera"; + + + + For use with OperaDriver: + + + + OperaDriver driver = new OperaDriver(options); + + + + For use with RemoteWebDriver: + + + + RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities()); + + + + + + Gets the name of the capability used to store Opera options in + a object. + + + + + Adds a single argument to the list of arguments to be appended to the Opera.exe command line. + + The argument to add. + + + + Adds arguments to be appended to the Opera.exe command line. + + An array of arguments to add. + + + + Adds arguments to be appended to the Opera.exe command line. + + An object of arguments to add. + + + + Adds a single argument to be excluded from the list of arguments passed by default + to the Opera.exe command line by operadriver.exe. + + The argument to exclude. + + + + Adds arguments to be excluded from the list of arguments passed by default + to the Opera.exe command line by operadriver.exe. + + An array of arguments to exclude. + + + + Adds arguments to be excluded from the list of arguments passed by default + to the Opera.exe command line by operadriver.exe. + + An object of arguments to exclude. + + + + Adds a path to a packed Opera extension (.crx file) to the list of extensions + to be installed in the instance of Opera. + + The full path to the extension to add. + + + + Adds a list of paths to packed Opera extensions (.crx files) to be installed + in the instance of Opera. + + An array of full paths to the extensions to add. + + + + Adds a list of paths to packed Opera extensions (.crx files) to be installed + in the instance of Opera. + + An of full paths to the extensions to add. + + + + Adds a base64-encoded string representing a Opera extension to the list of extensions + to be installed in the instance of Opera. + + A base64-encoded string representing the extension to add. + + + + Adds a list of base64-encoded strings representing Opera extensions to the list of extensions + to be installed in the instance of Opera. + + An array of base64-encoded strings representing the extensions to add. + + + + Adds a list of base64-encoded strings representing Opera extensions to be installed + in the instance of Opera. + + An of base64-encoded strings + representing the extensions to add. + + + + Adds a preference for the user-specific profile or "user data directory." + If the specified preference already exists, it will be overwritten. + + The name of the preference to set. + The value of the preference to set. + + + + Adds a preference for the local state file in the user's data directory for Opera. + If the specified preference already exists, it will be overwritten. + + The name of the preference to set. + The value of the preference to set. + + + + Provides a means to add additional capabilities not yet added as type safe options + for the Opera driver. + + The name of the capability to add. + The value of the capability to add. + + thrown when attempting to add a capability for which there is already a type safe option, or + when is or the empty string. + + Calling + where has already been added will overwrite the + existing value with the new value in . + Also, by default, calling this method adds capabilities to the options object passed to + operadriver.exe. + + + + Provides a means to add additional capabilities not yet added as type safe options + for the Opera driver. + + The name of the capability to add. + The value of the capability to add. + Indicates whether the capability is to be set as a global + capability for the driver instead of a Opera-specific option. + + thrown when attempting to add a capability for which there is already a type safe option, or + when is or the empty string. + + Calling + where has already been added will overwrite the + existing value with the new value in + + + + Returns DesiredCapabilities for Opera with these options included as + capabilities. This does not copy the options. Further changes will be + reflected in the returned capabilities. + + The DesiredCapabilities for Opera with these options. + + + + Gets or sets the location of the Opera browser's binary executable file. + + + + + Gets or sets a value indicating whether Opera should be left running after the + OperaDriver instance is exited. Defaults to . + + + + + Gets or sets the proxy to use with this instance of Opera. + + + + + Gets the list of arguments appended to the Opera command line as a string array. + + + + + Gets the list of extensions to be installed as an array of base64-encoded strings. + + + + + Gets or sets the address of a Opera debugger server to connect to. + Should be of the form "{hostname|IP address}:port". + + + + + Gets or sets the directory in which to store minidump files. + + + + + Provides a mechanism to get elements off the page for test + + + + + Initializes a new instance of the class + + Driver in use + Id of the element + + + + Allows the user to specify the name of an argument to be used on the command line for PhantomJS. + + + + + Initializes a new instance of the class. + + The name of the argument to be used in the PhantomJS command line. + + + + Gets the name of the argument to be used in the PhantomJS command line. + + + + + Provides a way to access PhantomJS to run your tests by creating a PhantomJSDriver instance + + + When the WebDriver object has been instantiated the browser will load. The test can then navigate to the URL under test and + start your test. + + + + [TestFixture] + public class Testing + { + private IWebDriver driver; + + [SetUp] + public void SetUp() + { + driver = new PhantomJSDriver(); + } + + [Test] + public void TestGoogle() + { + driver.Navigate().GoToUrl("http://www.google.co.uk"); + /* + * Rest of the test + */ + } + + [TearDown] + public void TearDown() + { + driver.Quit(); + driver.Dispose(); + } + } + + + + + + Command name of the PhantomJS-specific command to execute native script in PhantomJS. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the desired options. + + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified driver service. + + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified path + to the directory containing PhantomJS.exe. + + The full path to the directory containing PhantomJS.exe. + + + + Initializes a new instance of the class using the specified path + to the directory containing PhantomJS.exe and options. + + The full path to the directory containing PhantomJS.exe. + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified path + to the directory containing PhantomJS.exe, options, and command timeout. + + The full path to the directory containing PhantomJS.exe. + The used to initialize the driver. + The maximum amount of time to wait for each command. + + + + Initializes a new instance of the class using the specified + and options. + + The to use. + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified . + + The to use. + The used to initialize the driver. + The maximum amount of time to wait for each command. + + + + Execute a PhantomJS script fragment. Provides extra functionality not found in WebDriver + but available in PhantomJS. + + The fragment of PhantomJS JavaScript to execute. + List of arguments to pass to the function that the script is wrapped in. + These can accessed in the script as 'arguments[0]', 'arguments[1]','arguments[2]', etc + + The result of the evaluation. + + + See the PhantomJS API + for details on what is available. + + + A 'page' variable pointing to currently selected page is available for use. + If there is no page yet, one is created. + + + When overriding any callbacks be sure to wrap in a try/catch block, as failures + may cause future WebDriver calls to fail. + + + Certain callbacks are used by GhostDriver (the PhantomJS WebDriver implementation) + already. Overriding these may cause the script to fail. It's a good idea to check + for existing callbacks before overriding. + + + + + + Gets or sets the responsible for detecting + sequences of keystrokes representing file paths and names. + + The PhantomJS driver does not allow a file detector to be set, + as PhantomJS only allows uploads from the local computer environment. + Attempting to set this property has no effect, but does not throw an + exception. If you are attempting to run the PhantomJS driver remotely, + use in conjunction with a standalone + WebDriver server. + + + + Exposes the service provided by the native PhantomJS executable and GhostDriver JavaScript library. + + + + + Prevents a default instance of the class from being created. + + + This constructor is only used by the unit tests. It should not be + used in any other circumstances. + + + + + Initializes a new instance of the class. + + The full path to the PhantomJS executable. + The file name of the PhantomJS executable. + The port on which the IEDriverServer executable should listen. + + + + Creates a default instance of the PhantomJSDriverService. + + A PhantomJSDriverService that implements default settings. + + + + Creates a default instance of the PhantomJSDriverService using a specified path to the PhantomJS executable. + + The directory containing the PhantomJS executable. + A PhantomJSDriverService using a random port. + + + + Creates a default instance of the PhantomJSDriverService using a specified path to the PhantomJS executable with the given name. + + The directory containing the PhantomJS executable. + The name of the PhantomJS executable file. + A PhantomJSDriverService using a random port. + + + + Adds a single argument to the list of arguments to be appended to the PhantomJS.exe command line. + + The argument to add. + + + + Adds arguments to be appended to the PhantomJS.exe command line. + + An array of arguments to add. + + + + Adds arguments to be appended to the PhantomJS.exe command line. + + An object of arguments to add. + + + + Serializes the service options to JSON to be used as a configuration file for PhantomJS.exe (via the --config argument). + + The JSON representation of the configured service options. + + + + Gets or sets the file name used to store the persistent cookies. + + + + + Gets or sets a value indicating whether the disk cache is enabled (at desktop services cache storage location, default is no). + + + + + Gets or sets a value indicating whether SSL errors are ignored, such as expired or self-signed certificate errors (default is no). + + + + + Gets or sets a value indicating whether all inlined images are loaded (default is yes). + + + + + Gets or sets the path to save LocalStorage content and WebSQL content. + + + + + Gets or sets the maximum size to allow for data. + + + + + Gets or sets a value indicating whether local content is allowed to access remote URL (default is no). + + + + + Gets or sets the size limit of the disk cache in KB. + + + + + Gets or sets the encoding used for terminal output (default is "utf8"). + + + + + Gets or sets the proxy server information (in the format of {address} or {address}:{port}). + + + + + Gets or sets the type of the proxy server ('http', 'socks5' or 'none'). + + + + + Gets or sets the proxy authentication info (e.g. username:password). + + + + + Gets or sets the encoding used for the starting script (default is "utf8"). + + + + + Gets or sets the SSL protocol for secure connections ('sslv3' (default), 'sslv2', 'tlsv1' or 'any'). + + + + + Gets or sets the location for custom CA certificates (if none set, uses system default). + + + + + Gets or sets a value indicating whether web security is enabled and forbids cross-domain XHR (default is yes). + + + + + Gets or sets the location where the GhostDriver JavaScript file is located. This + allows the use of an external implementation of GhostDriver instead of the + implementation embedded inside the PhantomJS executable. + + + + + Gets or sets the IP address to use when starting the GhostDriver implementation + embedded in PhantomJS. + + + + + Gets or sets the URL of a Selenium Grid hub with which this PhantomJS instance should register. + + + + + Gets or sets the location of the log file to which PhantomJS will write log + output. If this value is or an empty string, the log + output will be written to the console window. + + + + + Gets the list of arguments appended to the PhantomJS command line as a string array. + + + + + Gets or sets the path to the JSON configuration file (in lieu of providing any other parameters). + + If a instance is serialized to JSON, it can be saved to a + file and used as a JSON configuration source for the PhantomJS.exe process. + + + var configOptions = PhantomJSDriverService.CreateDefaultService() + { + CookiesFile = "cookiesFile", + DiskCache = true, + IgnoreSslErrors = true, + LoadImages = true, + LocalToRemoteUrlAccess = true, + MaxDiskCacheSize = 1000, + OutputEncoding = "abc", + Proxy = "address:999", + ProxyType = "socks5", + ScriptEncoding = "def", + SslProtocol = "sslv2", + WebSecurity = true, + }; + + string json = configOptions.ToJson(); + + File.WriteAllText(@"C:\temp\myconfig.json", json); + + var driverService = PhantomJSDriver.CreateDefaultService(); + driverService.ConfigFile = @"C:\temp\myconfig.json"; + + var driver = new PhantomJSDriver(driverService); // Launches PhantomJS.exe using JSON configuration file. + + + + + + Gets the command-line arguments for the driver service. + + + + + Class to manage options specific to + + + PhantomJSOptions options = new PhantomJSOptions(); + + + + For use with PhantomJSDriver: + + + + PhantomJSDriver driver = new PhantomJSDriver(options); + + + + For use with RemoteWebDriver: + + + + RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities()); + + + + + + Provides a means to add additional capabilities not yet added as type safe options + for the PhantomJS driver. + + The name of the capability to add. + The value of the capability to add. + + thrown when attempting to add a capability for which there is already a type safe option, or + when is or the empty string. + + Calling where + has already been added will overwrite the existing value with the new value in + + + + Returns DesiredCapabilities for PhantomJS with these options included as + capabilities. This copies the options. Further changes will not be + reflected in the returned capabilities. + + The DesiredCapabilities for PhantomJS with these options. + + + + PhantomJSWebElement allows you to have access to specific items that are found on the page. + + + + + + [Test] + public void TestGoogle() + { + driver = new PhantomJSDriver(); + PhantomJSWebElement elem = driver.FindElement(By.Name("q")); + elem.SendKeys("Cheese please!"); + } + + + + + + Initializes a new instance of the class. + + Driver in use. + ID of the element. + + + + Provides types of capabilities for the DesiredCapabilities object. + + + + + Capability name used for the browser name. + + + + + Capability name used for the browser platform. + + + + + Capability name used for the browser version. + + + + + Capability name used to indicate whether JavaScript is enabled for the browser. + + + + + Capability name used to indicate whether the browser can take screenshots. + + + + + Capability name used to indicate whether the browser can handle alerts. + + + + + Capability name used to indicate whether the browser can find elements via CSS selectors. + + + + + Capability name used for the browser proxy. + + + + + Capability name used to indicate whether the browser supports rotation. + + + + + Capability name used to indicate whether the browser accepts SSL certificates. + + + + + Capability name used to indicate whether the browser uses native events. + + + + + Capability name used to indicate how the browser handles unexpected alerts. + + + + + Capability name used to indicate the page load strategy for the browser. + + + + + Capability name used to indicate the logging preferences for the session. + + + + + Capability name used to disable the check for overlapping elements. + + + + + Capability name used to enable the profiling log for the session. + + + + + Capability name used to indicate whether the driver supports geolocation context. + + + + + Capability name used to indicate whether the driver supports application cache. + + + + + Capability name used to indicate whether the driver supports web storage. + + + + + Provides a way to send commands to the remote server + + + + + Initializes a new instance of the class using a command name and a JSON-encoded string for the parameters. + + Name of the command + Parameters for the command as a JSON-encoded string. + + + + Initializes a new instance of the class for a Session + + Session ID the driver is using + Name of the command + Parameters for that command + + + + Returns a string of the Command object + + A string representation of the Command Object + + + + Gets the command parameters as a , with a string key, and an object value. + + The JSON-encoded string representing the command parameters. + A with a string keys, and an object value. + + + + Gets the SessionID of the command + + + + + Gets the command name + + + + + Gets the parameters of the command + + + + + Gets the parameters of the command as a JSON-encoded string. + + + + + Provides the execution information for a . + + + + + POST verb for the command info + + + + + GET verb for the command info + + + + + DELETE verb for the command info + + + + + Initializes a new instance of the class + + Method of the Command + Relative URL path to the resource used to execute the command + + + + Creates a web request for your command + + Uri that will have the command run against + Command to execute + A web request of what has been run + + + + Gets the URL representing the path to the resource. + + + + + Gets the HTTP method associated with the command. + + + + + Holds the information about all commands specified by the JSON wire protocol. + This class cannot be inherited, as it is intended to be a singleton, and + allowing subclasses introduces the possibility of multiple instances. + + + + + Initializes a new instance of the class. + Protected accessibility prevents a default instance from being created. + + + + + Gets the for a . + + The for which to get the information. + The for the specified command. + + + + Tries to add a command to the list of known commands. + + Name of the command. + The command information. + + if the new command has been added successfully; otherwise, . + + This method is used by WebDriver implementations to add additional custom driver-specific commands. + This method will not overwrite existing commands for a specific name, and will return + in that case. + + + + + Initializes the dictionary of commands for the CommandInfoRepository + + + + + Gets the level of the W3C WebDriver specification that this repository supports. + + + + + Class to Create the capabilities of the browser you require for . + If you wish to use default values use the static methods + + + + + Initializes a new instance of the class + + Name of the browser e.g. firefox, internet explorer, safari + Version of the browser + The platform it works on + + + + Initializes a new instance of the class + + + + + Initializes a new instance of the class + + Dictionary of items for the remote driver + + + DesiredCapabilities capabilities = new DesiredCapabilities(new Dictionary]]>(){["browserName","firefox"],["version",string.Empty],["javaScript",true]}); + + + + + + Method to return a new DesiredCapabilities using defaults + + New instance of DesiredCapabilities for use with Firefox + + + + Method to return a new DesiredCapabilities using defaults + + New instance of DesiredCapabilities for use with Firefox + + + + Method to return a new DesiredCapabilities using defaults + + New instance of DesiredCapabilities for use with Internet Explorer + + + + Method to return a new DesiredCapabilities using defaults + + New instance of DesiredCapabilities for use with Microsoft Edge + + + + Method to return a new DesiredCapabilities using defaults + + New instance of DesiredCapabilities for use with HTMLUnit + + + + Method to return a new DesiredCapabilities using defaults + + New instance of DesiredCapabilities for use with HTMLUnit with JS + + + + Method to return a new DesiredCapabilities using defaults + + New instance of DesiredCapabilities for use with iPhone + + + + Method to return a new DesiredCapabilities using defaults + + New instance of DesiredCapabilities for use with iPad + + + + Method to return a new DesiredCapabilities using defaults + + New instance of DesiredCapabilities for use with Chrome + + + + Method to return a new DesiredCapabilities using defaults + + New instance of DesiredCapabilities for use with Android + + + + Method to return a new DesiredCapabilities using defaults + + New instance of DesiredCapabilities for use with Opera + + + + Method to return a new DesiredCapabilities using defaults + + New instance of DesiredCapabilities for use with Safari + + + + Gets a value indicating whether the browser has a given capability. + + The capability to get. + Returns if the browser has the capability; otherwise, . + + + + Gets a capability of the browser. + + The capability to get. + An object associated with the capability, or + if the capability is not set on the browser. + + + + Sets a capability of the browser. + + The capability to get. + The value for the capability. + + + + Converts the object to a . + + The containing the capabilities. + + + + Return HashCode for the DesiredCapabilities that has been created + + Integer of HashCode generated + + + + Return a string of capabilities being used + + String of capabilities being used + + + + Compare two DesiredCapabilities and will return either true or false + + DesiredCapabilities you wish to compare + true if they are the same or false if they are not + + + + Gets the browser name + + + + + Gets or sets the platform + + + + + Gets the browser version + + + + + Gets or sets a value indicating whether the browser is JavaScript enabled + + + + + Gets the internal capabilities dictionary. + + + + + Values describing the list of commands understood by a remote server using the JSON wire protocol. + + + + + Represents the Define Driver Mapping command + + + + + Represents the Status command. + + + + + Represents a New Session command + + + + + Represents the Get Session List command + + + + + Represents the Get Session Capabilities command + + + + + Represents a Browser close command + + + + + Represents a browser quit command + + + + + Represents a GET command + + + + + Represents a Browser going back command + + + + + Represents a Browser going forward command + + + + + Represents a Browser refreshing command + + + + + Represents adding a cookie command + + + + + Represents getting all cookies command + + + + + Represents getting cookie command + + + + + Represents deleting a cookie command + + + + + Represents Deleting all cookies command + + + + + Represents FindElement command + + + + + Represents FindElements command + + + + + Represents FindChildElement command + + + + + Represents FindChildElements command + + + + + Describes an element + + + + + Represents ClearElement command + + + + + Represents ClickElement command + + + + + Represents SendKeysToElements command + + + + + Represents TapElement command + + + + + Represents SubmitElement command + + + + + Represents GetCurrentWindowHandle command + + + + + Represents GetWindowHandles command + + + + + Represents SwitchToWindow command + + + + + Represents SwitchToFrame command + + + + + Represents SwitchToParentFrame command + + + + + Represents GetActiveElement command + + + + + Represents GetCurrentUrl command + + + + + Represents GetPageSource command + + + + + Represents GetTitle command + + + + + Represents ExecuteScript command + + + + + Represents ExecuteAsyncScript command + + + + + Represents GetElementText command + + + + + Represents GetElementTagName command + + + + + Represents IsElementSelected command + + + + + Represents IsElementEnabled command + + + + + Represents IsElementDisplayed command + + + + + Represents GetElementLocation command + + + + + Represents GetElementLocationOnceScrolledIntoView command + + + + + Represents GetElementSize command + + + + + Represents GetElementRect command + + + + + Represents GetElementAttribute command + + + + + Represents GetElementProperty command + + + + + Represents GetElementValueOfCSSProperty command + + + + + Represents ElementEquals command + + + + + Represents Screenshot command + + + + + Represents the ElementScreenshot command + + + + + Represents GetOrientation command + + + + + Represents SetOrientation command + + + + + Represents GetWindowSize command + + + + + Represents SetWindowSize command + + + + + Represents GetWindowPosition command + + + + + Represents SetWindowPosition command + + + + + Represents MaximizeWindow command + + + + + Represents FullScreenWindow command + + + + + Represents the DismissAlert command + + + + + Represents the AcceptAlert command + + + + + Represents the GetAlertText command + + + + + Represents the SetAlertValue command + + + + + Represents the Authenticate command + + + + + Represents the ImplicitlyWait command + + + + + Represents the SetAsyncScriptTimeout command + + + + + Represents the SetTimeout command + + + + + Represents the Actions command. + + + + + Represents the MouseClick command. + + + + + Represents the MouseDoubleClick command. + + + + + Represents the MouseDown command. + + + + + Represents the MouseUp command. + + + + + Represents the MouseMoveTo command. + + + + + Represents the SendKeysToActiveElement command. + + + + + Represents the UploadFile command. + + + + + Represents the TouchSingleTap command. + + + + + Represents the TouchPress command. + + + + + Represents the TouchRelease command. + + + + + Represents the TouchMove command. + + + + + Represents the TouchScroll command. + + + + + Represents the TouchDoubleTap command. + + + + + Represents the TouchLongPress command. + + + + + Represents the TouchFlick command. + + + + + Represents the GetLocation command. + + + + + Represents the SetLocation command. + + + + + Represents the GetAppCache command. + + + + + Represents the application cache GetStatus command. + + + + + Represents the ClearAppCache command. + + + + + Represents the GetLocalStorageItem command. + + + + + Represents the GetLocalStorageKeys command. + + + + + Represents the SetLocalStorageItem command. + + + + + Represents the RemoveLocalStorageItem command. + + + + + Represents the ClearLocalStorage command. + + + + + Represents the GetLocalStorageSize command. + + + + + Represents the GetSessionStorageItem command. + + + + + Represents the GetSessionStorageKeys command. + + + + + Represents the SetSessionStorageItem command. + + + + + Represents the RemoveSessionStorageItem command. + + + + + Represents the ClearSessionStorage command. + + + + + Represents the GetSessionStorageSize command. + + + + + Represents the GetAvailableLogTypes command. + + + + + Represents the GetLog command. + + + + + Provides a mechanism to execute commands on the browser + + + + + Initializes a new instance of the class. + + The that drives the browser. + The maximum amount of time to wait for each command. + + + + Initializes a new instance of the class. + + The that drives the browser. + The maximum amount of time to wait for each command. + + if the KeepAlive header should be sent + with HTTP requests; otherwise, . + + + + Executes a command + + The command you wish to execute + A response from the browser + + + + Gets the object associated with this executor. + + + + + Provides a way to store errors from a response + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the specified values. + + A containing names and values of + the properties of this . + + + + Gets or sets the message from the response + + + + + Gets or sets the class name that threw the error + + + + + Gets or sets the screenshot of the error + + + + + Gets or sets the stack trace of the error + + + + + Provides a way of executing Commands over HTTP + + + + + Initializes a new instance of the class + + Address of the WebDriver Server + The timeout within which the server must respond. + + + + Initializes a new instance of the class + + Address of the WebDriver Server + The timeout within which the server must respond. + + if the KeepAlive header should be sent + with HTTP requests; otherwise, . + + + + Executes a command + + The command you wish to execute + A response from the browser + + + + Gets the repository of objects containin information about commands. + + + + + Represents a file detector for determining whether a file + must be uploaded to a remote server. + + + + + Returns a value indicating whether a specified key sequence represents + a file name and path. + + The sequence to test for file existence. + + if the key sequence represents a file; otherwise, . + + + + Defines the interface through which the user can manipulate JavaScript alerts. + + + + + Initializes a new instance of the class. + + The for which the alerts will be managed. + + + + Dismisses the alert. + + + + + Accepts the alert. + + + + + Sends keys to the alert. + + The keystrokes to send. + + + + Sets the user name and password in an alert prompting for credentials. + + The user name to set. + The password to set. + + + + Gets the text of the alert. + + + + + Defines the interface through which the user can manipulate application cache. + + + + + Initializes a new instance of the class. + + The for which the application cache will be managed. + + + + Gets the current state of the application cache. + + + + + Defines an interface allowing the user to manipulate cookies on the current page. + + + + + Initializes a new instance of the class. + + The driver that is currently in use + + + + Method for creating a cookie in the browser + + + that represents a cookie in the browser + + + + Delete the cookie by passing in the name of the cookie + + The name of the cookie that is in the browser + + + + Delete a cookie in the browser by passing in a copy of a cookie + + An object that represents a copy of the cookie that needs to be deleted + + + + Delete All Cookies that are present in the browser + + + + + Method for returning a getting a cookie by name + + name of the cookie that needs to be returned + A Cookie from the name + + + + Method for getting a Collection of Cookies that are present in the browser + + ReadOnlyCollection of Cookies in the browser + + + + Gets all cookies defined for the current page. + + + + + Defines the interface through which the user can discover where an element is on the screen. + + + + + Initializes a new instance of the class. + + The to be located. + + + + Gets the location of an element in absolute screen coordinates. + + + + + Gets the location of an element relative to the origin of the view port. + + + + + Gets the location of an element's position within the HTML DOM. + + + + + Gets a locator providing a user-defined location for this element. + + + + + Defines the interface through which the user can execute advanced keyboard interactions. + + + + + Initializes a new instance of the class. + + The for which the keyboard will be managed. + + + + Sends a sequence of keystrokes to the target. + + A string representing the keystrokes to send. + + + + Presses a key. + + The key value representing the key to press. + The key value must be one of the values from the class. + + + + Releases a key. + + The key value representing the key to release. + The key value must be one of the values from the class. + + + + Defines the interface through which the user can manipulate local storage. + + + + + Initializes a new instance of the class. + + The for which the application cache will be managed. + + + + Returns local storage value given a key. + + The key value for the item in storage. + A local storage value given a key, if present, otherwise returns null. + + + + Returns a read-only list of local storage keys. + + A read-only list of local storage keys. + + + + Sets local storage entry using given key/value pair. + + local storage key + local storage value + + + + Removes local storage entry for the given key. + + key to be removed from the list + Response value for the given key. + + + + Removes all entries from the local storage. + + + + + Gets the number of items in local storage. + + + + + Defines the interface through which the user can manipulate browser location. + + + + + Initializes a new instance of the class. + + The for which the application cache will be managed. + + + + Gets or sets a value indicating the physical location of the browser. + + + + + Provides a mechanism for examining logs for the driver during the test. + + + + + Initializes a new instance of the class. + + Instance of the driver currently in use + + + + Gets the set of objects for a specified log. + + The log for which to retrieve the log entries. + Log types can be found in the class. + The list of objects for the specified log. + + + + Gets the list of available log types for this driver. + + + + + Defines the interface through which the user can execute advanced mouse interactions. + + + + + Initializes a new instance of the class. + + The for which the mouse will be managed. + + + + Clicks at a set of coordinates using the primary mouse button. + + An describing where to click. + + + + Double-clicks at a set of coordinates. + + A describing where to double-click. + + + + Presses the primary mouse button at a set of coordinates. + + A describing where to press the mouse button down. + + + + Releases the primary mouse button at a set of coordinates. + + A describing where to release the mouse button. + + + + Moves the mouse to the specified set of coordinates. + + A describing where to move the mouse to. + + + + Moves the mouse to the specified set of coordinates. + + A describing where to click. + A horizontal offset from the coordinates specified in . + A vertical offset from the coordinates specified in . + + + + Clicks at a set of coordinates using the secondary mouse button. + + A describing where to click. + + + + Provides a mechanism for Navigating with the driver. + + + + + Initializes a new instance of the class + + Driver in use + + + + Move the browser back + + + + + Move the browser forward + + + + + Navigate to a url for your test + + String of where you want the browser to go to + + + + Navigate to a url for your test + + Uri object of where you want the browser to go to + + + + Refresh the browser + + + + + Provides a mechanism for setting options needed for the driver during the test. + + + + + Initializes a new instance of the class + + Instance of the driver currently in use + + + + Provides access to the timeouts defined for this driver. + + An object implementing the interface. + + + + Gets an object allowing the user to manipulate cookies on the page. + + + + + Gets an object allowing the user to manipulate the currently-focused browser window. + + "Currently-focused" is defined as the browser window having the window handle + returned when IWebDriver.CurrentWindowHandle is called. + + + + Gets an object allowing the user to examine the logs of the current driver instance. + + + + + Defines the interface through which the user can manipulate session storage. + + + + + Initializes a new instance of the class. + + The driver instance. + + + + Returns session storage value given a key. + + The key of the item in storage. + A session storage value given a key, if present, otherwise return null. + + + + Returns a read-only list of session storage keys. + + A read-only list of session storage keys. + + + + Sets session storage entry using given key/value pair. + + Session storage key + Session storage value + + + + Removes session storage entry for the given key. + + key to be removed from the list + Response value for the given key. + + + + Removes all entries from the session storage. + + + + + Gets the number of items in session storage. + + + + + Provides a mechanism for finding elements on the page with locators. + + + + + Initializes a new instance of the class + + The driver that is currently in use + + + + Move to a different frame using its index + + The index of the + A WebDriver instance that is currently in use + + + + Move to different frame using its name + + name of the frame + A WebDriver instance that is currently in use + + + + Move to a frame element. + + a previously found FRAME or IFRAME element. + A WebDriver instance that is currently in use. + + + + Select the parent frame of the currently selected frame. + + An instance focused on the specified frame. + + + + Change to the Window by passing in the name + + Window handle or name of the window that you wish to move to + A WebDriver instance that is currently in use + + + + Change the active frame to the default + + Element of the default + + + + Finds the active element on the page and returns it + + Element that is active + + + + Switches to the currently active modal dialog for this particular driver instance. + + A handle to the dialog. + + + + Defines the interface through which the user can define timeouts. + + + + + Initializes a new instance of the class + + The driver that is currently in use + + + + Specifies the amount of time the driver should wait when searching for an + element if it is not immediately present. + + A structure defining the amount of time to wait. + A self reference + + When searching for a single element, the driver should poll the page + until the element has been found, or this timeout expires before throwing + a . When searching for multiple elements, + the driver should poll the page until at least one element has been found + or this timeout has expired. + + Increasing the implicit wait timeout should be used judiciously as it + will have an adverse effect on test run time, especially when used with + slower location strategies like XPath. + + + + + Specifies the amount of time the driver should wait when executing JavaScript asynchronously. + + A structure defining the amount of time to wait. + Setting this parameter to will allow the script to run indefinitely. + A self reference + + + + Specifies the amount of time the driver should wait for a page to load when setting the property. + + A structure defining the amount of time to wait. + Setting this parameter to will allow the page to load indefinitely. + A self reference + + + + Defines the interface through which the user can execute advanced touch screen interactions. + + + + + Initializes a new instance of the class. + + The for which the touch screen will be managed. + + + + Allows the execution of single tap on the screen, analogous to click using a Mouse. + + The object representing the location on the screen, + usually an . + + + + Allows the execution of the gesture 'down' on the screen. It is typically the first of a + sequence of touch gestures. + + The x coordinate relative to the view port. + The y coordinate relative to the view port. + + + + Allows the execution of the gesture 'up' on the screen. It is typically the last of a + sequence of touch gestures. + + The x coordinate relative to the view port. + The y coordinate relative to the view port. + + + + Allows the execution of the gesture 'move' on the screen. + + The x coordinate relative to the view port. + The y coordinate relative to the view port. + + + + Creates a scroll gesture that starts on a particular screen location. + + The object representing the location on the screen + where the scroll starts, usually an . + The x coordinate relative to the view port. + The y coordinate relative to the view port. + + + + Creates a scroll gesture for a particular x and y offset. + + The horizontal offset relative to the view port. + The vertical offset relative to the view port. + + + + Allows the execution of double tap on the screen, analogous to click using a Mouse. + + The object representing the location on the screen, + usually an . + + + + Allows the execution of a long press gesture on the screen. + + The object representing the location on the screen, + usually an . + + + + Creates a flick gesture for the current view. + + The horizontal speed in pixels per second. + The vertical speed in pixels per second. + + + + Creates a flick gesture for the current view starting at a specific location. + + The object representing the location on the screen + where the scroll starts, usually an . + The x offset relative to the viewport. + The y offset relative to the viewport. + The speed in pixels per second. + + + + Provides remote access to the API. + + + + + Initializes a new instance of the class. + + The driver instance. + + + + Gets the local storage for the site currently opened in the browser. + + + + + Gets the session storage for the site currently opened in the browser. + + + + + Defines the interface through which the user can manipulate the browser window. + + + + + Initializes a new instance of the class. + + Instance of the driver currently in use + + + + Maximizes the current window if it is not already maximized. + + + + + Gets or sets the position of the browser window relative to the upper-left corner of the screen. + + When setting this property, it should act as the JavaScript window.moveTo() method. + + + + Gets or sets the size of the outer browser window, including title bars and window borders. + + When setting this property, it should act as the JavaScript window.resizeTo() method. + + + + Handles reponses from the browser + + + + + Initializes a new instance of the class + + + + + Initializes a new instance of the class + + Session ID in use + + + + Returns a new from a JSON-encoded string. + + The JSON string to deserialize into a . + A object described by the JSON string. + + + + Returns this object as a JSON-encoded string. + + A JSON-encoded string representing this object. + + + + Returns the object as a string. + + A string with the Session ID, status value, and the value from JSON. + + + + Gets or sets the value from JSON. + + + + + Gets or sets the session ID. + + + + + Gets or sets the status value of the response. + + + + + Gets a value indicating whether this response is compliant with the WebDriver specification. + + + + + Provides a mechanism for maintaining a session for a test + + + + + Initializes a new instance of the class + + Key for the session in use + + + + Get the value of the key + + The key in use + + + + Get the hash code of the key + + The hash code of the key + + + + Compares two Sessions + + Session to compare + True if they are equal or False if they are not + + + + Gives properties to get a stack trace + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the given property values. + + A containing the names and values for the properties of this . + + + + Gets a string representation of the object. + + A string representation of the object. + + + + Gets or sets the value of the filename in the stack + + + + + Gets or sets the value of the Class name in the stack trace + + + + + Gets or sets the line number + + + + + Gets or sets the Method name in the stack trace + + + + + Holds the information about all commands specified by the JSON wire protocol. + This class cannot be inherited, as it is intended to be a singleton, and + allowing subclasses introduces the possibility of multiple instances. + + + + + Initializes a new instance of the class. + + + + + Initializes the dictionary of commands for the CommandInfoRepository + + + + + Gets the level of the W3C WebDriver specification that this repository supports. + + + + + Represents an error condition from a remote end using the W3C specification + dialect of the wire protocol. + + + + + Represents the element not selectable error. + + + + + Represents the element not visible error. + + + + + Represents the invalid argument error. + + + + + Represents the invalid element coordinates error. + + + + + Represents the invalid element state error. + + + + + Represents the invalid selector error. + + + + + Represents the invalid session ID error. + + + + + Represents the unhandled JavaScript error. + + + + + Represents the move target out of bounds error. + + + + + Represents the no such alert error. + + + + + Represents the no such element error. + + + + + Represents the no such alert frame. + + + + + Represents the no such alert window. + + + + + Represents the script timeout error. + + + + + Represents the session not created error. + + + + + Represents the stale element reference error. + + + + + Represents the timeout error. + + + + + Represents the unable to set cookie error. + + + + + Represents the unable to capture screen error. + + + + + Represents the unexpected alert open error. + + + + + Represents the unknown command error. + + + + + Represents an unknown error. + + + + + Represents the unknown method error. + + + + + Represents the unsupported operation error. + + + + + Converts a string error to a value. + + The error string to convert. + The converted value. + + + + Holds the information about all commands specified by the JSON wire protocol. + This class cannot be inherited, as it is intended to be a singleton, and + allowing subclasses introduces the possibility of multiple instances. + + + + + Initializes a new instance of the class. + + + + + Initializes the dictionary of commands for the CommandInfoRepository + + + + + Gets the level of the W3C WebDriver specification that this repository supports. + + + + + Provides a way to convert a Char array to JSON + + + + + Checks if the object can be converted + + Type of the object to see if can be converted + True if can be converted else false + + + + Writes the Object to JSON + + A JSON Writer object + Object to be converted + JSON Serializer object instance + + + + Method not implemented + + JSON Reader instance + Object type being read + Existing Value to be read + JSON Serializer instance + Object from JSON + + + + Converts the response to JSON + + + + + Checks if the object can be converted + + The object to be converted + True if it can be converted or false if can't be + + + + Process the reader to return an object from JSON + + A JSON reader + Type of the object + The existing value of the object + JSON Serializer + Object created from JSON + + + + Writes objects to JSON. Currently not implemented + + JSON Writer Object + Value to be written + JSON Serializer + + + + Provides a way to access Safari to run your tests by creating a SafariDriver instance + + + When the WebDriver object has been instantiated the browser will load. The test can then navigate to the URL under test and + start your test. + + + + [TestFixture] + public class Testing + { + private IWebDriver driver; + + [SetUp] + public void SetUp() + { + driver = new SafariDriver(); + } + + [Test] + public void TestGoogle() + { + driver.Navigate().GoToUrl("http://www.google.co.uk"); + /* + * Rest of the test + */ + } + + [TearDown] + public void TearDown() + { + driver.Quit(); + driver.Dispose(); + } + } + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class using the specified . + + The to use for this instance. + + + + Initializes a new instance of the class using the specified driver service. + + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified path + to the directory containing ChromeDriver.exe. + + The full path to the directory containing SafariDriver executable. + + + + Initializes a new instance of the class using the specified path + to the directory containing ChromeDriver.exe and options. + + The full path to the directory containing SafariDriver executable. + The to be used with the Safari driver. + + + + Initializes a new instance of the class using the specified path + to the directory containing ChromeDriver.exe, options, and command timeout. + + The full path to the directory containing SafariDriver executable. + The to be used with the Safari driver. + The maximum amount of time to wait for each command. + + + + Initializes a new instance of the class using the specified + and options. + + The to use. + The used to initialize the driver. + + + + Initializes a new instance of the class using the specified . + + The to use. + The to be used with the Safari driver. + The maximum amount of time to wait for each command. + + + + Gets or sets the responsible for detecting + sequences of keystrokes representing file paths and names. + + The Safari driver does not allow a file detector to be set, + as the server component of the Safari driver (the Safari extension) only + allows uploads from the local computer environment. Attempting to set + this property has no effect, but does not throw an exception. If you + are attempting to run the Safari driver remotely, use + in conjunction with a standalone WebDriver server. + + + + Exposes the service provided by the native SafariDriver executable. + + + + + Initializes a new instance of the class. + + The full path to the SafariDriver executable. + The file name of the SafariDriver executable. + The port on which the SafariDriver executable should listen. + + + + Creates a default instance of the SafariDriverService. + + A SafariDriverService that implements default settings. + + + + Creates a default instance of the SafariDriverService using a specified path to the ChromeDriver executable. + + The directory containing the ChromeDriver executable. + A ChromeDriverService using a random port. + + + + Creates a default instance of the SafariDriverService using a specified path to the ChromeDriver executable with the given name. + + The directory containing the ChromeDriver executable. + The name of the ChromeDriver executable file. + A ChromeDriverService using a random port. + + + + Gets a value indicating whether the service is responding to HTTP requests. + + + + + Class to manage options specific to + + + SafariOptions options = new SafariOptions(); + options.SkipExtensionInstallation = true; + + + + For use with SafariDriver: + + + + SafariDriver driver = new SafariDriver(options); + + + + For use with RemoteWebDriver: + + + + RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities()); + + + + + + Initializes a new instance of the class. + + + + + Provides a means to add additional capabilities not yet added as type safe options + for the Safari driver. + + The name of the capability to add. + The value of the capability to add. + + thrown when attempting to add a capability for which there is already a type safe option, or + when is or the empty string. + + Calling where + has already been added will overwrite the existing value with the new value in + + + + Returns ICapabilities for Safari with these options included as + capabilities. This copies the options. Further changes will not be + reflected in the returned capabilities. + + The ICapabilities for Safari with these options. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Specifies the state of the reader. + + + + + Initializes a new instance of the class with the specified . + + + + + Reads the next JSON token from the stream. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the state based on current token type. + + + + + Releases unmanaged and - optionally - managed resources + + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the to Closed. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the reader is closed. + + + true to close the underlying stream or when + the reader is closed; otherwise false. The default is true. + + + + + Gets or sets a value indicating whether multiple pieces of JSON content can + be read from a continuous stream without erroring. + + + true to support reading multiple pieces of JSON content; otherwise false. The default is false. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Get or set how time zones are handling when reading JSON. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Gets the type of the current JSON token. + + + + + Gets the text value of the current JSON token. + + + + + Gets The Common Language Runtime (CLR) type for the current JSON token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The reader. + + + + Initializes a new instance of the class. + + The stream. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The reader. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + + A . This method will return null at the end of an array. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Changes the to Closed. + + + + + Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Creates an instance of the JsonWriter class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the end of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes the end of the current Json object or array. + + + + + Writes the current token and its children. + + The to read the token from. + + + + Writes the current token. + + The to read the token from. + A flag indicating whether the current token's children should be written. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Sets the state of the JsonWriter, + + The JsonToken being written. + The value being written. + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the writer is closed. + + + true to close the underlying stream or when + the writer is closed; otherwise false. The default is true. + + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Gets the path of the writer. + + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling when writing JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written to JSON text. + + + + + Get or set how and values are formatting when writing JSON text. + + + + + Gets or sets the culture used when writing JSON. Defaults to . + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The writer. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a Json array. + + + + + Writes the beginning of a Json object. + + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Closes this stream and the underlying stream. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value that represents a BSON object id. + + The Object ID value to write. + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Represents a BSON Oid (object id). + + + + + Initializes a new instance of the class. + + The Oid value. + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets the of the JSON produced by the JsonConverter. + + The of the JSON produced by the JsonConverter. + + + + Gets a value indicating whether this can read JSON. + + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + Converts a binary value to and from a base 64 string value. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Create a custom object + + The object type to convert. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + The created object. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a F# discriminated union type to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an Entity Framework EntityKey to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an ExpandoObject to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + + + Initializes a new instance of the class. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets or sets a value indicating whether the written enum text should be camel case. + + + true if the written enum text will be camel case; otherwise, false. + + + + Gets or sets a value indicating whether integer values are allowed. + + + true if integers are allowed; otherwise, false. + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor. + + + + + Json.NET will use a non-public default constructor before falling back to a paramatized constructor. + + + + + Converts a to and from a string (e.g. "1.2.3.4"). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Specifies float format handling options when writing special floating point numbers, e.g. , + and with . + + + + + Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". + + + + + Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. + Note that this will produce non-valid JSON. + + + + + Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. + + + + + Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Floating point numbers are parsed to . + + + + + Floating point numbers are parsed to . + + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets the collection's items converter. + + The collection's items converter. + + + + Gets or sets a value that indicates whether to preserve object references. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Gets or sets a value that indicates whether to preserve collection's items references. + + + true to keep collection's items object references; otherwise, false. The default is false. + + + + + Gets or sets the reference loop handling used when serializing the collection's items. + + The reference loop handling. + + + + Gets or sets the type name handling used when serializing the collection's items. + + The type name handling. + + + + Instructs the how to serialize the collection. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + The exception thrown when an error occurs during Json serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Specifies how dates are formatted when writing JSON text. + + + + + Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". + + + + + Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". + + + + + Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. + + + + + Date formatted strings are not parsed to a date type and are read as strings. + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Specifies how to treat the time value when converting between string and . + + + + + Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. + + + + + Treat as a UTC. If the object represents a local time, it is converted to a UTC. + + + + + Treat as a local time if a is being converted to a string. + If a string is being converted to , convert to a local time if a time zone is specified. + + + + + Time zone information should be preserved when converting. + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + Instructs the to use the specified constructor when deserializing that object. + + + + + Instructs the to deserialize properties with no matching class member into the specified collection + and write values during serialization. + + + + + Initializes a new instance of the class. + + + + + Gets or sets a value that indicates whether to write extension data when serializing the object. + + + true to write extension data when serializing the object; otherwise, false. The default is true. + + + + + Gets or sets a value that indicates whether to read extension data when deserializing the object. + + + true to read extension data when deserializing the object; otherwise, false. The default is true. + + + + + Represents a trace writer. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + The that will be used to filter the trace messages passed to the writer. + + + + Represents a trace writer that writes to the application's instances. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Get and set values for a using dynamic methods. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets all methods called immediately after deserialization of the object. + + The methods called immediately after deserialization of the object. + + + + Gets or sets all methods called during deserialization of the object. + + The methods called during deserialization of the object. + + + + Gets or sets all methods called after serialization of the object graph. + + The methods called after serialization of the object graph. + + + + Gets or sets all methods called before serialization of the object. + + The methods called before serialization of the object. + + + + Gets or sets all method called when an error is thrown during the serialization of the object. + + The methods called when an error is thrown during the serialization of the object. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether the default creator is non public. + + + true if the default object creator is non-public; otherwise, false. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the default collection items . + + The converter. + + + + Gets or sets a value indicating whether the collection items preserve object references. + + + true if collection items preserve object references; otherwise, false. + + + + Gets or sets the collection item reference loop handling. + + The reference loop handling. + + + + Gets or sets the collection item type name handling. + + The type name handling. + + + + Represents a trace writer that writes to memory. When the trace message limit is + reached then old trace messages will be removed as new messages are added. + + + + + Initializes a new instance of the class. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Returns an enumeration of the most recent trace messages. + + An enumeration of the most recent trace messages. + + + + Returns a of the most recent trace messages. + + + A of the most recent trace messages. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Specifies how strings are escaped when writing JSON text. + + + + + Only control characters (e.g. newline) are escaped. + + + + + All non-ASCII and control characters (e.g. newline) are escaped. + + + + + HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. + + + + + Represents a collection of objects. + + The type of token + + + + Gets the with the specified key. + + + + + + + Represents an abstract JSON token. + + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output is formatted. + A collection of which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Creates an for this token. + + An that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object + + + + Creates the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects a using a JPath expression. Selects the token that matches the object path. + + + A that contains a JPath expression. + + A , or null. + + + + Selects a using a JPath expression. Selects the token that matches the object path. + + + A that contains a JPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + A . + + + + Selects a collection of elements using a JPath expression. + + + A that contains a JPath expression. + + An that contains the selected elements. + + + + Selects a collection of elements using a JPath expression. + + + A that contains a JPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + An that contains the selected elements. + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the path of the JSON token. + + + + + Gets the with the specified key. + + The with the specified key. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not the same type as this instance. + + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Represents a raw JSON string. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets the object's properties. + + The object's properties. + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the ISerializable object constructor. + + The ISerializable object constructor. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Get and set values for a using dynamic methods. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Provides data for the Error event. + + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Represents a view of a . + + + + + Initializes a new instance of the class. + + The name. + + + + When overridden in a derived class, returns whether resetting an object changes its value. + + + true if resetting the component changes its value; otherwise, false. + + The component to test for reset capability. + + + + + When overridden in a derived class, gets the current value of the property on a component. + + + The value of a property for a given component. + + The component with the property for which to retrieve the value. + + + + + When overridden in a derived class, resets the value for this property of the component to the default value. + + The component with the property value that is to be reset to the default value. + + + + + When overridden in a derived class, sets the value of the component to a different value. + + The component with the property value that is to be set. + + The new value. + + + + + When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted. + + + true if the property should be persisted; otherwise, false. + + The component with the property to be examined for persistence. + + + + + When overridden in a derived class, gets the type of the component this property is bound to. + + + A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type. + + + + + When overridden in a derived class, gets a value indicating whether this property is read-only. + + + true if the property is read-only; otherwise, false. + + + + + When overridden in a derived class, gets the type of the property. + + + A that represents the type of the property. + + + + + Gets the hash code for the name of the member. + + + + + The hash code for the name of the member. + + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The serialization context. + The reference to resolve. + The object that + + + + Gets the reference for the sepecified object. + + The serialization context. + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The serialization context. + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The serialization context. + The reference. + The object to reference. + + + + Specifies reference handling options for the . + Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. + + + + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Instructs the how to serialize the collection. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + + true if null items are allowed in the collection; otherwise, false. + + + + Specifies default value handling options for the . + + + + + + + + + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + so that is is not written to JSON. + This option will ignore all default values (e.g. null for objects and nullable typesl; 0 for integers, + decimals and floating point numbers; and false for booleans). The default value ignored can be changed by + placing the on the property. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and sets members to their default value when deserializing. + + + + + Instructs the to use the specified when serializing the member or class. + + + + + Initializes a new instance of the class. + + Type of the converter. + + + + Gets the type of the converter. + + The type of the converter. + + + + Instructs the how to serialize the object. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Gets or sets the member serialization. + + The member serialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Specifies the settings on a object. + + + + + Initializes a new instance of the class. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + + Null value handling. + + + + Gets or sets how null default are handled during serialization and deserialization. + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + The type name handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Get or set how and values are formatting when writing JSON text. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling during serialization and deserialization. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written as JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets a value indicating whether there will be a check for additional content after deserializing an object. + + + true if there will be a check for additional content after deserializing an object; otherwise, false. + + + + + Represents a reader that provides validation. + + + + + Initializes a new instance of the class that + validates the content returned from the given . + + The to read from while validating. + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Gets the text value of the current JSON token. + + + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + + + Gets the type of the current JSON token. + + + + + + + Gets the Common Language Runtime (CLR) type for the current JSON token. + + + + + + + Gets or sets the schema. + + The schema. + + + + Gets the used to construct this . + + The specified in the constructor. + + + + Sets an event handler for receiving schema validation errors. + + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Specifies the member serialization options for the . + + + + + All public members are serialized by default. Members can be excluded using or . + This is the default member serialization mode. + + + + + Only members must be marked with or are serialized. + This member serialization mode can also be set by marking the class with . + + + + + All public and private fields are serialized. Members can be excluded using or . + This member serialization mode can also be set by marking the class with + and setting IgnoreSerializableAttribute on to false. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Converts XML to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The calling serializer. + The value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Checks if the attributeName is a namespace attribute. + + Attribute name to test. + The attribute name prefix if it has one, otherwise an empty string. + True if attribute name is for a namespace attribute, otherwise false. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. + + The name of the deserialize root element. + + + + Gets or sets a flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + + true if the array attibute is written to the XML; otherwise, false. + + + + Gets or sets a value indicating whether to write the root JSON object. + + + true if the JSON root object is omitted; otherwise, false. + + + + Represents a reader that provides fast, non-cached, forward-only access to JSON text data. + + + + + Initializes a new instance of the class with the specified . + + The TextReader containing the XML data to read. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Changes the state to closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Instructs the to always serialize the member with the specified name. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Gets or sets the converter used when serializing the property's collection items. + + The collection's items converter. + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the order of serialization and deserialization of a member. + + The numeric order of serialization or deserialization. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + Gets or sets the the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Creates an instance of the JsonWriter class using the specified . + + The TextWriter to write to. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to Formatting.Indented. + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + The exception thrown when an error occurs while reading Json text. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + The exception thrown when an error occurs while reading Json text. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Represents a collection of . + + + + + Provides methods for converting between common language runtime types and JSON types. + + + + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + The time zone handling when the date is converted to a string. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting. + + The object to serialize. + Indicates how the output is formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting and a collection of . + + The object to serialize. + Indicates how the output is formatted. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be is used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be is used. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using formatting and . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be is used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be is used. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + A JSON string representation of the object. + + + + + Asynchronously serializes the specified object to a JSON string. + Serialization will happen on a new thread. + + The object to serialize. + + A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. + + + + + Asynchronously serializes the specified object to a JSON string using formatting. + Serialization will happen on a new thread. + + The object to serialize. + Indicates how the output is formatted. + + A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. + + + + + Asynchronously serializes the specified object to a JSON string using formatting and a collection of . + Serialization will happen on a new thread. + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be is used. + + A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. + + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + The deserialized object from the Json string. + + + + Deserializes the JSON to a .NET object using . + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The of object being deserialized. + The deserialized object from the Json string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + The deserialized object from the Json string. + + + + Deserializes the JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the given anonymous type using . + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The type of the object to deserialize to. + The JSON to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The type of the object to deserialize to. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The JSON to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + The deserialized object from the JSON string. + + + + Asynchronously deserializes the JSON to the specified .NET type. + Deserialization will happen on a new thread. + + The type of the object to deserialize to. + The JSON to deserialize. + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Asynchronously deserializes the JSON to the specified .NET type using . + Deserialization will happen on a new thread. + + The type of the object to deserialize to. + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Asynchronously deserializes the JSON to the specified .NET type. + Deserialization will happen on a new thread. + + The JSON to deserialize. + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Asynchronously deserializes the JSON to the specified .NET type using . + Deserialization will happen on a new thread. + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string using . + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + + + + Asynchronously populates the object with values from the JSON string using . + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be is used. + + + A task that represents the asynchronous populate operation. + + + + + Serializes the XML node to a JSON string. + + The node to serialize. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string using formatting. + + The node to serialize. + Indicates how the output is formatted. + A JSON string of the XmlNode. + + + + Serializes the XML node to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XmlNode. + + + + Deserializes the XmlNode from a JSON string. + + The JSON string. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XmlNode + + + + Deserializes the XmlNode from a JSON string nested in a root elment specified by + and writes a .NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XmlNode + + + + Serializes the to a JSON string. + + The node to convert to JSON. + A JSON string of the XNode. + + + + Serializes the to a JSON string using formatting. + + The node to convert to JSON. + Indicates how the output is formatted. + A JSON string of the XNode. + + + + Serializes the to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XNode. + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment specified by + and writes a .NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XNode + + + + Gets or sets a function that creates default . + Default settings are automatically used by serialization methods on , + and and on . + To serialize without using any default settings create a with + . + + + + + The exception thrown when an error occurs during Json serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance. + The will not use default settings. + + + A new instance. + The will not use default settings. + + + + + Creates a new instance using the specified . + The will not use default settings. + + The settings to be applied to the . + + A new instance using the specified . + The will not use default settings. + + + + + Creates a new instance. + The will use default settings. + + + A new instance. + The will use default settings. + + + + + Creates a new instance using the specified . + The will use default settings. + + The settings to be applied to the . + + A new instance using the specified . + The will use default settings. + + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Deserializes the Json structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the Json structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + + + Serializes the specified and writes the Json structure + to a Stream using the specified . + + The used to write the Json structure. + The to serialize. + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + + + + + Get or set how reference loops (e.g. a class referencing itself) is handled. + + + + + Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + + + + Get or set how null values are handled during serialization and deserialization. + + + + + Get or set how null default are handled during serialization and deserialization. + + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling during serialization and deserialization. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written as JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Get or set how and values are formatting when writing JSON text. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. + + + true if there will be a check for additional JSON content after deserializing an object; otherwise, false. + + + + + Occurs when the errors during serialization and deserialization. + + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every node in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every node in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every node in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every node in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every node in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every node in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every node in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every node in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a token that can contain other tokens. + + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Raises the event. + + The instance containing the event data. + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An containing the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates an that can be used to add tokens to the . + + An that is ready to have content written to it. + + + + Replaces the children nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Gets the count of child JSON tokens. + + The count of child JSON tokens + + + + Occurs when the list changes or an item in the list changes. + + + + + Occurs before an item is added to the collection. + + + + + Occurs when the items list of the collection has changed, or the collection is reset. + + + + + Represents a JSON constructor. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Represents a collection of objects. + + The type of token + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Gets the with the specified key. + + + + + + + Represents a JSON object. + + + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets an of this object's properties. + + An of this object's properties. + + + + Gets a the specified name. + + The property name. + A with the specified name or null. + + + + Gets an of this object's property values. + + An of this object's property values. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified property name. + + Name of the property. + The with the specified property name. + + + + Gets the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + One of the enumeration values that specifies how the strings will be compared. + The with the specified property name. + + + + Tries to get the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + The value. + One of the enumeration values that specifies how the strings will be compared. + true if a value was successfully retrieved; otherwise, false. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries the get value. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + + Occurs when a property value changes. + + + + + Occurs when a property value is changing. + + + + + Represents a JSON array. + + + + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Adds an item to the . + + The object to add to the . + The is read-only. + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies to. + + The array. + Index of the array. + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the node type for this . + + The type. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + + Gets a value indicating whether the is read-only. + + true if the is read-only; otherwise, false. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized Json data. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Reads the next JSON token from the stream as a . + + + A or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating Json data. + + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a Json object. + + + + + Writes the beginning of a Json array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a Json object. + + The name of the property. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Gets the token being writen. + + The token being writen. + + + + Represents a JSON property. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Gets the node type for this . + + The type. + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + + + + Contains the JSON schema extension methods. + + + + + Determines whether the is valid. + + The source to test. + The schema to test with. + + true if the specified is valid; otherwise, false. + + + + + Determines whether the is valid. + + The source to test. + The schema to test with. + When this method returns, contains any error messages generated while validating. + + true if the specified is valid; otherwise, false. + + + + + Validates the specified . + + The source to test. + The schema to test with. + + + + Validates the specified . + + The source to test. + The schema to test with. + The validation event handler. + + + + Returns detailed information about the schema exception. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Initializes a new instance of the class. + + The that holds the serialized object data about the exception being thrown. + The that contains contextual information about the source or destination. + The parameter is null. + The class name is null or is zero (0). + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Resolves from an id. + + + + + Initializes a new instance of the class. + + + + + Gets a for the specified reference. + + The id. + A for the specified reference. + + + + Gets or sets the loaded schemas. + + The loaded schemas. + + + + Specifies undefined schema Id handling options for the . + + + + + Do not infer a schema Id. + + + + + Use the .NET type name as the schema Id. + + + + + Use the assembly qualified .NET type name as the schema Id. + + + + + Returns detailed information related to the . + + + + + Gets the associated with the validation error. + + The JsonSchemaException associated with the validation error. + + + + Gets the path of the JSON location where the validation error occurred. + + The path of the JSON location where the validation error occurred. + + + + Gets the text description corresponding to the validation error. + + The text description. + + + + Represents the callback method that will handle JSON schema validation events and the . + + + + + Used by to resolves a for a given . + + + + + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Used by to resolves a for a given . + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + If set to true the will use a cached shared with other resolvers of the same type. + Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected + behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly + recommended to reuse instances with the . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + + + + Resolves the default for the contract. + + Type of the object. + The contract's default . + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The type to create properties for. + /// The member serialization mode for the type.Properties for the given . + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's parent . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Name of the property. + + + + Gets the resolved name of the property. + + Name of the property. + Name of the property. + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets the default members search flags. + + The default members search flags. + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types. + + + true if the interface will be ignored when serializing and deserializing types; otherwise, false. + + + + + Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types. + + + true if the attribute will be ignored when serializing and deserializing types; otherwise, false. + + + + + Resolves member mappings for a type, camel casing property names. + + + + + Initializes a new instance of the class. + + + + + Resolves the name of the property. + + Name of the property. + The property name camel cased. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + + + Provides information surrounding an error. + + + + + Gets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets the path of the JSON location where the error occurred. + + The path of the JSON location where the error occurred. + + + + Gets or sets a value indicating whether this is handled. + + + true if handled; otherwise, false. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets the of the collection items. + + The of the collection items. + + + + Gets a value indicating whether the collection type is a multidimensional array. + + + true if the collection type is a multidimensional array; otherwise, false. + + + + Handles serialization callback events. + + The object that raised the callback event. + The streaming context. + + + + Handles serialization error callback events. + + The object that raised the callback event. + The streaming context. + The error context. + + + + Sets extension data for an object during deserialization. + + The object to set extension data on. + The extension data key. + The extension data value. + + + + Gets extension data for an object during serialization. + + The object to set extension data on. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Gets the of the dictionary keys. + + The of the dictionary keys. + + + + Gets the of the dictionary values. + + The of the dictionary values. + + + + Maps a JSON property to a .NET member or constructor parameter. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the type that declared this property. + + The type that declared this property. + + + + Gets or sets the order of serialization and deserialization of a member. + + The numeric order of serialization or deserialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes presidence over the contract converter for the property type. + + The converter. + + + + Gets or sets the member converter. + + The member converter. + + + + Gets or sets a value indicating whether this is ignored. + + + true if ignored; otherwise, false. + + + + Gets or sets a value indicating whether this is readable. + + + true if readable; otherwise, false. + + + + Gets or sets a value indicating whether this is writable. + + + true if writable; otherwise, false. + + + + Gets or sets a value indicating whether this has a member attribute. + + + true if has a member attribute; otherwise, false. + + + + Gets the default value. + + The default value. + + + + Gets or sets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets or sets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets or sets the property null value handling. + + The null value handling. + + + + Gets or sets the property default value handling. + + The default value handling. + + + + Gets or sets the property reference loop handling. + + The reference loop handling. + + + + Gets or sets the property object creation handling. + + The object creation handling. + + + + Gets or sets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialize. + + A predicate used to determine whether the property should be serialize. + + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + + + + Gets or sets the converter used when serializing the property's collection items. + + The collection's items converter. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Gets or sets the the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets the the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The type. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of propertyName and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + An in-memory representation of a JSON Schema. + + + + + Initializes a new instance of the class. + + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The object representing the JSON Schema. + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The to use when resolving schema references. + The object representing the JSON Schema. + + + + Load a from a string that contains schema JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Parses the specified json. + + The json. + The resolver. + A populated from the string that contains JSON. + + + + Writes this schema to a . + + A into which this method will write. + + + + Writes this schema to a using the specified . + + A into which this method will write. + The resolver used. + + + + Returns a that represents the current . + + + A that represents the current . + + + + + Gets or sets the id. + + + + + Gets or sets the title. + + + + + Gets or sets whether the object is required. + + + + + Gets or sets whether the object is read only. + + + + + Gets or sets whether the object is visible to users. + + + + + Gets or sets whether the object is transient. + + + + + Gets or sets the description of the object. + + + + + Gets or sets the types of values allowed by the object. + + The type. + + + + Gets or sets the pattern. + + The pattern. + + + + Gets or sets the minimum length. + + The minimum length. + + + + Gets or sets the maximum length. + + The maximum length. + + + + Gets or sets a number that the value should be divisble by. + + A number that the value should be divisble by. + + + + Gets or sets the minimum. + + The minimum. + + + + Gets or sets the maximum. + + The maximum. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + A flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + A flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + + + Gets or sets the minimum number of items. + + The minimum number of items. + + + + Gets or sets the maximum number of items. + + The maximum number of items. + + + + Gets or sets the of items. + + The of items. + + + + Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . + + + true if items are validated using their array position; otherwise, false. + + + + + Gets or sets the of additional items. + + The of additional items. + + + + Gets or sets a value indicating whether additional items are allowed. + + + true if additional items are allowed; otherwise, false. + + + + + Gets or sets whether the array items must be unique. + + + + + Gets or sets the of properties. + + The of properties. + + + + Gets or sets the of additional properties. + + The of additional properties. + + + + Gets or sets the pattern properties. + + The pattern properties. + + + + Gets or sets a value indicating whether additional properties are allowed. + + + true if additional properties are allowed; otherwise, false. + + + + + Gets or sets the required property if this property is present. + + The required property if this property is present. + + + + Gets or sets the a collection of valid enum values allowed. + + A collection of valid enum values allowed. + + + + Gets or sets disallowed types. + + The disallow types. + + + + Gets or sets the default value. + + The default value. + + + + Gets or sets the collection of that this schema extends. + + The collection of that this schema extends. + + + + Gets or sets the format. + + The format. + + + + Generates a from a specified . + + + + + Generate a from the specified type. + + The type to generate a from. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Gets or sets how undefined schemas are handled by the serializer. + + + + + Gets or sets the contract resolver. + + The contract resolver. + + + + The value types allowed by the . + + + + + No type specified. + + + + + String type. + + + + + Float type. + + + + + Integer type. + + + + + Boolean type. + + + + + Object type. + + + + + Array type. + + + + + Null type. + + + + + Any type. + + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Gets the object's properties. + + The object's properties. + + + + Gets the constructor parameters required for any non-default constructor + + + + + Gets or sets the override constructor used to create the object. + This is set when a constructor is marked up using the + JsonConstructor attribute. + + The override constructor. + + + + Gets or sets the parametrized constructor used to create the object. + + The parametrized constructor. + + + + Gets or sets the extension data setter. + + + + + Gets or sets the extension data getter. + + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic that returns a result + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Returns a Restrictions object which includes our current restrictions merged + with a restriction limiting our type + + + + + Represents a method that constructs an object. + + The object type to create. + + + + Specifies type name handling options for the . + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Always include the .NET type name when serializing. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + + + + + Converts the value to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted type. + + + + Converts the value to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert the value to. + The converted value if the conversion was successful or the default value of T if it failed. + + true if initialValue was converted successfully; otherwise, false. + + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + + Gets a dictionary of the names and values of an Enum type. + + The enum type to get names and values for. + + + + + + Specifies the type of Json token. + + + + + This is returned by the if a method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An integer. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Adds the elements of the specified collection to the specified generic IList. + + The list to add to. + The collection of elements to add. + + + + Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer. + + The type of the elements of source. + A sequence in which to locate a value. + The object to locate in the sequence + An equality comparer to compare values. + The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1. + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the member is an indexed property. + + The member. + + true if the member is an indexed property; otherwise, false. + + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly.true if the specified MemberInfo can be read; otherwise, false. + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Nulls an empty string. + + The string. + Null if the string was null, otherwise the string unchanged. + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls results in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + A array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + \ No newline at end of file diff --git a/BankingBot/obj/Debug/BankingBot.csproj.FileListAbsolute.txt b/BankingBot/obj/Debug/BankingBot.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..fe16571 --- /dev/null +++ b/BankingBot/obj/Debug/BankingBot.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +C:\src\aaron\BankingBot\BankingBot\bin\Debug\BankingBot.dll +C:\src\aaron\BankingBot\BankingBot\bin\Debug\BankingBot.pdb +C:\src\aaron\BankingBot\BankingBot\bin\Debug\Ninject.dll +C:\src\aaron\BankingBot\BankingBot\bin\Debug\Ninject.xml +C:\src\aaron\BankingBot\BankingBot\obj\Debug\BankingBot.dll +C:\src\aaron\BankingBot\BankingBot\obj\Debug\BankingBot.pdb +C:\src\aaron\BankingBot\BankingBot\obj\Debug\BankingBot.csprojResolveAssemblyReference.cache +C:\src\aaron\BankingBot\BankingBot\bin\Debug\WebDriver.dll +C:\src\aaron\BankingBot\BankingBot\bin\Debug\WebDriver.xml diff --git a/BankingBot/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/BankingBot/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/BankingBot/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/BankingBot/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/BankingBot/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/BankingBot/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/BankingBot/packages.config b/BankingBot/packages.config new file mode 100644 index 0000000..00eb9c8 --- /dev/null +++ b/BankingBot/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/packages/Ninject.3.2.2.0/Ninject.3.2.2.0.nupkg b/packages/Ninject.3.2.2.0/Ninject.3.2.2.0.nupkg new file mode 100644 index 0000000000000000000000000000000000000000..aa36e9492db25058ae7b4a196d0b1af6beade2a0 GIT binary patch literal 725376 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

f>UCrjgX) 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 z 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�zWS@khQQSIQ z$B0eq1h2KFLR+^hm+l0=dZ+fZnw?G3Pf_CDV?I1pqxy>UiD40UOu7S+8L{>3SZEC} zjwaRlA6GYOiR4APsYjTkk&==Tk;%5YPvt2JA&tP|lO;mgx?mEEKVF=Io*EH>NG<6`0{)pwWPTr0T8+(86D@#5mLVw4EyPVhgp z%I%&ow#RaC6Xn@pszbAm`FOD3H;I)rb?O3_PHbW7ADK)1YxNR;@(e;9$te0Jo$0ddbw?kEu^5H~YxMSmNHi54^A4KWKSvaJ7wTj~{byy_6ZrbW0 zCriry6~VR(1;^+VwM07Q!#mFtv~0{G_9-V2J5?y3OX3EzzC3>Z)s+i<-q;h6At#0D znl-&!%D2rLfVPy?k#(6#zZ^ovPLy&J(G`IFYn_h z@()&E+*4GFu4+{(C4?agdBnA~m8cjM9@zn(K3X~d>{?x6n$Vw?5{uC+)J0oa;bV-7 z$7G)NYvG}h*jy)mjSZsdv4(q}pr=J+1lvWt^l3_5qtR{Be?8{V!CH8;hT8%0n{`ON zKc4w;ma@+YB%W3O4dkLqrRnw&DDVlr8`%N+lKu3|b7sGqsx!`)6JXJVMG-6H60^E+(np zL_BJamoPb^Kn-{y(%t&#tai!^sYO!jd#qLbGg*aIq`@_k@@u`)56Yh8)Rxz&uX=ra z@tYdK^E4DDar-(jpF*wr$^r5>9{=U7yHGGt8f@5Gqh3Z;PxM5fe2yl0OYIV|9DjxT zoqxdtyOjDee7#0vqKfDiPf06Lo4gy-h!FS%Z6fUe>feuUZ&i#9GhxruWt8Uiq6M1R z40ZEt=)rfR&;IDj;a(%dp&mcJ7mDU7>gC_H?$&m0KS7?ct!PcZSQ5e<53sa7(}`PZ z8lOrz{5HXE-EfjDX;pbyFNj*V3RfaQb%5VQA^L3c_ z)aw#sHTqeMV=~6lym6_Nz@`4W`Ii4^TGB<9sSX+&0ymXiRDm<3ZVxCavk#ag{$(1!DN`_eI&%n*(b>c(!NJ9d?1w%bQ>Ny;& z7-3p4#|WQ<4l|2{aMvwI)Qu)2-fX_2yAG=g02aP3($Nr2>Xza*V};-PK18BKvV>0{d+4Mj{Z%*FvJXrJO*64sxHB^U+JG}${S zuo}9Tae`{f#fjr+kPA^|M(~B|)Sz%DC$!1AvDJKn-uTh`hwKoLjG76nBhZnsPa6xE zNf6dd>pJ5OVM}NG>`%GHcFWETL$)3f=v6M zF1dPjsy09u)Ymp+{HbtlyGz!ih^Seq<-Vb}J$`Dyt!Vmt4^?a>fRii_s)#><9@F=s zRARHMNFf`WPfZdgKya)tETA?`(56qfYbP~jn@2v#y)n%PoVx_l`>klZz~zo_vst<` zV3KP5lh)5MOm3u$hNM|V>-$V~e=URvhzN($$&*NB58tyhNUib$8$Y9ww z1HfNFFq;ESY&hp*=7$VHOh%d##M!(oBfr?mnPx>$~f-b6n+VrR}3ynQT z3bZ1jdEGA>j#!7cNQGNg&=+2UHm_(3)3`D@tg7giVAXEjRvp;i!FJTN8#tiXYeJ4- zx)WdxF{h3}b3xavV(GW{SBoD%e00qFJ&a_<{IVBY-Cz4gNxk(E7)@i`lsUqXo8bqk zgQ4!>%CZyg`09QzV(kO#F|I|Ry`JzutLBsIDJ6(}g#aI@-ReR|n*Z@^lWDGj0{g8Z z@KVCoXqam`wE^R-*J@1*3$%(L40Ad5*FN4XtUWw@`UH-E^l`jMyT}(-Hh82$JPsqUzsnk3x;3)SW=e!xU<3eW~qRhB>1= zvJ}S<&vORg4pK-}(`%lfA+?k;d{f{e>&@9%KK@~s^JaowR2t`bUgdoCq1=3HTZnYS za^+xHLB*xe$$&8SId@+n*o4BB%BaN^t%c$uDyX0+Ohn8|?J#+k`qU~!{aMsyE0#c zBP-uqv5q2S4N_lC1Z8cc4H}1m=EDdN%_X1YiEVlw-opQo3$E_qWLf0 z{UQ47QLXGRywk+5mVqap&I1}AJ!RsZxSWh4F`$SR=BpO=8-fi*50(GTekQ-bWwbKw zitj~rhPY6nP~G2JT%8YtGB?W!VxV}&`p008v|Zx)PI&ZgyG)X(gi`*Zc_ORQ}F_BzvQlqG3f+xt?M&+AilX|~12J*ykrm3x%U&FLh0 z^Ku*7pLNZrYZJs@)_Qpy=hADUc>=ZNsTbAI@{89dgjHuaKAx{y;Q_wcvNCSAZU%0a zQM7$JUH2QoGa|e3jVG+!+4DzMGx^yM-s=|K7nAciLo58Ls51@Xe-gep(0Adhuo5ad zW12rM!JtKBnzZS=p0}zjC9_ueaf{o8y+(b~E<}*)cz{Z_U52_Gzs3SAq*3dZ@Hd+VkJ!(IpdQm12+S1FRG zg@@2ud4{;Hx3P@0w<@x31tdifiTq8)8{C1dV&b;T^iTTr>Aag0?oi{_SXTIo+qbpm z3a&|R{gs^smVNr|3LqP(4Hwk##5&`?lj?xU?uarYHWq}|6>dbS;!wBpO3=ZkRe<{O z#0^#0`uJc)&X#R||7(3)47+OZb=5eXyA#&6T7SITlVjj8iFge{JMs8o?8dkB$#%%E zsen3u=L7-KF?wO#S|7vWicZ5-Iuzr&#j9F3_x8Xgcr+bom%!m#^@sEoj)clsY0!0# z%R58_r1_?52Ymm+8$=qcaAd>{ENY}3CMj|?&u;cJrf#qfe4MP?%cl0K8=3}QBQa57 zw{8mCEsYI$1o8+w&EF$2_LNm6xA4kHGsLER-UB?YS9rsld-ftkU=c`&m~(C44p5)8dCq3y`q&cS`lH z+Flu`vI3(Z&4jP4&8kHu`6@qD!;ARmHV(0+YB%X;>OpzrLaks~PfdS0Yxu7D22Z5Z z3C4b?ckN&>$%a1TngBDtFCjpqdsAJFtZwFc6-!*l0j2G6<=CD1`-%)nK@G|H9X#6H zMl1$&)W1@m3f`3q27C%uy`Ap5T%VVy{t76x9lMSxEf&3zF;nV4q~ZIB*eV*E>r=K= zg6|ki>X)(`!%t|Bll2pII84b4v0-94gL8ipx>>}}y$pXk#gh}=9Kke3^7U8GH_SLC z9DmGt_-y6trJY?pe&_f4&f*JznjK2qymH-gaVSwuZgMCgw8<$!_7KjGx%-3qxbcRC_%Xx<9|PW@$s3_fwFJsxV0GB0uFC2X{ZA1_hMJ^Fl! z1{j029*+Td&vAOE3y_ye!2;tcM8Rq-4VwjhdJqCYUVU#+^%4-0NkmPuXVhy0C>>Nd z#h~hlLUvTL?kXX5nvpt9nR(94_oO?Z9!en%I7H03&0|mrg{yr^&*?6?tA~_h<=k@s z`YLYCG=9v}R!!6AJk*?^iBEJy2X;FT!|?&w26l1gMx17D#QSk(+OZ+`eNb=}3S@dF zm8&prBMz&8j-%L-0Dqp)e20c2lsBh%DO25PI%_~3U%dnBKn}Cz&asTh& zDv%PIQ}L(_)ER|g07=uh-P4_85#@Bj$B60~i{NbaMr1@eQ6%gXks;t`Gd?N_TJ*7m z5C@zrO4i?x(9&^i?DeHP=J;8*IQy_KXlQD9vM-w0P zmP`uxI3m&h?dra&sB~yknW^?U!{%4GDOa??x=2$DIVX6#t{;1L#xLG zukgn>b<&9@0Y%BqF$cKQh(bh0y5R$796{1gxvSlpBdy}8L1wTj$q!=kSRb(zI{B-3 z^xz1+NLZU;dWK>0x2%&P4Zet4mcS1ojj@kO1VXg*xp~qfKbtIEX7zwLkfG#ZN zT>Vb+5Iy%`_76L8w;6{)A}~??Bb2Cr#2w&S_Glz0nFK=VQHZdQLMk4IN#Fp!(komG zpsByog=IK{<6eaIs*d3lCLCPD1Mm-upwA~v>Qk5+=#TKmk0_zHL;Vp`fS;XU@d6)l zXFHX0XJb$ceecF`n)+RYs>5Bx)FK>DgkUj2Gh>|tU_#|0LNM#j4(!HN2Q+{Rh7MD% z>WCl6S7joB#>&#=>kNhlK7cSb_?kNN7S?j98pD3 z=+;r<#iLT#J*rz0<9LzSz>7&H11+OTcwquMGA}{CO9>I;009YTVA%Ks3UheG`tJ-9 zEMM>m{cb4(_(r{Nu~ z7|XoOdpnj45uDppyxj&4}uS6HDsOh#H9`$2t`0 zL6{kF`o}sIDM_3i>FB|2fo`c`Jk7$gExx>``Rblw=zB@R{I@!o0j3Tyd6;|@WKS~X z^x;F}9T*ekyjBkLnoGzcywc>TZ|H8)e2C4$(vyH?#~ZVsGhXWfM9->S;*tRNO{=${ zv8Ndp@`F2c_JL=H)vh8bvYc=H7(NFYKf@h{hn5qdoEbJwX=Q}DrCYd5ru|;ZYrh8= z6k@G^hw?~vOQP4njH5WCmM}Q{s5iVRhEYcSqmWJp3wV)*?Tbi8FD4Kpps_Wd*Cg{@ zA{hjRlJ2UN8Bv2?M&=n&{dU<3d?uLUpdfO@uB-pCNVbejzcAk=>Vtor+K zn4Lj5=5XRWh(SO{6e}7sR{Tf!tdknvBdtJ(TQv)Sj4Af?I9ll*u9Ok*<9?xPgCWGo zk2|A)UCkjt$&MP_CZoRA12o6$W)5h}0K9JCdY$0vHEB3h36n|M1JJ?W<8`4q!FAvB z7LekOXksLLkSaL|ByG~V<$ZRMN9wYVSPnaE+PJH!K`WyNd6Tcq8pVJChqa$F-{uuG z5Nw{qlmNllO}@ihaoE@DJ4{7FiAmfbl6!YFR?zlIMxoD$O2)@f`ACkiwE3WuOm(8c z*crhO2R}OSqm#8@k{ZD9qo|`ckHtu*Y#sxSiVxDctleE@mVFgMod>X$NG>D%y9$$U7aB>AlRYQlyKD zLaFMWbr)!PiwuN=EMzmVrv=urkLT z`k{@^Q>Qms1$IYJ?o#eyca>&Qos{NTB;%V!b?_EThkn&*@;r-GV0TOacn(7b%K}t0 zP%fwKmPb_7v3na|LJA!&Ekm2iVf1{ot8`#WqwC(+f;?%3ic`{k2g`*Y4b=ZCK~4oE zgNkepD8gwm*&x?Tg%#?49M#!og@tnc4L&VzXmjqkF}9A2v2~md+Z)=lQCW z!y{fRS$`!?x*cLr$PSeOKL%cx>7Fzn~WmYg#44sv*QZ*CYW{VFMoFYq3`~;|N1Zf`!`cB{_EA;uYI!q`!~yr z?|HkkzWn&7-u~zJ{q{?-+0l1ik8an$KJs7Q@uR!{?y0Xo@;|=&KWoR=@BhwU&;QBC z1_wU%pMUbDv6W}e-L3ro!y6svKK$jsnNNS~GjI9myC?qbBlG|3n;+eN_7QW zS4$s%|0h1N^NG*DQu^wZoo~K&_>(lh<4_rW#AA{J zD4Z1W&p#vu1RsF#IHkz@2s>)|zTl)`C7E>zabf)o;!#kpda;vm|_Q6jLaSPLO-5tpD_uuuAYo_TYcRN!^kgIaXjCkG6re17w%&# zf?aZ6o1>%x*?n{yune74O51OdBkkJV-!Bjvqc`ISv=KMq>w?YMI)2V9D4vjU5?IPf zJQf3uRaCX;$)zzmAQznb3^TSTbl49Ft*{4RojaY6^*DOXSPlJU7`J(+br-D3WE2=%iJowVglv%VFJGvWHsohr?zXNVLxMOZOi6O`)4K5=kfS(Q%M=r4=l~ zlfUp%tSh8xEAXKR_qR#KI@)&_BrVE9f>*VOW8+nT|^R=5{>VvZq2@pE^h*RPRD#aXv%6p$Y_fc0JKLPyUS>CPZS z$71qCjxmOw@pzor?IkdR>Obv<(+v;!-;q{*T`?3SzzpNSl0h*23`OqhK;t>7G~ zjHLwy?;^Ljn}hk|tm36Wo9k7?HQ5_?NOKi&&UKq)7eE6AG#)%hgf6Lmq~%DDM4}05 zmGqBxggP~L0?m69R;!*w#ANzgSVkQAxReMi$5J#I7(q}qtQ&SDBB?hcWuuPitq=Z# zhTi-*Z^2TJ@%Xt9-~t;}x{wOG$Q9VU)h(6HTXCHrc=)q7#;fg(v;1iG z4#&FSlQck$E4TTYuB8QErLO(bwO@DbABuGn**301CZ$VBA}yjXGnpJ{yf20(+v31( zOs*@WcjGE^{6)tlUERm+aXpLVs$Fy!kH%udXrWz&517Vneo>FW8*~+ASu!b`a+Nm) zAo?;R>WG0JVXg~eohgu(-7&m*c?oZ?-~ct=p8_yP zR7}iegn5&UvrXBS&EA+JDYy9tcIK<(q-tE!-uz2WTqpE3+MtjwsM)MRec)Fjs@|=X zqgI?g`lD%!JH_onrI?SbINj!}mm|>Z^+;GV6=)W}ce8GD13<2@#s|rx+f6B5I?(vA zlwt}?yUi6sA8f`kQ|{2A$HN@gR|&oLy#kB%)lQ)GRo0bOMORuyX1OY9q71x#0Oq)g z|4>o;BGc1qsw+XCcwWBV7wd3RW(joFu|U^e3*35vS}&w};SijILx0Sze>Me&Ebg9* z^WL0`Q~Pr+ZuU6>aF#U#FKJz;`-#o2V$Lg zjnPEr$0cs8+Z}Kh+=1a#9KZt(1QR>ScpNA(*-hi%%}5Lc1dN~R;Q^N5g#C;hnV;e| zkpC1qp&NIBYQR{ztGzApm^|aLPP{Hj#_=Y#13r>*pl>M0f(~T(ZvCS$V;4N25a*8z zYMlXFVWpFbqNFj!S4A1Jl%@cE==n4GSVEpK^0{HUU7@>?`dyMncVSoD*(BD^((NLg zwBb|&Rx?YQ?*mbukO^T#0U?YiNyo@I6)uknrY=Q0GwaTharg>OunH4EQF34xcWV(3 z@T$8Y=WhW>NheTFz+*5Sbr+$v+xRRo_ThoX?+~C4ZY>NAw*N3}7~SLGkh95jS1Lsv zfQ|s~LUj%)PN_IwF0IC$;S>_oph_q-89xF4<3lKexHUC)7l#1_uu*_Vc*5|*DKu8! z0fvOz_yT|x10dc3Nqu#K7ih5QzeiO6O>(g((fUEkqbr`+klgS@R44sq9mQu9&u!n3 zeZ51P$Y6wz`?sh;lxz5`e@FUoifcgiNV&&5zyysd3M+_vzRym)*c&E?7i`8?&`JA! zG{@n=J~>RRGLQQ{UDGV$X$Q6EkD)nq>;+P%v@=XMkJv5_)DEWvQ+kM5RC5~N2RsZk z-axX(+pi>iV(}Y8&*v&U-NrGw<{_uy zkLdHSdKDbCZ@}sL5oBT{0-*uj-b86Ta2O!GWLzAfuh6ObnlmT@v;MUt6mrwiwPfJO$rlBl6=5r!wjh;jbkJWO7sYRIPruGh`EkL!W$2T4&E~J#y9pvt7z;I ze)nQ>x7KU>-Umqdd$(E59|uZ)0)#xs_oXokw!qJKC1d^@Il9=s)7`Ic@8kLgqn8)b z{Mj%(2+7A1p7*MUBqbmWei65S!3_1bV%7l95k*u*DJvpd+?KMq%De?dq!Vl;stqCZre?P7hT^QOEC-Ly7Ui}Yr{SSarP)6e2 z6Z(l3kvY!x0*h@Pg|cB90S@Y-?8PNSPV)ixc0X02j7Twsan#pez!SE4ki`d;Jtt9U z&v|a?Mqr0r4(ug z5tGIqmrak$GRBfAS<+z-4GCBfbL{qtjxD4bT{5Ejd^daUslcbWQkS@oQz)3GO7T?zyNb!m1o{CFF50u&r*p3{Sng3~+^OYoD7 zpc6b~PRn_`rxBI=+(4{DE^f|A2{)LP2D7M>&q|uB7Nu$ts}?2AA(MlMLhF7^uE+XF zF|i9j5J81%kQaCdFZt@P(lOaIl=UiZW>GeE)7VP&R~=kb{Z-y$Y|uGuvYQ-tig#&v zgZCgP0}DOGg+Bl~%k2uE`lgEMTeBf^BSxq?jD}@%%0$xP4dOuaWL#U7cm)^fhZ116 z@af*(hNhsW$AJ~o-6b1+d)nyR(?%a8L`FHd=G(W>Yyi7>mZrT#2K2dsU8sX6A)tvt zb`(0qCi^As_&j@&q!g-AnT1Cp=5Pf^B3`4$FVJV5to2z+zeqF9lBo{;XUPno?dr#n zy9DZ6jj0hiT6==~J;TuVL~eXYYCdFYJ|s0SNzF^9<|V0lS!!N3HJBop?$GDQ>GPA= z=2dC?s%iVGZu{wIjEw-=z~dwYE404jyrSc@qT{rW75DaMC?M;&Apf`%l?y2*+v9p) zpLb(j)ZsX!bsg-`@nLv&dpBJ?YO^BSPic>aD!ezx*`UU2B--8Q;}o=mftQ$lF-}3u zkU&TebBMEh7&FsoWlZ;xJ5-DHD3XLI9#i6AnbHoHsr!M`Qy?Dv*Jb)iUB*bq7&|2D z<|{Hl(w`-@^A+q9(>?1iAC1L19=856svY$^9HYu1z0DVCKR!oFee+zLFMi16xcwS) z8nQCk9r;n@53|UbF#?KG5;>-%Cc;eWH62YBXWmU$YZS-;RU8b+_hu=+O}qU?)Trq) ztw*0Z40=)+Y-G9&h&R&|prshc*?X+Qgx7zh-{}Z-P$EPl5kwcYbES(lN`IoYpmpwK z!k5(?g4~zz_!aS1;vk?@ySKj_oCMb0>)moT$nV#<#hco=CFKO=El5nogl=v*{uWxR zb#MPcAdrf-_p3C^b398ifp;mK>l2JV$HA$J0)({}PN=mg@D!z4Z^F*l{ks!-mLa`( z-Oh1uf1QN(9}#6Rm2mn7(MDQ$g|GH z&r9}2&TjMLmL|v-bmDnR6x~KeC+d`lyNzC*ID(z0-5GqGaHsGw?_Q$XF}E>IiBY$4 zf)c3W@^jx``PhT#qS2NXJrQC?>TPV+^v-}rM^Z24~L`_KJN1);L&F!0c z{7mQa__qS{rR;9n{AKalyU^1H&Smz#U@Wpz`rr2x`@$s(M>xrU5A)1B;u49!SWU7 zzGteL$`jTfyQDt=P!k^g<(Zjfd}7}elwEk6qb~G1>dEE#<@`T?=fC=`-+cY?-}>vt ze|i7gKQ@P5vX5MQbf-|v&0f!!wy)hRSD(Fhb}~Ocp3P28o|&GQ8b3XDZ5K7Q2k-<{LB5Q|`MGuym|BwHq9iVF9h`;)a2IL=pei1+a2T)4` z1QY-Q00;mHm4ZZ*9{q_6V*miYX9WNi02}~pX<{#KWpp$!FHUK0YGq?|E_iKhAfgxm zD4-Mo0000000000000000000000000?Y(Q0+eWe=`gw1}{s&xb#EiVrL)o7BwD!?P zyCvCNkE{-Ld;DQyVuc2Z-8cdP4hrlRkHh!3-^_ZU@E}+P6hM%Ti5RO15>=It%2#D& ze*eF}tYhzyWHd^X|9J7u;_Dax`}KeSf4&dX0RHjdf8YC*lJ#A@6Q9|$#9x!wzeLG@ zk|6*775gN9{i^cw@7M4NhS%Tbk34+sKVIDaFEP&IGRUJxKZk`Zeu&fHGu5832QRci z*g$leFuVs6hu++>Bm^qLoNxRjBC&Vn|JQ$Q<0whpO0g!i zEMQOG?lz_Zi|t_K*c{$LzAkN9gXOa483DE%!CE=6^)sMaiBv2xSZNOM&JH>>&NtE zNzj;DN^gWZ;{J+`-+2t0r-;H9g$Y(bAvVJ>{7}}qiz`3*$o1#T z28#xM{qHTI?sz2Q<1r5sYz(2gO$>}04~U^S7l;psC<^GktdMReR5Ab0K-4>~gpwf8duSP}G-${Fowx!vDwli+tb z$aU-|39$S^?vce({PmvXJ{oQnDe;H=e5HJR3ifM4vM5+A-*OCqNmtB(NJEhUL#x04 zsEpcC6meM5NR#xca~&nwW7N$s5U+BM5Fa=(BaDWir7Py$FDCTykahFS2M3D}S$sx5 z!+6?`D|AvwBKRy_cOs<8u924x&c0EE;IkK>agvQsshm7h9AzYH>4y#e){kGbsYF0o zDt_0d4h^RJHHl!z*2(BYx{Xod;Qj*k*s@m;ux*@MPp>7a#$MleXI`=>Mu z!4L*&GwYWVTMhW+qq^Aws2aGsa`h?$F^a=T-Kb}9GV%)^&g?LVW*LX9oQt_@Gpyj1{L6yU*A|q% z7Cws+W!afO2sxyy~7=#?MfDZcgypO|JQ z+<*}v_7-2WumYY4SUV~S$m!az()A`y@CA+Wp{ z5Zn|^9CInq4UXjr0&;Bx$l``4ebTObTqKP;Nz7_o@}yVXx?`6U-?EJ=f8XL4SD?2t zQzICE%Rva(%cHOMG7K*zs+K|%ce7VuBo_0nCuX`eI>0mc!?4k6caNLG2y=uTEu-}0 z@w23gbp}eO(o>ghGI0&j6j3P@5fPLq3B5sS+HW$Va| zcxT~8EEH?-4P$Cm-L_jNo{z^wD|m)H$dehfErwD5+zgA%_AEq`j zIQt#r?QFbL)qTEfpJUaa07Qf^*-m4^B6DsmoRn2O8^t!LnQh|z=$TF8Nt?v8MQlg1 zu`FUMqS+Xl?6>yUo7^s#Tf4w%(w=(Rat@0(>TXE>dx;tUFhAGlhBe-A1>%L$9_w_$ zNE&~-U02+Z7IGDD$%kmyl&0$-XB&@O_Nt+>g?g24?M`2i$;p@eqUk#U#YgGtnF=&5$ls)*5-Tr(J+EYS;EGjB z2Yx`gMsZe?j0WYpR%}l7+Bc9|@Y|TS&Tf zC>Qjb#x0*3Qh1^qEBP`E+|#h(rPcQgP59Y@=i{A(1wR|`Ct|?c2ZyJTg0FySeRHLcbo?^0S}G?jIQJz4oKb;G!BRx>a<)&DaWCZ>JRx ze?Lq?{4c_^`{NJelM`M_6=)^BEmTClbTU}wH2jw*M&nZYF#Mgm>w2qQ7&~}l5sQ*a zrw2=*%1?tyQ_dv{pXQFA!ltcbRsvX6Gpr3X6u|G&?4IPN8^MMXP5F?opk^(1L1WF; zQZy`ltpcG#$Wnn$3q18h6GF4=f*$rF#|t0B^#P`^PL$JZ7Yk}|uZIp@omS-PaIiz; zG4sS)#tY6DYhr|`#kPc*hVa!LhnRG%_ex%Da5s2{k)`qXLJ<+4AQ zFRy3ITIk+%sbi~=o!YY6hMlAJbT?{CEaTwol2z4q^;fRzJ)1=iiPN|OVuwUBx^F26U9ffRsbq!b7%q=_7^ zikI#u#*%2MqTP2Gp1`8ARN&%J3nm>}ytKkJjT5f{0UTSNZscf#$W%4DIAc|ljUihP;Q4s6wpG=atRmLw zAXip74b6_*M6&bH9N!94V>^qBPDceY+E%&|pptoc-8Xh?uM01K z;XJ&GGMYKON zX*S{&E^tH8fA@YabCCiuu4rk+vXEGTF{>tA>^Zh<(kXEJqSVPrFHA^^Me*4%bgSNX zhBgZ%Q7p_!JpT^s;Q_m-^)UlgEuEcL2!aO;w9~`R(i%OgRhx#0oGp|s|JDHtHgXDP zhhYvK(t~-nY|(=tz_Q3=i48VjDSrCOV8;%{7RBbB`NBCa)lKjjr(O4&hST%eY)$r;IMQmWY20+Y z_33Nl!}G(ZSJl=0DbByU{nLH^UH7voZvV;HXT>PgJ$3w&G#iSpy!TeLyWgqH{onZ$vdVo2h6)9_W&3Z>fH zLkOih>YkbTP~v{>uPN+{9}Xj@>X`or=Lb76wU2X{juU({yp*~DP(nWoE!|NTN))e_ z;}j?-=!FP#6?wdc@q~@x{evgY>gE@wxDRhyRnbs3tXSiSS`O}#{Y5hM%?%L&{>4vZ zn?*E_0?PIrZ>W`KH$j?>c}J~<%zaXb@}0~v?`A2Rv}xd|6~{IFgXN95D%$mK6YMc2 z9cP2wj%(qo*smBM#>gs8Q0y!Ib%xpbA zqu8W;b_24RgEAI9m!$|S%3)n5Thpo>(B)f?jE6{UbK+7?LJ&GqCLxHAW#-dl zIo{P^FxrS*iK9u-S00~#Br9neY39%}S*0h-0W7CfvnHm&5qm74n(Z?lM;-8{Y8-V^ z0b5((uBBOP4qvIeQOyuO0t_{Orh8Wukv{DdoW|XLlViWcd%T`iDgGzEF}}&d3hip< zL8xQ@N`$c)oVvdwBCLp0Ykjc-p1B1+;kLI8f6_UA&)ewRK?F2@}?2e zBZwT3(X=XQ+7UQe-W*iEG}G%CB1TcHBw0?BW&_I;?ttQrV@qN3h6@QD#TOp0Yg|gI z;t8Ab@VBwd$+B3)kU3SYP#=R)-$-ngHQZQv)Kg_i6-DaKl{!yGT2RW2E#>l-rIn1t znvKwpulDp%-ifj2pv=h=|Cj71_7)g_kBa<%>M_%*Sbxp%8iV2XKy(b2W)4`>E0AL?kLhCQB&thu(@m9Uu|e zh#qGpf@)ySLZ~NqP#WDQ{QKR9N0Mb&BB3|0w3aCUdqnf1<~hQOt$``KL(i7U(!7oD zvR>jj9x&CG;>D~j`vjh;fJL$)OM4a=FF5fe*`YS_M#r0|TD_5YtzZI12GgCUnY+8R zMvUepd%u;f8tRSrXRdR(2T(e|kK^kK$6(HzL+WI)vp6It>w?h4tCcNG`{U4 zaQ&Q|eS4}LAxd~7ne&v$GDL{buE@G-OQ{up_WZkan>QRA`yOUS#a1QQJ66{^H7J^^ zZwV;SG_t&(UG%#sm69mBKgsgCqOeGbx%h<_%$%@01=clu+q@31Cg~`;;k~cy@WZ=g z$tymk_IoeVr-Z&JqeksFe4N21?1CFn4U!l4U^O+hwG4rrkA$Z2qj@to_G>C?;JM_A zj1N6bfi(&3&m>DoY|99r*;}geNti{C^>m@Z?%QajVn(#>>ZR>H`1-{8v+erK&wqQa z4;{mY zp>x>P0I6)4irlj4jNApGE;Kje&-73zMjzo$3iR>_ML)#D_l&CzORVa&^sn^Np?`Y6 z-7(vmt+<(8l~xROHpX?tXPuV7)xJf>7i~N)f@-w!_&&M1;Yiqm} zVw+pgwLMfd$;R04CsE==Ex1D`;nIo+=_uSB)~=pz7_RxJG!AKdN*IFVuP_@xw6J7t z@EG$rX&=`dpsd2PSkh0%b&^$2^Y)!wTymoIZaJ>Hr2lnrn6jlBo7u}jdgulEr0xU3OQj#zD(>st1f8zHB3K%|6^RQ zQd2$`8tiHBBxz7&wphmp)tlUj4Ad>|hHLn>S_Q(BbW>QSSxnhQLf(i3?ov2}xsARm zZ>vSS2a`@>)rA*ErLeu`QAYOf$+VuLj%_1^ZQqUGCmJ2S#SFZuZzx~fm4H1QmkK~9jza5%bvj4 z)N{HlgL5T(jhek7vA_$xUp+)|*w~PuOP;iKk$Eq``TOu^V|i;C+U5Cd%7iyM_VF?6 z_^LrOAd!nUt5WbFAFTb*sB~^UZQ3iUXlEoKV1H=|zb%J#rGmO86gtd&k(_cPQEa(g zbYdWy3OWoGd{IljW>oALV&^O{eDX_qv39wI)y0}yK|L3HD|py$m1f*NeC~x3eoFCJ zw*f1(Y`Fryxc>tt)hdc}p|geBqx`h765AeyvmBi~_^TCHPp*xtb^zEjA}uL<%NJ|9 zgS)E8z~%RY|44WwvN#OC+j%4swpL*=p~D`bGR6xGIbL2G9OO4-lRwy>3I^MZ;)V+G zbq^U+s45+p0Dm<+2uu25gHL>`qgfdnF*`tk--|iMfaljF`nO##E-PqCZQZ~s+Op|z zr)}dA#KgNa3&=Piu5c<8l2uswAmov#c;jJGFISwu#R4cU$IG)VDO+eLq4S35Xg^vCO^QFh98z!0rD{s;NWkQElgLD^d%TP zK)08m4|b55r2PR0oFe%6IMQsrvWAPdnv%ZvCne2&A6)<4~X144s)1AT~(ms);RoN zFfa?B%N}w9Q7nuv+mDHu6PODy8`|Rh>r!~%WTHs(c^l3@8XN)b$m61V=3y|M^w(M@ zYjrDargtGL+7xJOL*zZRSQ_^BY3<&IlZHw#*Mz^_i2!$}6Ju<^ek?h`LtA=+r?zy2 zW83-ERzt#kXxlj6d}v!`l+!u0J*6YtQ#!Fdiv!!|abA1s$FLPQA6vFsa@i?QlbX0mtMb98a=j^jfzRQ93r~}Hr>`E& zU?EzOkzUfTKpfmh;0|UaEKefph3M>ui+8)f%HWsJplC?Byr3AQ2;})YBOP&oV_&Z;2SId)eX*t88dIGhPma=rdUtD-s z!~K~SrS*9ROUwA~F#VCN(?@a{$2O%K@D;!|iz*`SGq&KO_K%+9WM2HF8EF<+9{?-* zA&sdn9TY$1oR4PC1XdDQ8X7}3o0KD^48D$@F*u}ofTn$UjJ*gJf%z`v(V>LY4BsPd zJ~lv82^G~3Mk~D8>sa+L7Olh?FZ%_1)qnJ(7?abqmM0U!=_Q6LBfci11rCnpF2ZpL zwl$H7`y}GT*tRoDhht!8*qs;ygN=Ec`3a5SX*Xjtm#@!eXU#7@fPDMHuX^Pry#Op$ zNG@+wE97_Mrv`{bKk=8{@{vCh_%(JTN2hF?;l_9%F*_&CRhrV6;LIM_5LVwTh9-sk z+4-G4yHWY%g9!-QF?0hS}>KhiPZ0w=cdM{jQUCyYy_2Rpx`z+XjFZ ztlFDrDI$(p7An8&9c$2;8=sMhZZyR+%=s1B z^#(>lK3&qwI3s?z`+Mq#Bve=yoV{3z2mJFz``4~W;0q#XIZv3u!_s&nR4Q!6Ud)!< zDK&^Z@fC~wAo3(;G`X%szJP^~89dqu^4Wo5CdCZDq#OcHd1MM$){Rtn$Q<1=zYbA1 zNhNtzy9!Rp9w}~h3ajKVF&7)?6v%Rgd4eDTc_wD$+pFk^PmDaG8i*1e6FPe5b7QE*d}Cxxoi)9ZUse zi}U=-&5k zLyE>UC&5R*r2GcT78B#?rHpKhvAMx)3beVIM^c1VYVvoa+GVFe9r%HYv@{jea=D$` zsU*(>?jyY6H%QFOsI<|+LzfdF_suqVP^A5+F3xldSK8@Tb&kugCKk7L#vtaT$WSp$ zud{SRvU~?WV1b*ZEM;Ksx(q|Jjab;kEZ9<&6|ux$l=rF@eKP*5>>|$l2a*s2qhlGr zsw4P5btrBqV_*T6^{kX*Nj0wTqWf*Sr6x7w{vIX&UMzpi((MM2EepcIe1HA6Uis)v zlo3{=g6b108KAy4t|Vtdc1`25_@IPt%)+gAu*D1DMOiSs^sX;1EUs#shZcUngfHQUy?;P z{41yRWixIi%GK|>AY1vKoxDmzRMlSei))X!rA2f=v*CFp2m0-ooFo);bZk!}iF{Ky zx;)88KrSMS@aK5Pl2w2t*C>I0?dK0Jf`lb@(aJc(@OYasWdd3q)e4NLOQ=?PW`}Gk zy!CiTia@T3G_5YVAqqUGeBDDQgRA0gwFkQpk9(goo@7couLJFxie#G7&V|t>r);40 zF-h%c6V_anQ`m-DUG-^hzm91I&4dv}{!Ho8g)mLkGwsPD-kb_mIs|a`5P-Kl9}xYe zAa*Cz?>598;`f?CfA^F7EjkeewgF{Y#s3ehTSvx_s_UZn6S)23#jEP@PR$|{02lB5 z&8JV_m^K6Y^yzEW&ft>$jy*DE$+x^gj;?imHVQ)%@q-6>XhL}GmCC~&qSnwOowp@- zw{j*_H27hEo3`tbv15Npy;+e?~7_Yu}K5$Acs zi?8?WT?{-JZ%O$!+k?gX<4dMu?!`|&Ro=VC$Xb}C__4EsQDW_w9$@YL8?dSF%o}kj zUyrOY#cBs0;L`Hr|Mq?GIA^`{$QRtiCb2nGV^vF|!fH{g4b>M$d54G^J_7sGM3pum2JuxOM&ot)TgQIaK^|Mu z>x?(zYiAl~f~JfVtoY04@6_o>Ti}a2%3X?$eaoJ%=(yU_JY6f5LfKElB2D6;Zt2*< zttf@e7Enmp>cQMCD_>1A=1JlKp0Ft~B2jyn*=>Rdcx{XAraPZbZR0ce!Rcyu=Xr~1Xe4%Xrv!7k_E+F9hK7y{DL zkV+YWr=K}o{IB6Q7Q!X&ME(FQhaYM8%aJ8tQe4jC2iwxuwD9FXf>Rp&-50GVP z##*sjgsl$?Fh0+p;{3bYKi%iwb(cm#sq<*L>xpay2A1yqJ;``8Fua7vmLL&00P@n! z|HaBeQ4kd;yp6wQNd5mleQoQ~aN(modCp#4(8u2t@dQ4KK|rCz&OHlK?870;-tL5# z3z1dL(o1rbp9#TM@9>`6o;~}P?xtst0>hjcPZC;Ynvz%cY^CLkq={JqDP$7yim=^5t_4B8P5WVItt)5js%Xn zgKp3x*J`(e*dH3Icu_z*Y&92ZoIb+XJ9}FF&@F5b>8!CbDVXDwgrfH`0vrz2Wp` zi*XArfz+4~bCec|h6HQ4nR)9pBdzOf3vCR=KLUrm+?SQ$G$zkEN!Dfvb$NRPB7%h{ zGVR#CD??$xmZF`9}`1t+s=rLCq{WO zDDRSoYK`$O7NLO;4=`@%xG$>cl9uM-W~Bie0a9Lyza(&~H)q(@n< zXeW7HXasVI6R3U8JY{8Eu>OxIYpKs`m5;{0YD-D$2z{T7HTJwHP*9m1Ykm~GAb(XQ zHbWxA1H7$a7uL+4BGFmqR#T}CHTU3*3p)8H&?;A;RBR2}LLCV&qXX|X2kI8JExv#!GJbrYX26nbu0G2_PwK_dXChb5#;D)?b(z_711k>wEW8QQ4Uy+I zrsfiRNuAortN46CkK&h3tfY5#i(jaAL7mT^7)e#vAO^`X0J#BviAipM#!>==%2AF7 z$n683I`<<78^Rq3`i}U|reZ4i(AbB*^g!74H{C zN%zJCxB60lS)4%V;=W%Z{AXorZp-|B;3}<8IR!AQ|y;!<2PI zsk9lr(;{tI>#A7xk{-hqf;tIvGd=A95g0PoLSIv)Vo`S+dbTPk1Th8|fzK)rF^;D) zm+T0QNS=+bvk1i(p|N5e|5tHwG~YIv_r<#>88uLX$YhT?+#ocP(y&$z&azR233K$G z8I4|I#qUT2d8to33smzOVqdS-yn(*dl%Z7a*j2IOl8u-n_wD7QH*P^=DL<)NVxm2f zx%Fisto%;r%Z*k~v(T==PUWja65;e{dt01I#DJ5jri~VlA044ur?DJKd+ec75v64B z6*0e(&F3^T#fi%qTDhY|`9a5?$u51Tp*fRXYzAr95wRqSsVGrVss>N;W?iMN-VNvL zg7S?e_4jx1)r&*AtbU%A7ngX%Q z-+|*-sCSfw;3MSD`EXX4?~I|pd*+!CG>qBo2q|wQg?s1t1nR2XSD`2-ib`n}KmnwF z!D?U^)Fses8bD5M>3HkPJHUY47`1bMfsEA%)!m4)y6=J-4N#3hq0Rf&E%|$v_?6g3 z8MvzdN_K9YP(s{5IF-2(OeerrWNem+XD>>ARL{R-j8{_RI{^6#>uJxl2$E~% z(}7B=H@DtCU&I(~yt}~Nnm+DDP?5p629(pR3_t#JJ7*gd3g&Q34N&g0Z=ekhnzunk(HVRfdyew1V!8~k$?P_CLKCD7Dieb0TOABW?OFa1v!CY<31~t$VU&^(ovAI{xHrI;u{3jy_ zxwKEu45}&SNzK9Sn{c8;cA|H>2q!41IpBv(ANUv+%4|Y9-_7yuw09~Jc?nZkBp=$m zFe|}*xxAYTKPW{RWtqX<`|3MmOQZZr581-y?x`#xoxRR*my9;*6a-#}D-b3$9!zy3 z7J2mTP5kOja2XUtEf$q&XxkYB6}>CrPd(y1s~qy{0|&8RdeTzD8*4KR_wQQ^*?+=i zSFyy@Ok`&1!m3yz>7i8URPyDY#NH}jIxf0BwPaMEluoLp|M8~Y10!^=kd1tG8>}DW zYq6a?Z@m+p7b0^{C063hd)LQ;Gn63o;t-3zeS?d`+_lq&e8iJ!Uy=#S2F_d>@{coV zoiE{0{zN_~3pjlc!7)hSgn?$CE{ap&Y+MCpk@q6U0mcc=;6`K=rys|0cKUuYe3bt5 z?pXM*`Y6E{PInf-z8saO$I;$#lTqr80*@G7=Gu)0I9=_g{h(5GDp9CU9a+tl$2_BM z*J?hiH!ps-x6gr}`jXvM`lQ~BbBp-NE$or^=>dIi%&@V$>m2%?JHrpo4)_uiX;-!iunw>2&zVRs^c+$KlUfTkxngRUy`;ZbVY(q zl%gEP5a}vW;f-^rIS7O7v;>uRvelN`nn>&g>H>Y^=k-Px=Q_B231%l#*xp^d%B}TX zk|b@hK<-2T_Kw>UfPxgj4qSJq3$ zZfh;3mBB;G)q`28r9>ntn+>_%Lu5uohsm{+0l`nGi_4^=-AlAKY@)-#hFduce@%gr zhOf6u@{!qL8jB9A?Q+HFzZZe!RvmZd{f;us5?0}_LiHRa%FV8|%ur|S&`FT0r?CpV zf-{%f{DnTNeSNPpUPI`ad}}b}P{dpjFz&!mh@3(z0rMM z>|(3j2NX!7uFdW%|*V`l0qB37V^PXO_5R$mJoTKCNz8+IzUZ)$bqG_|2%=KG<&uLYoMK9z!Ecm%- zRspr+tT!-rIl^GXl`7j<+rVOLgq@%sEZ2iw7eYYS2tS|nvHAGY#b>a?b{d!gtb)jS z_`J8zy=R*ilk8g)EubGFc=$#azfs^ZIYiKMlrCLBlB-}sas6HUpAh4&0@wO9YZvrsml!)9`BU-zY?BP|LU(ZXP{d5o zXJlVR0^X!afFi^Ce>;#$5By6fDx-ZjDc{q~E)4PfpYcup4&kVFr)bk7o7S0YzRI6q zD=5c+GZ{1`GQw zdpDQZT<%yUX8vZMMI=Vb-jh|WCD~sJlz23;AmIiZru@lIZvyM_n83pFBkQ0;hVkc; zQ#jar}Da**9}I5PT+OyJi@If9n;T073PUY^A~rOn|&$0Kz6&aq?jUazIsdb7el&1t-rX9bj62lvxY3rT## zk;PtW9g{C;vZ&|!DB<68MH$R6@rJWErV-_b)DLY$CBtUTXyGV3OX?zaHy%P|8dJAG z?;dd8Z9eQ90eKQ_?F&%Gba)smmwOFAUq36_C*)+{H=y^ogG=_IN;b6@Sb7^{NZL@fXk2$vk`E~le&^FC3>uX+UDNE^tENNjiG|)-+ZVAHaWqlwzJtnk{ z>AP!52qDX_<$@3<%MR}HS2^Y#0hs89)<=`G_b%1|M3b2+)An>ntIvC%!Qzz(;3!ro z+TICY1(_|D)mQ(tR*IBe&UT6h^Ji$oJuxci$|!>qXyI)qOL>o|93b6x3HT!yay>83 za;0vNdT|`@a+Q*?KCu@txhy13)1m#pX*03m8LYZ+PB)F=6t@#tdzwR!=O& z%Ad;?26)gmc$&lEa~~A^eBoG^ zCo%F~)ryzGiK2`0DvA&eGG42G&o-9M_=FvZi>ERx%Ja@D5TW!yAbdG`QKCA-+KeHu zxAZ-r3f?Dhya~cI=!}pEB(w(fsfM0lZ=Di5=ACw1xtPiFe!B!zk&#nk{@e{&^)|#M z;_$6Hcd?MfzS9n7ba0fMk(u{e+>uy9-_f5|ULs%FN!EgXVd*X}K04^j&Yqne$RZE^ zsn30Y$E`Sb)`D4sk$Kq2jOe^|2**B=F*GTv-uqj_g<>6lBKJ=X{pgA`_CE%;D|1lf zZp$Kjdm7v$<^U@Hjfexy$J|jwgCI3F^js{83tt~DuQ2d-@RjL~`KpMabto-b_SK{I zV*D#sT!k=9>eAfRo;(?L0&6guF;_IaR^9zpb~yIn8;FClmC#B1_N{cUvN~ORPC5uL zm}>rk#n95t8h_W-{c16f6S07ZX96Q$-_ip;yyA3;N*#{V4xF=#V->_3T9`R5t!JY# zlp$B}WaO>k7N2~|SNaCgZlZ@%i32 zi0B!_$_!aZHaS+T;iicKZ8GN|{ij&nfbrGO=DdTS6O zOs*&%Yci_SR#2}hDD=T(?C;qzQ$ejyO+^yd`%7BXvjr_@E*f48+_W3hb+YR7`BhK+ zii>5HOQ7$ya0_*UpdBYBU-^Wil zSi{OwTIL^1{@5Jl(HL&Hei1xn4QkoOxt9P|dwRRp-KnA$1emjiwnhzV9gkj7y8+UJ zAK5mVYil@mc)3cVZI5F*ll4VmbuX2%A=t#=OyS`5jgPX83iLw;afONvk`Uz%{`Ig7 znA>M`RCJg}#5ig*Sl9>TsV_UfgWwz{u;j1805S4i6Lm1ps--BRqUxZLfmSjDg_Z&! z?j(8bU1G`2Jwqe{Rty(m?S!elz?)=HkZOm*GjD{cDc9e6FiRjM>7m$m;8Q)5QS6ih zxv80tUED6`dA_kHN-Wzn3&H*2`?pDiiZsbRe~`keBC`Fq>LVqDV;Dus77JqZ!1n!g zj(yqSA{}yur%NbzvtWa?B88i0BU48LIy=@_J`vozjOgA;6Fuy(#`5!8yHsfd*pmQ& zLDRJw_GUW@wU{T^okc5#V~Q`Od^6n3r)VraGoH{uA|F?i%jd%j#;c(~xmysY%uJcd zmL$8z#43GWf$CdU6*Y8*e}m=WTkwqNIhLO(Qbk$ z#^p6)GrsFXa#4FYJ=L?7c~(2MjJjQf|2D~~>3-6`ii0);t6!6w{Km2#UX5{`N>ekU zU{jMkm=}hdF@_2=vOzX?MA2A=@86Db#MYe&J$A* zP$t!qMC4{qCYbCz#5^TDXh>N?3s;rKiSpx%MPJ0pq%!n-#F>G@-+C9+!N;Hg<#zKb z?XxWI3@J|bx{!|we7&~{BvvG;GvEq9 z%YD~hq|+LrLqJ>9Em-b0$A3kl&Y2`M*(JP8@bN}&lBK(w6A@Ena-hoPjbAk<0il6S z`MZt>C-K(jfN@1y!s_@!lR_|84(IeOxj!y$8KNHrtOao0!h2CK!r! zqyk$a3Vo^Rp$t|GUk!e!T&IMRo-vN?fQpXM}Ew9ZwNomA3T9ZkAe^5~-8GH9uLPl0GSqhO*aA{$dQW zmgr1Tvf2(7*rf60gJdX)dsqlHyPERl`rxj~+RCcNN}s#~_~0<*9sqVgf=`bghivE{ zh;4>Q8pswg5!}Zkmv4x3n(^gWpBQ0l)Cyl*XC?DAR~`LT&U6Yo!6Dp~=d+)E-+upi zVn1!|Iic2fD!RbPbb`~s1wL)$%3ii`yGbX`HA8-HDtg5M$`;C#Rkw%<&Jm+oQq`OK zGk*>)5^c^UCML(mWqCt5Ww0ZYMV_mCMu0t+H08vm-)k)ZPLAQ1O&m#_ zjr#2ZM-dZ#!HML|7Ei#;Gz*x=39uCU_oQvsW5@?4c>w1o-M6hYI>{;N)VPqx#yI;g z_afAdy1WfvQ!e~qE*V_5LUMIp*|@0KG;a{6G*>!9xrqJPl6a=mUdK@% z=a?=t>D=Rlu9Lmu-8D`>_PO-QCZ|0+S;cACoL0CjU$2;U)7_bN)BkUarNC!jy;@{{ z2>1)q=-@aYjmRl0n-=sQqc3l}S5<8%0P1t%i!ZVb?A-bOj?~a^DPwOZcJkod*aL(mllIgx*mw1aqlr`QmP7co_GFCv} zFOc^3o5!7?DV_~~ytg$7Yw-kjT%sigDGqXP9Z*|CM9kEiCwAaXIkqtfQC3`J!Q!mm zABLcC6b;eI!7&0pbnM;d?t^VJ;n)2c!4#VEm7PkI_uC!Dqj%}PGn(AOmylC05x3)i zwC^ft{G=CPj*8k7T2-g^7Mb4)|4G^e0N4ya=;doQ=nBiUDSL70N&FprS&xWIBj5TL zydtiBr7MUVK*ZIOJigV#E``kTy}c<7=QSt2j)kij!@kf?65a|PYq$D)kacu}xxmL2 z7^_>Ciu}ClL+RLF5I}Y;fMb!&AC*kMnos*$_bSS)@Su(Qwm% z86l6$j~i2JOI(rU6D!9kl^t97#$ zHw~nSpY-Fdo6{eSrtb=dZP_?|{~Dbk{9yY?xPe7xRVxG960v8gBz4-&*8>YJOuTQp z-Rdwu_>>pAzvg~G`1sSpaah7KoOjAz*~Fj^jy6KjenPip?Oz4*i}?c2dyYgqoMS;C z*{Hr++WuXl9JmrYO=rq`Cr9EPKXLzxyR0(awwynf2imsHBk$9#^@`qv!(=@g>o!Sq zzt_tK1qc##7NxNmp>GKXRPa#$p>)12lPw7Ih53SPX#!S*@1X$sQd3wF$ab1Cmd;T& zPkK@lcA|9QWOpJt@~iVY;p}7#`$K2E(IFwS4}ZXGbS!-b^ki9c;9ypZ+{vJg$ft zw4zhM)CihL+brm?`Pz0vKD6c8r{Scsa?Xqxef>J3#$97)69vE2%TWF*bsSM@SHVoW zviqD+3VfXKOIIQ(tO$X&ygF%SC5a{>zBfy}M?9bm^a~Q+FrgH3())TOCknj3%2;Um zCU98+)fhy<1Mmy$KrZ3oj5VvFt_^<_Z+l0f$tqEsGzq7>Kmps)?${*x(+)S^#?CRAeD4q$}W@)iwDK?`%&BgA7(Fd>`*V2gI^Ef=r_Lo90xW z{$v_U$y+n`BKOUK8@_sor<%wzY%AaM0ZPyPGs*h{501nzE}%oKKqpgfd^7yw->kmI zs#I^zr$C+XeQaRoqwd^oz(%h>Sfex<_bTWr;+&7$EhQh1BtOKL!lp~FYLQbxt_y&M zJhW;+K8#InN?X*MmqYGV4Fr=*fW9=d@d#_oOS44sMVll*%P-ljJ0l)V;gKX}HDKLd zd$+>*_Sd&BGqK7}r~La}#lk0kD3cl){D&Z9v>MgwwQ(<_ zyr`^QvWu}3j=4+x!C&>*4cVgKs5UL!r4*-cB)i7|$;oM8$~<9~9W#z@dmd*q_+#?L zO~EptfX9i1MZif_Qq1d>{W6ihnP4%5R@K3c7Un}9Nzg^Wuui#twj!&`vWs%q-I0yKpA+1%tm6pxe zD$?TweDRuv*N4rn+2W$f1KYKuxnGePH(A&R z%|%{^=&Flx8CjwsKG#-Thy);NO0xy;`pZ( zds0O&i8$}!`gpb~v%I~7bBRl8idOZrl;hvci`?tG+X!#{np1Y`4VM4@71`q2Wc3&W zM_6K}u=He?q7g7BL!JK-M52PnUv)mbf1Uf)fbT{%`QArZ6FLxVt14)-r5e7C^b+Kn zk&haynywOy63I(Ed@ASR2`)87-apAnxc8&Nq#qWJ6YFQe$klB;xM&`9s41Nc>)I~w zZKy__bJjIO-Vw@~mCU(B%O?@j$YqS1QsOfzS#r_NP9~>`q}$Kh*B(fus-1JTH2}O8 z15?iFSUM+?^GZb%+PoicsNp)-mE(wa>B>nrvc37F``Rjwo-DairucxzPK4L<47{nU zH{>`c1)H-)XRh##b~TG$q9V^=#Xpaf&8I0cvUN*44)160D0`Wh)3AlptiHL885x&9 zGfjTFU=zmBt$g5go_r_c#_KSnIZTz)tbgU|P45JfaxNiq9Wd97?x(c1+)XQ(l*T){ zox1k{>v>iQ@an-F+!UvaT}s8n$5AM=tO}z$j!V>9>~~^H702v%DufvNwHw?jmeQhP zvZ%vidY(&4$xm%OBs&~;8a^@iJD7=Ce5}Mb@ry(0mGDIvRWLS5@ZALRe9=s3ulo={ z8E~t~dpDISKRfLxx zX;+%lv}5d0V^AY!#T-=wZc4;nc->u7t%vW*y=L@ko{r%GDcDOgJ)(@o+b$GBuLz3v zyS?RPe5IEfFB7do7zk9E@(sk(QOzS|Kr)1$PzLnAIhNEv)?%b;6Osw^620vfMTFc6 zos3LgFatX3B)cwTJ7x8D>Jh!skABMVXD3S#t)RUr#{YX+t7Gk~&rsErS^OHW8e(0&#x z)k=%ijh4JJ%Uo6~W|bOd!xx(MvRbuRL)`8=DfLjrf6%tWsfh}Lu!vhd3c@0Lc)jQQ zdhRRy>chhxEQfkJE|88Ll%duF$wb*_rml!qc7!p}82m__^L5(PCmK#JE@cB{Rm4sk zWIItAd04W}FZ{pulpfBt(D&?Pgk)H#^rf^iw9(jt@uXA!81e_8LslX;T4s5L`*piN zd+v9C@vFDs5xh3e5(xKTjr?ULD>xf@IlqjQ+iklnSYac-EFbZ+-`{@NEz;;Ev$7(@ z4W16BN#^(GfjA!0H?w0Bthek5heQuoxko%Er*l*{^5>4D*KqcW9Ztt_5o0D_N39ek zY1rKj7^7au(aY$R^+uuEL_ne3vt*EvF>2NqKu7i~?jZUhODh>($jT1OF!CvPFUSn` z35&#m2-LlU^u2)6O*Xf@gheT2R_PGzgWP=}))@W*KWfDh^RQtFv&qkW!_X&`=0D4I33W-uV@0o{xzvHOA@Y`@6a*z4-VkLljh z>RK46sdms4WwT;u;+``qq!m_u zXYJi>w<82j+o5ga^Jwe@WvhI9#T%0+QKdLuda^|zVfO&*^2ASutu_P>yLEGYwS}gP zFWmtw~d{-0qPPuwhTky>-C3a919V1(foTPdb;zKJ8U4@8Rz)heVXo$Bb)+ zp@1a{+!D~{{uvBX_mDar$%N+Nf?|$-Ymg^P1YbWOg8OwGo=`>vt)ah`-omgAF`yWC zyNggxnesKuV#R=*qWIALc;DMuKLv8Qy*;X!2V^Tt^$z*+>X}GJyPTYH1ssqYkzRKo zrxl8mbYjaEju3NG0BTrTzfFi5LZ&*|*m$jk-n6)p279rZCe9uKKkZ__GgUu`fix0F zQ`y-MmzUzh+y;02J~e7qSK+Go$-!Az>#L#y zFRb=udc8cP+nAHIx(+=ISruZz1n&=NSQ(fqUQUSW8vJMZMKGErpV#!9;Pv5I$jg|0 zp=(?~f8!!N?GPs^>^#s&`FWV+u-M?UuW~zo)hRlglB{vc-Xd^+0ymMDc1S2~TXQ5p znScG8xH%So!mc_xS@S;j1WnqFCnJH1zl5BgaKy8(oXA-8v(kt@fb4Sp3}L_Yj8=|l zQLL%`PTajnsLxFf%T*9n18qV!YT@NE0S6TLM$7W>M#B(i$4{eH4Hv}| zXKP)IYGLiSq|Rfjj-LX7fDWf*;ys}H0z9_vO&=HlCBCF9V{dL*c%(FPUU+JR2f!Ar zgkS=QY|K8a{?~Y^oupd1HgLpi&DX7brahGcgNWuy5QbhHZeFwdn zY3YS6+@2=D@ju^>k@jlhi>x)Q6L7k!21<<^7s|tq^A$_{NeRPZ(!Vg^hL{{|G6`^; z-QKz>13TQIT} zGQvIz9 zWmZi?nhznKMUtTrPMiGh+3bg!iP>s>o}nAVSJpw5?;o;Lx~YO*AJ zRi)ro35L?-OCiMP4!N{|_#(umTvi%Ha3TYY@INO}oe&YwatQ)nhO6-)I}$nIR*0q&C35n#U;(P-6WyD)bESu3C(k(?rp~#8xp(B%dboXpcHAS$J~X z=?gztio86g7ZGo~ZoxCFYqTwmWEhn2zO?Xgk;j2W=4ML{6;r3jRD0TB20bsFj3D_d zmCqg+|D4aXPg&nIBo7p{jb8@{{!$5mJl_)?h{T14J(4@B517>}P>b%kro()73f_g+ z5NMl0;@M5M#&Giv&FvH(dBt?0keWy~0{Zep>7{2OK{~&L1g9*DiUz1A%xfHs9{*6l z6Kgu26CAZw*QO_<)`Hk3{-S8~=~bCuANK%h1*65Q9Q?hgv`6YmQNK9&+JM_!jip|O z!Vl*u^YI07xB6=YM{s7dmvgz647A$HAX)N=q-lUQzW5+f*+=FieZ+IsISumPBJhHQ zECtlT8kl~{@h>!RxAsMlHPprJBvpHUc4cNRtFlrXDed(wcaeU~jdo@>!~kc0py267D2U)QD{=^60fmRywDSOtqPl#_ZrPxc6LPtk6xiztk7O;hHXbyT&v~+ zXj%wmOhZEkt|U2~i#6@1BG-C!>>hN~wDnLq$T(&s^3=YZ#fyFfb36-^u6>=ncMcfi z#7X*!v=F{QZ;ez7@CQB)S>C?>y^sY#rWicm&j8lEnh!6+fubz?`w|g|S>S;tk$O!g z1h50P0l#o19aw3HTdEM9g9@Tb#!6b}i#H*W=p!_c*;884vN@xY3eBNk<+fl`qO5hsU!?x;ZTR3b!Kc_(q9Gv>0buHS&;u%_t06o`v zq4>*rM}6p()Y00mExe&ur)J~sOi?qJ`1i^DDGiyN-4nU9!o5m}vNRRrRy3FcZujez$H7t6)Jv?%TmwOdR#VH{Y4nG&>L)w{(<5GY1T@jP8^U%Rh;qK#7 z^C2SXi=vSXZ&1jPsT;UNn@dkSL@PyD(a;K^vl9sruD5Hy8WYfIq3uw83L%d@Wt$qg zak90qBRj+^TxS4{I7LBkB5$J#DbwIGZKQu2x(I zQd3#@;NYm{v<`OVcqd#cQ=qZqNWSBmnY|@dCzOOr*EjT-`N^bR`D&|{lPp;5zG{2x zbZg=p@|Cgw3Arb5e2%i~ZDv~XIH5etmrUAxFn$5^NzW-kp$Qc-sY0LRhAe@XmZ8@e-;EJ6B3`7# zTyC)p{q^gsWM8)TYRwv{XeP?LPmKE`tWhqZk-tPItJ_)JmrtpuKyhN-S*VZe=oWC; zeTw-7TZcUi{PUjskEytCS4rbBK`4eako%zRp9Y9tVBOsixNgwqZ91DljC%f_tz*>s z#(_eOhK_}%NPQEYdW76?$L1U7n+YU=4-d&Rv9kl~x+b)!)yZ65Mc^@RPC5n?HJG9)$k7pfu z9rMiCiYse38zlv1O;W8Z)WJv|ZrL+)O}3q%x#sErg}*ep-;A}W$R0y&CzE<^Gn{1P6TYCuV@aw&o_{;3CNao5ZEz8$51fEk5JqO%cip| zLxQ+C&wttrPT;`LW}b-Q?$xBK_H->%^M&5$lQET4-==r%7OFfU707O{ABetfk&y2t zr$AEoCmq(?^ZU=~oZLd|Cmj(Dy&0k$iD0fWBbQJf`Fu$ztxAApmv75iCGB%;_J|I|I1Jw4NW{KcqJ8jsgo153f4cw9w zX0YeXKLs|>Wm45TWrDQBXMDaGDy+PKmc^fm8>8WF+M+wfmPy>m`S7*o^IOzfu1=Xw z5Zv?W#@HmHrlP4Dtz z*@U0XVJ9zmv`OnIx<<9Tl^JpOwe+=%{Ae`s5Hh82-p0F3s+L-ipbxRIU9M)nPKxTI ztQ%T4MV1aPB`YhE3!o$~&MQ5Nk_&H@+d;)=pmPD)=24IHljM2r0{(R!xV$iaQ!<`X zQhque+=Qz`FT(E2StMq4Ei?3I4<71?MS{bijOQY)=BVtAC8*7?=kb%mW#--6JJN6= z3h664d{f@P;Vkp_y{q{?#1}esExxs?r^Ib*$Euo|S^@NS5GUM?4AYgk3^-pnkWs5* z3J0fRn3Zw#c`$5(B!51&yAW+`(Pm=5KcDtLk>8%fcOjoVewKfpmG)siGX6X|&&Y-S zZh!1_@k>K%^{uCjR{3er{qwh+{u*pkrL8=pk2EsK-J_9WriTr*Sy^Kyr1jXajf7?G z>$d`c*YaqE^g%0j(*byED1rvBVc9~~ebL^fv=S`$qiRWR zNmBL)6=dliZ0BJ?fLYdK2+o_ zt#HP0MuiE-j8gjBoJ4iPI_#B+3hII+vrF}r7NF5GfHQ&KR2$=KnTObW;HjFm)cFMT z+h*$C;=?LFT*0kF-rQ(t%G=Neo1IyH?3;<}*}JCjZMAIoXQ z4R&e$Fr=nQ#v6!2QVQ36;~m33lNDYgWK%R^#N4ZmlOh`786a?5BtQDjIi~;RTK$1O zg%=T>9_R$RXH|xFhyCV{yr?a4-wn+9n4Az}HXW^xy}$Hd9z^rZ%+6sN2JIp4zEh>7 z5(qi~WCOC2yTb_9j$_%t_#6b&x8!hT00Clv-|wzEu*Nf>a1Fl$$Nv(W>kA@L+;Xjw z*mmZk6-9Y`hW!@r^LwBK@5&Tgo>Q1h4K&(i-2E#@&2izMKS;=}g4E4AHaGVoYc)Fx zSWcsU>Fc(i_pOsnR+ZOeqLy`Uu1~)%2KfSRirf})`B+~$ z@4k|P4hv(!r^8@ethJRF?l;>L*m__t5~zdVHjs{^B^n`I2jVX3&!!mGmFYk%Q%)Bh zmsGx(ltS%A$jzy0%d=T`W>A?abqpe9Expxb$$n~%G|%4$GY;>7<;^Bc>-7h0?@4r$ zVKKA zZO4XR>l;x=T7x|Ot=YMK`|T^8nraDsuBP|LQ*-muL3P`u;|23MUIP`o{sD8{9Lf#i zVidKyf08qd>D)jY889yqSM@jW>9LS<3V|(ocz_0gaA)!omC&;J)dO;Y^ot8J@3e`R zFn+s1W>9yqS@Of3*rNezE9undYr7EuyRjF|nM&6rp6mSM>L=sabkU^t7{(^<;i)7? z{hHPBRHxeN2cN#qdp~gdObZ5%CRrXRpj%6w$N?{aB6K1+M+4X#7#Su`7Q46JHpqF1 ze%tK~dkeNDFFGaMfM@*y1u%V=60|^00&y^e8D$C=*??$A#;NmNs|VCf6@%j(K9H22 zi|c@CR(tO8=5*g2mAGA+ojS*0j)naMu8qB<<=9vcO7+m9|Qj) zkFYdjVUY7=loIEm-i^IvwE<~HB}iFj%|s)?hOX^-%Dmrk;q?zHhr=uUJ97WOz-T0- zTfD!BTax+Oaxjs+F_n4?N1k5jV*Lyl$hiWGp4e>BR}_3u_Iv4nt39*pi4zO{+~?)l zzFB*|8a^HPtGK%cL^A`+@h?sorMLIVa`Y1<}HG5)dY1}qiBi;Y-x_eE(mCKty9 zB+enhsFPjj8YrVQa$viOc+-cuf60B5x1-iFddCufZhp--jj!%kKFtg(05$hSQ@@Dw z5^%JFBVH{|iyxI4zrQIOn5h4QU$vbw4-1IuTss!c_ zA|M$aWi6XD|62|}kL5l=9Qhd>#fT=R!a@+9D{}s?;_VXP=Qh=^>&wz1b0^OI`JwU_ z%eM}tcQ3k359}TNmS1<0f=fU7-yXM+tEqb}kFg#|t<&{U0c`H498HB)ne0mBCqnu! zN1-jzl~JDuC-a>RuM)fl^TV=G1>nmd6m2mjUD~?!LOPTiEkt&Vn0pxMG%4M_yeu>s zUwx!hl08yB-|Rebyu37)xur%z!O&o}5Edoq9!Y?UF`+dLrW-oT_bRtQ5_d z$AI*G2>wzx&8{ai>46wfFIa16_M;8+lQW+9)Wey5HP5FlL-@ByNjH)5JykmS#nBo6jmB?tw}SoJ%32Narvn9be$z zAMve1A+xl8!~{lytbOB|(kxlNV$l?{)ZNN{zS2ZE|1!=(XJMLIiDDC}D~;o1%edL{ zVy{sQ&gLd#P^Q)+lTwmwb}9jBjVF#oKG}2_C~|$pJ7}GLwn63z_tEpdTI6)I5{)?l zn)AGUB|7A2(Krg^YP~C}g%W3b7vwTcy9^B>3|tp81Qum?N?EA-3237@JTj|v_rU!Q zRW523*?pn$14>a7VJw;jUTUmC1lGZCkyeO)WeJ51^H+(C_+w9Gu|Gu*3%}U#1^EG} zxulrUq1%W&K)jm=#tfKVq~pohbu~Em{0M5btbKc_i2O2FGTqo_@eGfSzQZ?}1)SJ^ z_k-vmaStdOQN+J?5$CYxH38})G&s&Cc%Ykzwxh=uClS3c7dRHfe)1{5w!o8jGLBM(f z{cR4nJUw~2vv=9x!PnXzzi|u2H@wrW$0m)V+j?fi1q6Y30!BmY02a0VV~IQ<-R&v$ zs*{x|hcZ>;> zd;m|&{uH~YDdy_`K6G)e?HyAbP6olA2hmPDX*PwqxSgzo!B zhKzC?=@1jCd#oVW`n76mq|TUoZXC}HF>>1xFX3DpK~ZsT*OZEY9$pg+SC|t3aHHt5 z^u*^@ydOOCbyFJfYkwTc$?$E2nns@2Q0FcdL}N}Eoz#>3tYN9zx%26}_!JBr{JaB( zIlZzr-J+RUvtKve(M8V3blG=Zyo@7KcU?reDnD;aUA}#KzJH|cdS_F2y>xxu++THc zIVVb;z;~We-EoIbD)0Dp&tLZ#2Y497eQNtJ38EcvceZWZ2RoCM+EDrXiruqqM>}!& zccb0Hx|}+&_;;iD3p4K@hu_9^qyGKUNwXI_@Bi6Yq94kg=zhi54!0)G|D<@^A))mL zVXq0~=LV}DFQiuz>sogp@QQQ$KS-83%(et}FSc22MvRr~EIEhmD|PB>-cZ{l`r{YGY>0RdqBAITc5 zw5BfB*8e+R!`S-&8LzR`?WV6Hg2vDHy7PKNO?gC02nr-2?k}Z_Q>)armz}eqchxaF|zxfm9C`=RCDwC`h6N{y5l{Q z#p!e+oy+ZXTUMSKL>L4yw` zQ`3a5JnQFDL82+WhGDKQi<$r7{aJUNL#yH zE@aHsYp`xsK`}&p1vFwx)9AqweV`$iKG>&Ac`L$Bt$I0g_df})W2?S*{o#K*wV#9k zQWCb}1t+pm5u*Q1FNjcmKT#}-^yAlsf7XtvWd93>#J?O&E}iARbpG%m6FH_`>oY|-E^)pIV!_jZalxCQ_2&^=yHJ0+O6cPxwx9OdAnz^?qrtLb)CEV zQjOPrIagKl58~vc_tode?cV0LiqC5X9{Zt%7Lu>^>coxTi|X;z>EH9V2kCZBPixsp zjc??O_R2@pP{=90SJ$+N8qB2jtE}#b#$pxezYX@6sZln)??>kR1fvkQTo$XzC> z=A}y33RshB=R#2r$7_Q0YU!{OT<7_CXA(~u@`_g3aTL`O1ckz`a@+nUR1419vRg?sDrS}ylj^vIwTUMD9bRr}~!n>xWY8)tP zVq91;u@`xDRdAuELnZ{qZY)%8%aR}%>R6(z9JvO?=i|H(A+&P**o^#{+i%@2(_VDD z9@}`q5(SZ>;uYs;CToIBp|}N}$_*qLH`M@_!idG1XNCQLER=-6q_X!DtFxGN>R( z6&~W_iF-aY2(Go~6gM=`O$zkOo`|pEp0J-vvlEh9;yI$HOk0TrGm9#2lk_Ami6@y7 zP15~DRoRnUbbydulBAmQh(*hfuQRx0cp1-3!m9SW>N<;ejR$lf+J_@H3Q!}(Ac4panQT<2)b z!pPNhvNDA{I;;Yg079T*@D)%~-4hVq9|lG0-Qe%IM4ddgv-D7SY=)xA*KBZJ$d9_;pu<|rl5v^-C%)6fQit}rtqamrby(bO5iBfXX(OH zN%=-$iAHpVP0vgA9=aTg@p#ZnnJg*k;f_#}k!y@cBogYNp4eX8^Vc&S3_`A?6`qzf z>Ua_9w)^9rOM=#Z%5WZIr-@J4T!wtpP`sT}spD}IMMI_~rmbRVf$JKk+Yxc}E}g&) zfBuTHP~+TULvLn}{SN?RK%BpuYS=dsLwU=vJr0aFl9OiePgWoj3t$L|mp2L96A=0o z$Yz~Ik-H#~hbb>%%1hYpio766nK{)&Vy0I&PY@%nm-*90GqL3!>G#GFyBmII=+%#K zt8vq_y36)sh{J;CA+hYNU}84P(~Ox$4cK$C0**PtnE^IOjxvbdgFtQ6sqZ6ErF){j zgT!=;+GHH{FK+jNaU$_~nGvfmc~e5MU`3OdS#QokG514gFc!2-M4-}%r-tnTAV%Z) znNe#Xs(~J{Mo=1|h&>3+C^t$0$G}!~b?KSW`W&h&&84*{k--SKlma64Iqlp4Gb==9 z48X3+jG;2kg553?ZT5(CX~S8f>Q%?zRP6s)+H+D9f%XzjZt*m-sCxAn#&GmOsmfq! znYyp~)TTIwIu3>!3PYthbc;CRwW$urC~yn|2S`k}BCt%92WNXYEE9-VP=SnqF=YzW zl|esyB&?$oqJ*N>FcdUJFo}5-jPfEGB~YK!$u&w{H0-6b{ zAb|iF_hmj)-98l1$Q0a6%JUUg`k0<3NyEN7U+UGz8#lUQ-lY2TaMHM;db{CnhhUHX zojI6QCS|swvKxcSeyLuY=2&?&tUMN028rob3VP9Q#O>Oy>}FMd=}x>ch&K-L(jB^$ zig;3YYE-B&F@x(d*W#3T6S5I1ag^+UN=%Te?q^gOn!oBg_DB^4mbCxPy1&T|;dy6Y zo|%kem&0C!rjulgr!IdyxB}MkYQ$*bj2KPil%+buA+TqSQJ$kljdZ=5W<7y&N@I#| z^r$zgR=5LFbtV_a3>DSlvcgqotqv!7}6pbr@@u z^ak^Ly&9^N>vaqD>KGD06DK%TrdQk4DgP6Z(J3hZrVibrjKyWN1d70(3gxn8CX_ks zX~@Gn$@3i6H%APgDYBimmRKhB%_5s&{o4d{cB>UiSqos4s-2Fyc_OM$gmj-lo`q#i z%hu|gbYdo~9&=`((V9$mf>G9rCd#wX46-_Cg4PUJgv}90W)|rT$)gd6-VIfKXCr(lmC8Oq1p2+Am zd*y@%(6g%|*w>>yRw|@hry*S@>^jtjm(U-a1>Z%ahrL52$HmHrh6qKn%1LzMePTQ( ziKz*XD41`}#XxMMYGq(BYVK6`YE<{rP~Aadx)sA70dhau6|>oV2ig4iO?Yt;#)%k2dt`$JnBeL*4H*IakG6_B{H{ zgiYs@Fj~mgfG-rN0b__GdG-u(^s4tfjBxt~SdVH@JXCKkfJ)1uQa)5_#x|+Qlra_m z0+h9iECcM1q0w``b)|0EuxTxtW=MiE`D55C&@HU=H>~IM>L<7wZ9}9VP=;jOxE~i_ z1ldVG>J*TB^a*SONcgX% z>bcxjNOj_At`pCo1ep0;1ju?pvnragkK^hf|S< z^H2|3U_AFH`Yb29oX)(GpjqC4$6syJdq&hfz%_QlS%RBO;xTNFXuYE=-OjbJ>k@`Mg`xzwL`~iU$#bQFV)$Bj&BJ*btp-e!5~wf=v&#y*pdJ=G z^^iTiBr|pUm&Oaoa|^? zTZkhyWDg@C^A)x?z)mtp`|F|+ntaRr=tjV_HbWPguO6byVrTB+bcy!GJXLvtGSJLg zFV}AYL3K?~*A-Kh6I)ffbt$|XVDq585v5@Epb`)<)7}IX6IB?GXwen2Kg5C^BF$K^ z-b|oWEoSAHbcfk#iq);1D%x80ooyUK8%1dA5ZWq&}#tTR#VMwHBG!3R*6GR4^(w_{XuUM zmTr1mU(_6T%URfMau#+6BYQvn1nmmyG_AI1fEJv45SAXW9^&7i^)UaM)?Q}rf~}dW zxbEt?)&o)wW=%X8TlaZmT_3DFd2hTFg=Oj1tzbJyPV0)aHoA2?BHJBFAg$o!6uXp1 z1i1EAHJ_DSB+q${Kx-5{4~i*yukhjxT=vyaD^<73+-9U(kMSl{c~MS^>1|A!)|2Q# z>N34uNj;lsWntA%bP(Btoi&3YKBeCloaTe9P7f(n$5f=D7S~|G@I2&GBYvFO=Yak+ z+H;DJ-@X=$mk>ALiov>d3uxbC29b&`mNL@8mytWcRX}U?J)G37&TN$@s@7fP%Pup@ z)0BoGyF0Tb#R_>nnHNj99+46L;&PyBws)!~dkkfFSuc6fybZ?gqri0#$#T(^R`o}P zL?=?-e1E>P(2=Z?YdZ>85|)7>yWYU2EAUOgWs7vH9cI5V!$-x);LW_Qbar^BX(w2Y`jR_~v82hZcj*_MU%h!Idc++(P+M{TBnUd}V;x>b^qM3c3Z)KbDINAn9bV?t z_8n1&mt7s&HPYei#yV7YatzZ+S*o)`=&T4`96}dG=;{!k!x@P(Nok=r@n_WQuCYKV(Pvx$FqJ$NN(C zct7DcaRd6Xui?$HzEOSPx2g|3tY(BCsdbY<^Mq#`qtsfDXDu1!TA1%u+>lZMBl9KpYO@41t z4ORVC_jihmJ@a)-VCq-39;P}`8pVJ~&oHVsdox372-H34nlmHu2|UIT$Q~XS@T|TF z^UU(eYU6FJUOf;^VmG>+TQNV2r_&H{o18LZUPS12Oc@W!EyGFfmZ4rf05R|2i6INQ zQ*NBd2ikIsC=kuN%l*W2CBN6%?Vs%U?7N`yJ-SuF%fdlNVN2W%-g_`2lnvEA4l7^d zJr7-+Na@ftIp)Pts+sn^=xSpQx(|}Nx|*Bz{gB#FL;HbbH6P@p)m|~qN3`NO`z>zg z%JB`3W>RT9{8=?Za*qBiZ%>B&#y0GSSq10$Qvd04{GIBzMuFyx5J}_~s3Vnf zzZm@|RToi`tiQ4UIks(k^VjfMsu1pe{8nVojuI+2p4c z8|#Q14_+uzsY}$_=&Znog}yzFw$Kl=o@ni0r%Nq?dM~0&1&QfaCn(yPmonMbODI=b zidhwI!J1_|^u#{QUQrf$;$?UTviGm>LVb0hp;^_VRB~lAs!DXRl%|E~-{gwxZ-Vz* zu@kN-^X;>oLWGQ@v+Y$2QQbM-X~7O7Whc>pju@y=0s;y1CD&f`SG(oT+is_{2mS zyeaF;Uq;AHVu|C;Nr^Wzt1c%P%AI`i0?L9B+R9cUO!KD=3p>4UR_%6U>Q)yBe66AS z`$9)Zk=0N2s~;|NZFI?I&qmuD*yzamj|jWT{da}_9zK$YV9ZzYo$Zt%mIgRkLuN(k@6++F4A+|zbGHGC;f%yGTpT-Q4%_XsWK_v|p|WKW+(f2duz&2wwRA86Rq z^8Q$To;<^=J1hRTy7R1?)E})i-~YaHj&7$WJl!ZMJV*Jnx}B5Xpd?o{Qv}0)Q(*r$ zD`LL|9YXdoy!+e9+v@$;zt#KyTf=DB(>u?=$BIJRc?NEZ$Dj3{DdU`19Q#8#_5tXe zlNE^PMq+`jrw1r<)G)2iyyc!d84oKXG#LHE(CxnqwPAuyFL^a2p!60&K6Wu}BG4*dRD+_kq? zA7h#jm0lWlTVg0rF{|G8tX!%{-@7D(cN$Z4yOoYdGecmc zG^@Tk65UMD(w^p~N2|}uUcUu3cdVSA)VJvNU$KPFqj9$&xvyjS#b(unWV(!Cb$2rO zyM613vECScHT|~trHfgy{Snj-=T@eKTUIs;7iLs;jt@4guH_^#VU}8SH>=)qNh&6{ zC$@0DS=FRPas}b>KbWp0X_*Lo)48C`P&T zmzmb5Q06moTBr8BmiX(lYAKh2UTA(BD}4n?!%8n(?8pV`5*}sR~r`bJ$>GRmN+5M5} z)$EV4i;R@%yz)<>4m77@m{#|_G=5-?^&*t$h_bf7M8+#Zw4l70hq=OO_E#J$r(?v- z3CV8HEG%bgYM7~EhgxZWjnN^J(b=Bot*dv!8s{8sX1x! zfqKOL7wEG(chV7;L5C?>0aFi0!m_`$zZE#yWrSh@t2erlSYUEWByVymMM#TC!JQrm zOHccBipeUdXk7ElxNZ+2T{?5We*sxWhUY}%rP%wcTIZ7RaCP!l*?6Rk+{sZh*y(^? zb&1PVHb=L=BM&XF`(e?1811bKwkA61)(-@hjiTC7_W2RGy5i8x5NC1TAM_uIz7iy+ zTiqb%;Qmq0){ZW>XjAZDOkTCpE=ICmty+ug1j!nqzjAu zUm+rF8rBHj-!XFS|HvVc`CA>CKVljIYm|%-u0=O>*{;s;(g8Sig}k zcYQ7qsqz>*LblLQ8?tlPhcT{)bMzfyTO-;s;IgC1y6(@(vVKq2oqtYNJC=q0LNwrR zTz7Siw^>8Bfmnvg&urAD-{<~KKQ$JFM6+Vqr$+U%(K;1#cPi3EKtrd@`&Y0zbj99h z?Xgto*;bH3%ggs?IEvdQ5vm?Vl?$=5Rl!2)nY!3vLMsu6BPMUGj_{p*LYa2wGR;zD z8qs8#=2~N&N)XlL$?vCS*%}?f?!7WOmy-tx0@;S0q5-9nTRYsTzQ?2bra>W)m~QpN z-cm1evh8$@pSjC(x;>yvuH6Kgq2CM`)s*?J2%B~c%4LQWArxXlSuWLSG)ZirsdF?W zTJ-c}wXO)aQR0xtEQl#E3%gijcmz`vnl}?^B(j}dw!=CW`)bnUdUhE@-N??CV_PDIxnWGkrfEp1sV?3#R3}^Vw;z|+@kX|btVFH*WTDWM7P{49N8L`4>eOLYD-AX z41_|SqIMxU6jY?~p0jBelZX4`FwME2kalZMGW)=8`{PcX&gB%NX3o~r8Qtw4n@wM*CucldkpmS5bnkL+V!urlB zdQJ_zdNdx&Nt`E-r&ZHDB~bG^wwSSPy*%KYmpjoJA2@o{9HOfc9wT~uu-=qq#Vd5Z z8nJ6$f#h5!=9Z~Y6=ugt9Zo~yY@Di$Ry>=7$2^Ev)+|w>@jk0VnC~8jV>z6m8svxD zPfX>ru-?f=%^RG9(M~jZ)?fr8jCW{(M5X2sJL%Q<<-^J@Q0EaC7-}&YE+#_ zmQS>YhBz$V0mYnJRZT=A(UGa!^y*H?Ql743sTQ@nAf>JvAJy)}h0#@ZE!EvLbzGM{ z?x8=-s=4dwf!}WpJ|A3lYoYrTpcnTyy^%^xp+p}f)tAM~;C`CS4v^j74+a1{+)!-b z;^x5j7J5%E2cj<9gSdaeGuLBO|My>``ZYuk;8Q7J9|L)394%La{hAK>T~>%M`(O1c z&q~&6sK&E|p(^EJ+Jl2Qi=AMc>BDqN* zS-IMYPFf*@hkt7gD?7D*LB73Fu~ctK7?irs3SlsbQ1G%@<`FE#;n@@&4Q*+NTd%R;L?<~nX+uEA^wFb{s9^PBE-K)#V-}=xovO ze3E;1_)O?|u5$*hsqYNhbs8T(o1~5^O?Hl|u%}t=395(eqs)Jn=BzCP{JdoZ&#MsI zsGZ_;wL8$&o{g>+B&OR}V7{zd+vvxvo$7GjpvkHgT?rD?tv)zR{fptPcc{u>Z#R~^ zeg?01a;j2_#L^w+N~K)&G)L)aYQohxo45L_AN}5;@g01t8b)4@OpP$?t9g+9JCx`v zk7w}n6uj%?INm$ktvS~w`tj*+T*Q(Yxf>a&MMgkky44>W0w+2g_kd#sI6z{$HGnVB z*ef;cpU3;hg7zxZg~VEQQ7CMmi;)@{@eQ4Id{qDyZy?rUgK%>uQXYzg?Q5{B9+Va3 zA$3tWn6!4CDUQ1}`7HGaL$5vvHCC(sU9H2~6VE8r;fvLb^dKMGVAeHYy;I|h3+n?a z&z#ewYXonD_X4-B$mj8+A#;P0`8LaBz6;UA(8lC`Gv@>(pua-ko?Zrg6Hk@m( z$H-A{UUDR5XxI&LsyiaQ#wwSae=%>l9yJqPd1pRk{}p4EZa<04@!nHngT`yKfLKoP z#wEq$Sa=SBSh{!K$+WvuK%yItw;?Ex^}tZ-?GQjV#?#3SC@C_sRDrj{Le@r7A+gEP zD zbl^R{3a(x`;MdHko#Aw3uc8uPhK>v*rsGm_oJUicfy=p+WWUo_w4Ni!A^(P!{emW6 zu`(0~4ROypjwP=|$Fe(|-)E6b8^P{Kgw!4>WG$N`W7+hcrY^{Jle~t#2b4<< z@3Msx@VG11us5S*t~>(M6F#ObJSn5>%yzOfTaC1H9Ksw$ILRTL$oF5V z433xQ!!K1ga}cT<^04=1=wq+q{y1oTttHP<>v)d3)g7DgY-6I7b-9vN$J;9MIJ0|3 zH^eckRup+={}ewm$t%1htuHh_%zOw5zt~955kv%%qRjVSh_*i0_+3O-YyLU)B)(%k zUf!_|lNi2%t((@j5HLqoAzZoEtxqt+fOmG;HbY(G;-{;8Ml)00ev)k0XuRgfhF^~L zC1gqOSDyE4#~bt*f*ymi_XsIa-KV-1V*ilP9P76vtNE^1dsYir0iDgIQAfc9Vv(omSOJJ^ap8n!iVJ5>0hyz8w?^`kjLL)0MJ?@niEEum!xB z6(-)Nfho~kUQE%Hhz0TBW7aNoMvH8yu^poYNKCf};o>Vb!_Cf(VS6wrJHn(+IZc-4 zVe+5juB*JA#avx>!i$_bvPkZu%6Az|<@GY3;rXk)@VdY4_1** zbp|J>?dvfERC#e|JJ8>bRdd=>bFE>^%p=Q2>YO&qQ znfn6?-vVK~8>|mcMB2Biv~TmLefts8&i_N1BrD$G?|`>D)vLX!?p+g(m6-0 zgVcr|Mh@&pz%%`KQkQc@ym)jrrw^fWGd3qBUSimLu_Cu0#r}vH+RCQ_)AVp8V4a8# zmXFOdkNp@qo&M%+>$BVz&NIvEkMLM;y)Ji>jKpk;y~D&DIqHmm)cIl`kLCmyF;{t| ziRp0^tD$Ilu>w!Q!LIcF`R-L6?!Jd4w#!?Px$Aq%^G*m|0?gH4E!c)mK?>7oKO z5MCcp&n6PzV`BHLmh?RBB-LRob-DxgR93Y^aqz7UXUQVxbfY9cUj7sZzctbEOj2XV z3F>#U6EMZ`Om#fd9M5#c`~OG+_vi+{u}`IP)Smn~*&3^#*VIE!_VAte!R}b_0yj9g z@<^kvAAW&reTnPmM3ZX$UsQW{GkIdeOwMo!GaF@Y*6-)?XH|I;eK3#Q%M*eZ(E|U% z-k0Eg$@9JpZ!MmvSU*(uqniGvzW6B;#$8R7Wy)eOTG;0ug$%LMP? zh}4^JBmM0>xUu2l%8Vfnea8t+3CYj`87ki_^R5$`8dgU4?fxIx)O9}F{BEGi-*5Cg zm&cU%G<5*J2d#kw=k|ThtzPp1a?7XUYak+rvR>zAeT4#?^`6SO6-O*xndg5vC6W^2 zGKp(B(fF*RMdWgn=J?Qwm>TvXs)8?XA=Nlyae~n-59VeC>azR?@cZZd_S;ao5OYS#N&q6vmP2|0n+XkGZz<@^PhIk4AcN$rS6=pB_o+$Ani< zZhdXYCF3?IPwHI7d{ti)pK;YOYQPs}Zdqhr1r67mhZ1McN#j=>eUf;ubo!ByF<#8OGO;+lKW*~!Xx4YJ}WwMHqG>r+avK71s77D1oy zl|F|X=ySM{K9#J`;iKsD!%_69Qu<`dU%mQA2pFJLadkNby8NVc`LTg6KQ_{31nctS zQFQtDQFOV722JSFO8)Y7Dftctei=gb&lE+yqsq|@2j>?WrqAR@h~(DYD9O>YoJZpkP%ffz~JUPML)8!2a%*yM-nDouB@eym8N8+`emgz zkhRG08<{g|*d38m>^y?zTgAJiv5iUNJ(4@Mk#N3}jirqdNE~+7GmS#NKWfMiUWjkY zpb6!L55)0073Fan@|~gb9Yemoo`o`>iOgdI)XMUg2uXn%;JjrW&% z!0u`|ZECjv+5HH;x;beYxCw@~3%oiTr#zmHJho8wZt2!D=iP~g$ZU}=(}+spbCO;l zq*s@~bV_=uuG%SNFN5sXN_Lw@vfCa(_DKyCZ`V+9NA?+zU8ZEmJ=yC0i{(dY7r&Ryt?lOR%c%4xAGnz^@QbU z)!qx8UvGa~q(bkbs}~R(i4}%=CkgH(oP%=dtI7pT=5o08IpF1OB`TeMD4qTgJ0Fj( z7pON)UFaB^J%exzb^y0%YcP`FTMGkKrY>@LFH$SiwGM$jOVm0%U>%DFN4Yo-3-S^C z+F&Dbu6%uP^*SfgIwj>|hrpgYoD)rFwQ~0=*0%EPIvaA=S)G}}*|-_>Tg~Oa+hw#y z8|V+t!?bF*!8K1SGx0Pgni?+*+sBY6#R%!vSOb?jYcUZR0_N3*dqCjt{sRK;y>Cmz zCpc%#s@FTZuUDDb;1D+ak<3h#nK{9E2Wf!!rI$C%%kf@bZZqU#mS{@6Fk}zW`6`cY zO~U$#ej8L&owZV#8{7|D8GDFQ)*~`f&07KZ*wc0I+*D8cU6Fj2DBxvVzFXV~=(xg9 zeMBy9S`rnHBTV@*B_*fdpOo`v137pLd>mb*Tg>|_+^zHh{zumS+4PApxL*{EZ4P`?)Y>Jr^PMVBuSUkm|0F8_qM9>i1Kay7VI&y{Cm-c)B}>iL{ahUeyz)L-j4l zV`3S+R|)S^O8ysZE`fwA)L^^S(RQmmqQqx>vFCIi*JV%ZYDjKspTSiLqVZ*uGf^@T zlDUP%#WgdfE>$wxXX#1rLdg{^y2$gkBYZ-Q#0JBE!ig&MZ-_j~9lH&_TfLh1g`@&! zqlzXDph%S-q2(M2x|BykEFraSREVY*n@LU$u)`_EpTjfL%Q1S?n}0{)SEDFs6&iP< zr_1Chi_3NYdn(ez99zCOu$MF~S?+3BZbpD#aiUiP@mD1U`y7@516!Ce?+BmDS2L0PXb(aEMv@`{q$x*!TA5d@g zw)_2q(~^$8@OX>4zr15o$7S9I|TMTWIiIsBsqSV2A-1U0%K~#@bh<-W_gw~r68P3bvm*JrAx!ls(f?-OjJZ|uv)s%QX z-pLBDbw9*`FC>FP>K1EV;{mryUcAz)1DZNHR~|B~b<+H&o2HYm1|eJyQNXtUgd9d z2OFkkxKyV^0WMyTH!UeS|?2P zUS9q#a~iD`^m7|@F1gk_Ztt>K)$^;>9*cF2E|*OK>sr^hO)l2(4w}v+_bQC{)~9lA z_?3Y##9fC4r~OY}Ea5=6y+=^=g`a1uALLkL&lC z=;q4t34P2~)P)~-b*R^X&rv|8N~?n(`Q7`d!Zpa)C(fi<$x{1^JLs3@{dh;Syq^Fm zDIt}OGk9_Vf%XkLfBmObEMVWL^Jxs|xD2niPK%UBjEH>`k>h%9)cMBG8_D1JsY{ho z<@(AjuMA1awKq63=FbhK@k)@G?$h0QA7We4ev2 z-O8@FI)qz=x@V>H3+b*ypHg0-zA4aJxAGvnh5WV86a4kq-uzlqrtmB8)rSI{wy-^U zPfxGj$&Z5W()qn=dNoYt`)DSheYbwJZ?HBK1>L;&5aMpm^(?={H%C56&XEn8|8@=t z=e_L1TwOd~rArrnvU$&+(@5%5BntYt-(O3%*z9BPxvS`%tx43+KJ`_}0-5 z*2gV>!#baWGc?1#U&lrNsS*1DxwywG(B=DeQmj(c(g$@MsbIk}lp5`u-{(0pIfK8Sb!M|Wtm}|;p5K^@q3#Jownxb zlGMfwyQh%XF}?GqhWrFloI4D=0?mA>e|o%Iug;;3vIK=rdlZdb6WkuTxhg zcJWz!3T#fzxjjznMx}g{UHfUYqFkK+jY`QTyY{m_TjAYucn4U~xrYXaqDAc{PQ1yS z>Jw!@N6ut7z>{S^&jF3MMxuJz61_T~tXZ9dd6Zt=43>RCm-D3gM9AgR%R?wvv&3I? zerj#M2=VqyusL2X?cbF2dFM2iVDECDzZl|2P2lc+EITbBg3gy^!HX};=JGE`^@^VY z>~a!Q1C9CGT2xm|b{p)sHF04Fj2o?8=+#_@!u9teuI$!YY>2jTLSDm}Fw}3!xO%=#SxFc{yyY$ysDUxf+S{G3r5jAP4_ymLOpi%pTNk5;S&ziSrnP~7 zYhZjcTyF+~PHo;Ob=yQgxgD1!DVOb_w*+6{V^z&aMLJ%xp+Umm(49xDODLfB4o9Kx zP-s6C0*UGP#$r50i3`aq@Rplbv-VCWZV#uGtpthb+}_Gd&Dy&hrk*YnNK98IhGIGt zdj(m$4EkPr4h$U;BeEnKnnA<*83~0gRBZ^EFpV-{sN``&DPX zVu-t`pmw9KrBZDRy0xu9)wbrcwgGxd;rsABGH03Y2jX`Lmr-85?5(=Z%Q>52Sp+6> z`WlaC7Om9ds$@bzbs3&YhOfgXiQB=4uiO=^J7789#Scm-5}@C%@X|rK9ih5 zCTRfyo#b@@2E6ZSI%k9BJ>gr?*M)axgGV%$BHg=+6{1oaN6!dM9s z(`BKAcn(*W62`!EOi_bU6z9k3Q18Q)6OZ^_u zoiVWSIQyc1Bz>#lI9ulrJ@9A7+1q)X{ZH~Z`xcL0|}QODVVJ6`VFV4QvH zXyfdGBaO4IboX+RyeQmHzBk^j4Ze|bv_UPd6{;!bM~T1d+z9Q1SjgLNa~dU1s1({s z=g$O)!yqghyHHY4HDDscL|1T z?{ioNxGW$sU9sHnuncrrKw`RLdB9;A)!YwQ*Z3!;Q}wEEsm|b4uj*vRwFvGe$%ZurUFjmdDzj89Es^cA z-vH|aB)AQXBV>?qaX&O`<{qk7^&yhHZ+4xM28xnKXnrZ)EWcd|n9l;%y8?u~r-^;s zk-QhUni%rjw}ahRinoL1R(-<1*7Yid)k!IYTjM?UP6|N&6o_F!62pMT46~9LW;JHG zCW+yi#ti$C81^+_;5wO)Js&;`@Q_+C{X>^0G}V{odZ~~GXE7fV?paLiMrH+^gNxbl z;Up^dMl>;0Q+p$_bKK$elQ($Y8$It$p7&SxVuDrz~g_=^FHKx_juliJ?|r) zcdvY)IcUO&L7I?8#iII*E|ncBJ9p^Z5r=bVmcAIzI-U@s1ec7T6ke%&;)L|E>83b|-Sg8Ik$W}!Z(;v~>^{ftr|GYg`yGdBP2gs++lJl# z>`rPjxQQte?4HN&26lI{dq2BRG3P(n{jLclPs@ORGrRYZ8x`-wK))uF-7L6|WbMu} z#T88<;e)22T$?vGJzez5hyR6U9JgQ*#eJydZ7oglQOkqmo>(}p&=ltuBG$Ks;0Y8V z7qf~$d8G)Hmc{U&*b4MBTS40R63}O|yS3!J5>p&50gqP7{Oo?z8g6M@XnVDFo)s03 zvAd7mpU5@E!Aj`7r^7Wg=Xr_UnVk^p#GY{H^oGo{*}an8JK24K-4EIQmE9hF^81+L zxIT!rtk0Z2ZMBQ~pzI#%vxVpf*!_XsNME?6eUWabzOc{iz9ajli*v{|#m2snu$@Eq z_J!tM`rXztA&%=0Y4Zkvo?v%1yZHkl%^C>K%>!Z8@y9^I6m~y9=G9|NQ8_q$uqiGa zJT`r!xQZ(IMomgPG#ETr4M8c~F@*WqHHRWc#}4g0)D*3Uf%4ffQ2xp8++*R+95IK| zJ#z#?Z)NvMc0XqK#}R{@Y!vAu@f=*HHMj)Y?jDJfdY;|Cu^TxK{HL<}!ErAhM{(J2 zje=G~MsZoN|7Uimj)vQ04Ct-cJz)&;e$rT!<~3t$#zw_|*gtk0LUSi^IZi_A_fFeNMi_DZ%l^ei--Q6sk$T17p?v4kSz*Ewtozdutl*(ug$HTi# zfwuBneZqjrQMB2U;XrI$Wh$9LM7bJ$`+5kj>r zb2TALv=pm3Y%`&ygf3uoyFzOjJ;A6@tY`Elqav}1(bo!H$|!6AwGvlx>dg$~p;T<+ zuo44#C>6IbiZg02o?_0v%-KP_z-X94FEQs>LKdNSq^&t#C-DL2VYac%h>8B& zNYjAU6WT>cXLJpR4G^Y=6z(uk3kHY~hdpJW77U=VU==NI-Y`BhB4UUrWt0|>sEf9e zP|HA<08k%B$1@r#1~58Dp+Ow)GKGdPx>KQJne%x@Bg8}w`&yw%8ge9pnL(fvn6n+D zkzzXQ*+HQhoQIx-Fut9{Xo5m>nR6y{ju!J6Eh5xfj1i|XTEk&u#WI*lTpPSQ*iK9m z=dhHg3E{nAwaocCA&bx|=KPo9yoix7C0fs%F;jA0!cyYqAQMuq;IQ$85O$@8)^W0l zZ;nk8S25>Vit}pbyjXEw%V9e?Y?`=<(ftbD%$(0K=QOdK!(K7b7t9d%vIXl1r4o9Q z(dWcDK$|IEW6qyUBZT*`e8^IALPjV;=o1br3L$K+_>RN65;{(sD-Ltma256ohfP*t z63u5Rb49(hE{83kl^M`BMkkAO9a8QJy%56f-V6@=l8{9xro%4bFnWzeqA7E>34`+# zkS>_l=KvgSbYuD z&oV+0Mr<=eSQF{|Z8Lec_i>P;ml&e#2Pr-@AQ5^OcLKdOXj6P+wUL4Oz zqylXeQ#oGq)RI)pqGxgHeF#Meoy?p=2u&4Nh-yX?3C$2!ij^F1Zt9{`oc1}7QME!B zGUsYS5khMjT|~$dTf}9|c}ePxsW?$_6{9B=+RB`75V8ne&FEi@t`XNVN=XCSCT`+* zZPGfV;cUQ84jV)WVYeITKS!o5qaONt@d%??3O#OUMHyllp>c%X?gV#2U~zYM zhrr^&AuJAy!)@NXtGoN-tNLoIe)CLEcR$@dy*p3s&Q4$I6lmin=Qu_G?#A83w)5u~ zpk%YSS!68eiD`<}i-i|pWP_~iJJg9$qx;F&UmZVGw=R}j=eDkAZ2IlURjd#e+zsLX zATP!k)RH#levD`hS6#0AOcCwSeItUs7LXOd;(5>V76lqQ+I9JyAH5MPoq!-f>uBAW zJ9oIlCSAk%D84>$L?CS({Y03i^zKnksMiL!xMoNqR*U1Y+&gnFH?|wgkLWk&V}^IE z>hR^~t!M^9G>e;D@8~(ASo9cc!j1kTzsnpJJZaHL0>U3SA%VE;Tz`9y80r${+@;^} zgKpDqX3TnOGy<_|9>=$}FWYBAZ+8@pJGTbk8?$1riW#5GHhKA9q5`LvKZLG6b#rkw z1>MUDlmzSnj%y)NH6=8w*0IR+Fj7r30i{2R0>+MX(B*%3TQw%CWR z3i5U6fT!1$3VSSG6>y7#92PQlKyTGKnXS!l<$Hk(L8?XyH)I!jdGz7dc=L>(7%DZ` z@iVM$>F>g;UL}3F>)1K@c;iCx`nov_;a8xtBOII?2dN=5Y0fKeeNI|Y71Wae9e?$o zI=Icg;p;oeZGDbK5@VUpd~-1yeS7s&W2b`HXSRFzF%9wyG-N}=^Hq^4k5a{}slg4_ zQ4&68!G@tazv;dNC{~!S#Q~S4ER1;OO3-*J?60LtbaLk5o3GT(3Mu_7nS7^RMTtuqu zScjM{5zo-3)5ty}mm!dCb$8X)CkuGWU{}g*bk&1j?*r#&qIqfXtF_hnb6tvRiR7+3 z549Z^tf!o%zE(vqFIb`pW#!8?@5J1gxfJYJ7u{5Y*CcUpm|K!QrfZ;o-2rWHjw>og z4-usCB|e$&SJVIWU{CI;e`!0e^>HNi1jGn>kOL)f9>~Hi-Eq&|TMK1nTv`Y2I8*1Q zT@}|CF5#0emg8x->jJWW% z&8TJ`mB2+^r<2Z{1)c%)HssJrS8w;LfaCGt8K!swgIY=JNSft2u=%e>I=|yiTR)4%=U&(b6}GFs62Q09{bN<5sj; zodfdUw@s!|`L~J%K#EVgB9Ll4tKxLMb$*p=ahC;uMmZwqu1sRuYoqr~xa|t5&&{^y z<3sRc^o!Kzd`Vh?UK`C%qPv)d7#5jUmj0~nmvqI4h-B1@2->ED+(j^9L}r}DzkP&> zDsV#^xVrBOQ@8^mg$vw&1Ad0%-;(R)V$FXLNv(!6Y~-YoL20wmm#)M2oO7V1n-a5C zwz`?0H@wjnR~$U9I?TE#CxWp_H8x^#dvX}Y6eqx!m!~9e@(IIaSNCV%RecS&(WNfN zo4~D=Z2r`h)`;Ec$h_3SXgGl-h!?u#vtvu7{B7xBM-UGlsE-_%pBz~5F)n}|c?gHJ zSq^;CvB2nl&B4K|dp&yuLKRQKu3+eomQ+60| zhgrMUPEpr)Il~)jSzA`Uv`?P8)lK-jw8%2tLHG`Xs9|!1tm#>{U%KM%6{t!!rQMm* z5Gz{n0C?hm(?JE8YEBH*s)!XCNGQt?o0kptYXhLd9+Ue|Cq>Worg>MnuJzx(iU-nD z5+vL;^UNt~x z8V*)383i0uZ)TVhyB{+f*%W_8Jf1h~Tv)2a5tdXHWN#6M3%bc;ZPhqo!tXe;o0ESo zRX7MRKDgFnzqI>NB}`!vSa6H4Wl%KmBOgcatY|=wqOJuPdnelir}z~8Sujco9OR%R znq~gQUH0wJ^)ZG)1G(l-RKzLxUazq8eZn3ZF5d`Qhy5aaR2OzwwiVoM-wx3aqt;J= zu-OUbDr$f_1@)$iX;;J54OKOeee~}y43D|Ts+u7VRf0Q~PYQu{xmW1Z=0oqodif2& zfQ*N=4CrA^Y)UnWNBO#XoS zN8^-;ECqvrmRyJXcr()NFL$+;+shqq=^4Z?KPV4=dM`AvFC-AeXmmcT=p)jtd+Xmo z>!BET%9;TeV{e7T41VnZXErPHDXX=(Y9_l4^I05KOa<%D>D;rCJ7}Iv1EO1%!-P{_ zU<+k7Zt|APqsiA(^L9J)8QBiX8l_1m0~PbBvb<7{2Ebmox;x_1+R;JQK_xTzTdha> z0r8AB>=QQoy@%I_?ad;KoYV2J2(IUAPud@I)>~DDDHLYJ_lOtuC z)CUQ}D6erjWvE7lG+9n)uY)=Cb1E>QkK)!|SL5tdj;W>}a*&dib*Y`%aAE}fnhq6Q z;@QCpF1hSrd)42%2aszq^Q?T#Ukqx1~2`8z^s8jP_97<`EGgwF~jg(MCAU=#b-Jli7 z6yDUKnQ!;YA&4^C=z0d?aCi8%R}u7`#V<{uEX61x8~RLMg`z3hmU+y`5|SA5Fdo`d z5a%}ZN0c4poJ%n5S6vql@n;Zc8))RZ#bG#%KYVUw^wyq6XJ={Uvo6PQn0%)Xt%kQGbVpejqe0l%tzl5qzj_e(*`^X%f}9OU5LXD}QBMOcPh7L%nqw;c#&Ex0c@i(jkl^ZNw`g=2togB`j{zZR|D) z#aVIN`JJc>$-BCIJ-_MCJ00YbI%C}tlZ(G}j_p6wpZmRv03~}4avi)Gg++h*{bYR0 z369u#00bb?9TbW^ocNpKTn9l)Ik?|oDD;wpMkBs5+GoTpsbxm+s)JbBR%K1ukVP_s zEKOQsRM1=6k1n6>U|OQzSEuD+tWzCuKhk~xY|y3Oq+6~5SM0vCWtgsCZ?IlHeu2&2 z0BC)|4VgM4Ah=1owBlQ<*kb3c;Ly2vUndooy9%Z(JkcZsKNPe|g#m5S#gEAG;7>$o z$+b)~c%Cw67no6-H))L2OqY3{l4nntQPYETI*a>fwaD=)DmhXIXm$X2o^}oSh%W{G zD$IUTUC4e_x|FTj-yg?0Qs;_`qQn`CWu)?;I3k(!9}0%4NGHU^BNxV!6Lb**k=}s1 zwD;c$7q!do#2OUDM{YgjN-6J4yoaTPzsH_bwVWN%t{@3W) z3>Tb5H@(2^T}kKJ(wCbga&d~|qCYvI9({ZUjlcfX(>AK#%?j-JFGywJ$0B(jjfb+z znhJ)#)*AM;7`U^_@>BZWX6(P4LXQ+f7Hfd{4@2ZV<%WV zAKOW%Q!M7Lawn#YVuial9+x@ zoAqk4X3#Y3N^f}5X%J#g_jk5_^f_acgl+DUmGxS%PQH+i6)-hWG=LbztKLa5C=!-u zyE65x+R34IaAeFHk@beZmXI>aNNWB{9VnpWYK12~^%i+tOk0o4kbS$eGlw3XC5{s7 zGD{$)xOPH4vDjp|TQUjxj>_uMDfxnOnEBozM!X!CjZ5)#)|<%5aGS_V!;VX=$PUGB z64zl6cFf0mTaR0F0Z)zu5@?#$tmh)4+B&ANe5QW1-_L3l4oMP^K=#Vi)r;7rd#t$7 zYN%*7D72Y-v8slIiYvyD^IbPpMPcs~beZukbJ36AOq1~z|NPuQi;ThYxNcuaM=wzE zmNFa0_Bdx>AzV1iBt@-JVyT>b6k4>X62gJ-GgnuPJ!M3xAhqogEm8l^er= zMcYZMwR;)Btf{f z&G}?v)`menlaM+IhkDV7Ts88{5UiX!VJ^>p8aqZ|dsGE1h>jiXePuX=(E6 zMrfo-P4775f`65M2&vKF$s>I-U-NOs8K}jv7NcF6CP&+=TX}jL26Wf&?VUd#U_(}7 zdci2PHke)?Wj-~J>bC(L+8T4}4OLcMH&PJJea$PWTH-qRGDT_G1j%1fYZ&~=J$c>q zhcxPp_;;a2oaYj04Z2ZcYJ1E)$9dZ<+M3>D)^_0ulHp#_MyYX3)9Mm`UY=bOnVXRC z^4FGW7uTDtI;E$v^24E3YX;e=JZ9GTs^!PYv?IzwwAHtfjqF}cO<>TjT}>ATH)15r zw^1RC9U+tt%<(@zsk?qJ4vm1xgJF(FlASh>PbL0jk-qPITE++H%u>{9sqf3iU$?0h z*f4cni8u&Kz6!^OGSbg{;WVdOzp3`-w9%>jL>1N2@B|KnMtYSj( z>tnk)s33h`Nm6?`PJp*J1kKAtom3|&UN$KkHQ_HP@E2#sXmxeAyL~VW$ysmNr&?+< zJDe3-CoSD~wXC7Jm$6ZeWBR4>^qX>3()y+LX=v{tQRCq-Ya9#HW$!9;EUl$_xvboV zzcx-4O0Shf^+T@=nN?QanV@L!l7fnvvp;|{$D@Of?KDnQibqP=IcT?xMcD!(VzCpbz%2hF(C(|Ph`(EM93-swISF4|>V2**b^71tz?K@0LN6B|% zYavxBdDyW{l3h2=CRKEvg0a7ZnFWbgN;qLU5L#v0+5S$8pQSj)5ZAelh{!VS@Zz7# zjul6)Z6rg@Jd>|hmi@>qxceA;lQzET6`*vL zKcF9)wja3|fL;Tm|NE6*5ib__b%Zt>u?^I*a+|3aVXMmKI3u4hQ&)a`0tvk-85d~J zO^pA^GJh&{yhjSOV3)0#nv+|i>=Km$tk@nWk0$IpYdxxF44lk67@|ALDOs^bxFsiy z`?hz{z*X31uJx2~S^bWZXz8jwgQhJ)%XZf(g-4rqt6>T;3uGOzUM=6^{;-h>Iy3~+ zbughxdrIpOG;N-yYp525Jxl#!n^Sv`(yM8BDU1L0_><-|^J8RD5rIMA*T19Wjnw zT+?pLVmN~uvG!JI&ak#DcaKTD?ZuTtH#Y4Yq^LQ3CaK!4=urBSI-kNk;hu5K*C}kM zD+KdW_uY6ZqgbYcsB!kIgqiX$Km zudas0LsPB^kjqSHXQwS7&#|;r-Dm(s#~af=9sQ0uw0{ESg8u}R^0A<-2*PYoR*c7A zCdZ?jhYDs6r(z`kMrCUdq3U8bnVMSuXx#Dg_*E~3cDr900O0~ER6!ttrF48`68(`? zH9$Ra##Zq;wrINwsM9Q+@cBs1ktWw%;q3GXKP~Np9WD!-Rh^$-mfgO+^Ca^fdZSqF zC1=OF;5;meHMco>+tUIXGXQRh1*FdT=8RDQXPGHz8~e~JoES)xN$NM&g>yTQNFu8O znHt4xvaahf4gVFu!R;A~EeG6(c)B3yd+^r?q7X@Ir(ZwT^>~KQ$+Rh&UG^WdS@;`c zR+sT}E$vlX^SRqAfGN(f1UyGWHk?g5)@d|(KYFJ5rH)^j6LiQ_PGUb{+z~#O=tWeV z)!jrgG63X12p86q^u96?#$Y5x#*R*#P(tn zJnr}oCBM8$J}8R=N`BwiF^>NJqy~CZF3skN07^1pC{@gTUI=KYX1fW+dD2z7sltDa zWvxU9s;5mxANpzX*(@6ov^kz-lQ^_9E$g~AAX>*|{2C*WMu1Y*0^G8@e?zF|jf ziJ-?RSF%WjU54sSVzr_4!freCG!NzDRXTlEYiJEBnPv&Vv2O4*FFo(Lc~v~zr&`0a zUH8-E9nQ_dG*?nR+fWIBVu{mFVCpt!)a&FAl&7aH4POG?kFPII%pN~x>;~n8wh&>6`nMzaL7Ow?etTM)SCE!dX^L zQ+d)^K2#9Z*QUD*T|3xto66-STP!GV=A@R#Gj;^^F`~8(k3C<2{ZA~=`(aU^qj?8! z)}#;AuKT$d*8Ifky&`@rFr0o>o}-yK%jTDf{l^^H2&7@HfgkQw|2k6Th|rF%d-%VO zVhsL;T0;-=R2i?Sxt%#xpnm2G@1W8RW68(l*kBV59E?)Eu{Gy=REZf)@^ zLfXH;w0pIBBOip9|LP2X-7(?ak_xu~U{Yz5s{9|VfGXGjCI#+{COs$p2z zf9LZ%EBclgKv%b^r!0dq?0e$4YFU^|28XXOX!RE$$6X2T73Mf|T?1%%B0#< zI0=g{XyP9|@I3~PCky45+i9d9KYS3bsdvd6u^lP(qmrRsd+= zAFX`mt6&+s&cD(9r$9m(y0D*A-q1ih0dbqEEAMBPZCi*1{pPOG1avLWeY<6s|M{+e zlR1v=omae70hXF+sko!@gj632x)avN4f1XOI_z+N&((d;zyo8ix*nQBU(rzHKvnAa3t2Jll4}1sCjU3 z%Tzk?$=uecNNn_e^`2kxVA9e|9HVB&mfhkv+XGTSNGYY z_nXd+MaooyG{7%}ySH#%EIR=yCYN8!mSLah`ryHQAMcQB*ejk~1@%vFKRUFm8>LSf zW!RSQL+XX#S>!+aX_?yjEg4x)P6i#_rELwxB7`)vRj*sTJW3;+ zwtLSb?I1>Dm?00|3ZEBJSx;g6!vw5tDLOy&72V0#uoxlZ8e(BWUKZc+1r$XW;GmSC!mX3}=d{h)(g(ncVa9>eVy&9|HQ(PRDDs~6K+&s7rruA? zi_Euj7@t1ytdtX?j~7>GoNNP5k`%5~TxYMGyl^)Ix@V9dv~|?;ycLXSUkUIq%<~4# zsuwM4k?TF%eO z!+~b3LHp8^A9rU>I$irGOF^8N2qUOFF_Bm4N~%vM&R}m@`#O(~PO8Nvt!vpC;?#5I zu)bdr+Q#q^OZg$k#8g%@x_sSIuN6w~n z15l9}_Mkn!MQEZ=8=^Z>L(x%l1VE_TUG|ipFXDCB=P+H%zCo()d|rBa%~JXIlx1v?aen( zGZ5i`eMVYKQ78pv4ff|Pio$DwV!^n03VYKrEr104u+ka2-#j`k$6{g4FE%2+k3-^( z4wGWI-oJm%Z0Cr>S?pXTn_t?5ho<7RWIo?T&&kgdmCN1_0cZ&rCQfqYOJSOR_o->xgHFxd$eFbXJhu` zU)d6rV(TZJZml=o^h~4hO>Ox&QCJD}EL}p|r^|#T!tttE=E37$gnz6f+n_wXA;HV* z;kmdIo#igi^^AU6=d5dQEZYabWZ2p1H^Il}MgowhSn}7r5~iFhWX=ESf%-=ef=G!Pxts$*TNoi+K;Y<{j^YFVxBEQ zb&=xw(oG4=L!f7KpI<8}E68{2VY7JeLmKNXInBBD3jDdtm0c*>G1rz~=yTV2y03Eb zOUnwBT;bYkqW=xzD@u9z3!Hi9{=k{m^;cLTFfhA|C8JZ(wPBpiZzlbvWo>0<(+c_t z|BouaKgQevc1T(N1-3qaxWZXGVrP!I^U>j5bk*9;J!?=n1J=)p z0QTCLv;Q{e8CBQIZ=UR#L&dvPyQ}K+yIMxQzWU_XT(Utb($pz-Cl@V$%;31jjYICi zDQ|R8H`GNCEcace@jZOj4t4pjTpZj<({VJL2c31!D(bEBXlFv- z!tO=b`4I6@!Eh_)2;sEC>IMPIqxs-J52dAz*Dn$4ehk*;YW@Do;{e!fBrx5>nUWv6 z_UOcwq3X1V`d=KQ^qy_1OZMlQQKgPXwH|62=L5AL*oRNiIkhnfzkV|r2H#>fkEr=R z@Q%WKKOIZeFp)^ir30TAmG2?I0wlGXBFdoaou`fda4`TtK615 z@`wSEIVVrbWKSFWjq#d~d8)dmd)Nb&%oDMOXMS3ib%uQR-PQHvhFV04M+J%?K8+g=Z5SjnaVBnS7qbv9vxNYIK7bc@q1)GOqQL9w1jUdyux}#F`P+x$OySz1#+#pYmo^{dM>G*psH`++Dy!>v%Ur zm|a_>k1!~7&%6y@w+Y1$df@}Ct+RWI>XZT*odx3Pka1mRtF`HJKr*g_CWt(8>Uwg5 zm@|-vUtI%LMH0Y(sM{#{D~!;(*Q+0~HMbvzeMhaK*%RpXU;qI*Sf_QzxjOafVAv*C zCg!H;U_2y%>ms-z_PP!0@*I%Gos28^G#^>xF%pQ&aGu_?^k!o|HRadw?{C3ZzBZLwwuR1JrwJN##I;6>Re7ryhS7UTdTlz`2tLRGcF_~L(_5;rfVz3PWslCCAD>& zr$s`H_Ce>Da2yS_by#P=Sa6%Y{0!im#Xul$FLmPYr=r61tL;qZh$JL0XX8?)9VnOU zX_fuM2Olu@z4|}~e+s=Rc4DXC^5kkw?Ab0f)L_lsLNd6%aPSg%GwnhW$I+US4+7EKh62LAkoEW58T4^cnkEea zMkiNkIe7G&lLFG1CHvQLqUq5!n7GsDv^Ci**3U^PZ4SPxNN?}x#5vsbz6BMitxKU0 zm88ZT?pBxOq9UqEm)bNdjl*6x=J;GtIOe8icr=^rSJj@v>es4mXf}9gX}L;ol7ewS zx(~Y6D5_`3YtSt)j07Gt>0!)M8{kXgXNk05Ox(06SDVxG5WlEb#X@A!dRs$+dpmWr|#$w@KmIDTw4wIuOSq5~~O64ZLDvYA!6;>%3o zEDZ?-mM5G3w(m+!%1KJ-TaxFmYPf|umYwqwq3>kbtk`g?D#uSV(6=PRuUEG6$jrb` zb8fvX7m(J8Jhi0k^PQW^ysBYQnV($;uJ$#0L42C`9ZA6?e)Eg@atE4*5hmEuv#zvo7HS zg)`-8X0giKju3H%vdZfM8_=|Qk=DvCd!#V5+5Xzoq*|E@qBUd5Wqh6DRXd&{dO(^d ztzcPPk!Hd`(U**G;F0_BR%=B9WZ8~Y7=H+k*LtmJumm_EuQAtJ0_N4Gc$HlCV>@A+ zUB(Xu^y9CZYF|>_DCuR6jf+?4nTc|e3Xl-Y=$Y3%n#bgFYti1XS?q^T^J=!y*lX1) zYA*dfLpfyD|3m|zXNjKDJOIwwV=!j()6^*Gn0SBo`C{#-qDybjN53~H{Ig1@a-|GF z@`uy!^YoBZJ zm|>djnyKkhxRX(usrL(}d1d(N?PL0QWss_V+gs7)aI0bPHmFrL-~n#?A#9-NG_rP_ zMyZtvBBY$FFQHOn8^tSfsUN0CzccBlVejkz_8e%_Fs1kcbKvSdPXATY0M^f14uidN zCl1VF>ZDf3Y#Ca&WuTXq@~>INZC9R{DJyZ7E>rkOx01@$XQh~%p;6X)ES?TH{q8We z2$XA^uQhI%Qa3t`T~yG|6jHXuwqI+c_vyasQ`Z}X8!yjES}t?Y#Ai%G;L#6D9wmCP z*E4qw<2oP$o}u93ShG>=I~JwM)tP9!`gvPf>&Ni4*9GDRcHs|8-F>!5jAS-NDZ>2nRcLp7;sAVLVn4m6oAbxKq(H z=T2Nm)~!@-ncdfk#ha#%l8H-{K??WB6T%bv@fLTwIU40dPk`b@01xS*WF7P@OHaIY zU;Z*#SrzuDwB#?|?1E~^kyopYeoYC6fhD=-XLrcgTS+x;a%z=V{je~MFUu|Ma$gN@k=6VozOhsv z3rybC7!a%NRKVTuW3P9NiXe`W+JioM$JhJh4&HsnC`QpesQ$n zs_|G%k2Nq-FqxQqzo}>BHaBkWg2v7;lVpw&`;pK*PTTT_0(eSKgy5Fj{bzz8!oZ0o zU>Mk+2vBKwWgqPntvLe5Rq%J|m%V)&S2lZOn0=HxPk+dhn39QXsY~-7ozYJ_P1DM% zQN70bx+kJX_Mqulxp2XY+TVP-D03n|7LXZk?A0|1?BcW_-r>NjsBKO?$1C&b_Q%uV zZKaDJ)bYn7+!~3;ouDkndz7Z|dz)(kb@8BZoE3>=RV`oh&K-`*k6!<_Aac_tb#)>G zw1)ZD=m6zgKP>n(&IHk|S+7PTp0+!`&=m7jX-cfBW|y8WZA2=c?Aa0CVLF}WWeI8X zdA+oGJPR+w3C5qVaCHWHI0`S2FEwpniew$w=Zh{JE$npxDy-#SOgGZz)mk&2x5i#- z_WJKwSuOp(vU-U?Qg69xHh_6|)2haS0W7@ZXPQb~d8bGfnI5-XE!AYjQw)z?L>T<9 zBK6JIo{g^$S(RH9f7Sm0jvurfZhNvcC7u?=HUK=>R z+1A{Pp72j_5Ckf%&&oAJ9HS!qHb`3TeqRjb#cPdVZFDHh>jr(8pXhpOOnsC4>fcge z-1M+{P*dDJbU$jg`~|yxzgh~2sm_){$qJRP>@kxZNlKyOX8~=!O&eZ ze>`G0#`2Bl%6968{=#+F$u+S58D>O8wDR>1c%qkQ@1_eDd>BeEn5JZ!Gh`X4LUR_~U~!`xDVh^_2c5Z+8QtQdPbD>Op+UL3|QDOV=FF;28;}$=SqnlRIn9Dso$lb8qdC6CZ=X zz%3rVlv{>RU7g+v6KYM;fn^K35#}E|^ABqNytuY)RWvtE`W+i5Jp{&X3GUxv`>eUX z(m}NBa+TT5j^e{ zb;?9B>?Jbcy@5GItETxx;0)hO=^Xf{v(E!|`%wHb6M9&N7OJj3sbKEl6LJ5~koPMY7Qr!4PKQF=(=WWX7!}P3TNDQGKp%SXzgT^P zjs#;*!4tfX54a0Ji~11z;YWZNJG=#CYDK618*NCwLi{)G#E`^+&)9PC-vT%;+;^x; zzvZA`VJ1cd3&HLc{=t9?B1B3K4-rD$+x~-r5Cj{QBpodDVK3=V0&Ea&o0xP8+q})6 z;*bPWV`FHMPy36JB~oarRCDig1w?m zWcU`qHJT!p_u&dRu{>A^uU`Sqhk0~?a>h2%nvGMwjq)(``Q6?tc-bOY?x>Oa1rCn(iQSs11V5}6N}R_{Rs!2$m-bbYYL zGpT&14+moI)q3BIT+0gkB0kIhe<0MT4e`ndw#yZ(qzBP=oBE42)=jGvrZv`}F02c_ zSk8Z!72or;kS>|2jOYd{zk8=))?n{wig(IIYX9HFb1GMfU*WQa@ar_rFBBmsJ+b$5 zmXz!;KK!E-Vn*m!$cfs)ogennXj7`FvE1?QPd>MxyPwE1i)_u(GR7TXjLpJSzTdhY|c*YDesreAQNbb@(6A{12a^}mKqy+b0T zQ|`6DhCT91k!vTh@91mJ4v513*OJ)#jiT0PXv`f(Y5I~6-(Oph--9W#DUb)K4bT%S zggr?D(=NQ)Q-$aLL?3-SN+66TjL8fIAzX0DN=$wrUG+q^?7`wudj=xy7z`q3ar_x+ z{@pkdtnUCg!u(9}EFF(wx|D_){`hgSf8W zJ?0BiA#Fd|KX>Wsq3yHxrpi#K%hsT;N&-0j<05Y%lMH!jb5 zu94MNJN&RImy5tyuK8e%1;JlT0fmd)KP98MH{US_Q9OH$An=)W#@CH^mK=OOx(eg6Acn}kTc|tXIxHQS z(>uaH)B^2Qpce)h=q~xmz$=vo69=3w6 z?@-**g#yyXgQBL-d)<`6LO;{j%Co3j(+V!giWK@_rFrE60?n4Rs5gjMf-6=Bc;&DY#Dl!lZlj<|-yS^?W4V^bPVvFfs_Fib9eQ3+7Fz4Io;TtNirMEE)3VA#*RpWzO7rEsr``Y9 z?^R7>RLq&njxb{OrjT@J^-4H7yBtR~X?y>~NN-F<&IM@5pRA$rGxMr)M;%Y3&JRlj zJ50TI;KdFMn6ccv?UWXsd`8d~ipKxaA<(n2P4O$j4) zUUsX>;V!AV{;2oK!t{{x$5f&i*EBa*wzX0sUqtPVDEZZ=?+>JPoDJ1((Szbf#an3n zh*wioG6Hu=XQ(SwGNYX>ok6n?R0)Bwhk zgw#VroPIMPazz-=6I|TT;Sam9ABB9ftPjpdWq*>2Q0HrRF^Ani{Jrmb+h~1taH{wt z#MwT_r$kH-koKVcpuT+AEvDA(hwk->r{x5?c~liP{PDpKwp)P0ROoX;!~?Q3df78G_`F z=Ocq_arQ)MK-boyNQ$3yg796%bv`~gNb=2k$Jrx*$ZNA;6D($WyHcikqG)_ZNfSH1 z31y%XkExM_Y`cB;pdVFNNx=Zo>dU0Vr2DWVcSsY&S0Pu@O@uq3ozPr%2Y7ytD>V8= z^5Cx1r9tR}dT~Em$#y&6LbChRA%d>e)6z-A37;oZ%|N{uz^r9Els%S3(a2>BNzv4vsY*bRFVA@>>F| zY|e~x&I}SReXp}fono0S&U*k{aTm3Js##({>M6{xe*e_RIlMxVakqksjP6jLlTzb% z0k}P!+gQss37o1}(fymQ9&r#7Zt8vs({nf!afQ#|>e`zp^GwvRH~Jh~S6r{+2}?CLB{MZEBn+#87u`#eT0j)Ug-DHe{oDdrKxq5L6dp4ByES~U zfec}j`BID%=uy7PX3FRJ$sm1!N5%t)s;YH?MnJKWtW14`WUjet-3Pv^rst@3!^!>$maQR2 zA$A5K{mxbW(#8$_-5aY_wN5R(0Pu$B6tdrhGL!^{lDuF(0>CfAUbqm$DV)7s=)NLB zWWT@L@mE~b@(=O-d6})n8kF@6w74)R=cXoG+Zw1Wv1TU5#~P?$U4)_DJeP~lT@fL| zL~~G8Z}+AwqKi*Npa%3ncu1@SW*N@+M@ksK`a)e(rw3atBMA$q+bE7&c7JJ;Ohg#J zeyaB$k$%c@)E*MI7nccsZ6^UOpuV7i^|M~k{689SyrPeSWy7t)y51OIfJ8P^9JS?y z(!|b^j9|3S{5Df!cJU#?BeT#OzuzYYElXzOL8`M18V`s;DX4JJWmhpIM7YOw=Jgp_|N*(|skg`;?#jwkFD4JOFTjkTpk`n~gBT9#ubd zv!D-Z5EhUiY%;2i; zU^mSAMpOVrYY)y-x40JrB<&9>Rl{AOyO)`h$nn|WCO+3Z(jh4W#4!9!3G6`4|8oqJ z7&4ri);a?n9X?08x`AzuxqteeUDAQ$$1MxhAf0T$0HFgJFmysC)@tFDz=CycO5icn z2Ar*w#@u_Q!w;wn8&SXm!3$!%Pjw7}@mT5Fr8xR@<%||D_6SA_Jx zp&G)MBduLZ{z3IzZZ^+isR^dY(07U_8N+BqO8j8H7}}a{Zk*`h;BdbWs*e#gH{xO# z`HH)BN5M>S=c?Tyk0jz&$~Nm_x-P>+13xCf$EX;oFDmB@77*MagPfqhQDhl}guG82 z&(nvY?si;Ys$3ttR;7?1eMB=X)81MhR$Zk%+$0~xrtKBSoUKk%wkKCDXb;kMC-c{P zE2CUPxc$xxSAKL&RK`vquMK45HDhoBz=9-g(^YSW0=wOC*T4EYwRZ9t2;9bo43;VMi(xomXd;^YLl3O;!;=`OwNNmn>`HkIL8)@Vv|EEr;?Uw1W?ba&Ncpjt z!QVAVmeid5u$&rZSsJMeD$^1xk**)jgm;(*=_RAgz6>%C`VOi`Dn=$xa^P~J%|+@Y zcq7+g)kQ^U)Y3-UM*2ib|8Iu(=2T@=WhC=xGy+7b(+Df86~z0#gTe(Br|!u6^yJG? zrmZ-3Gd!sas=P%x39cW<^6YtZf_I%cLwWIYy=~tsucetwpm$ zwM3IAZZDoH#DQ-{T!d9eeu-;FLwz}z_`eMQPXOv&9Mr!-6gNp!F;po9DFunif8tb7 z1^>i%jvM=MF&8keF)Oi7ut>17F{Aj(fQ%%X-qkOT8oA?fTfPLfVqHm4R!ee>K1ff zuud>fu-pn3Sm!H;8UU zxa8R(5Xz0u{9wjxCSXQxCbFY8C>&XiWf>G3mKmR!(2DDVv12>Pj=BF1HR1myeEvsh z#jQhk!7zjQpFEWIID^iE8iVeGLWBO$K$Jo!#SfDNQ<;XBIxysmfazl-RpfSLMdUGb zg8n)8&$a&?leU+9{*VM~{{O|mOPxIZQ%nI38hZ5s73nJUr|MjJHQ^%MK4=<#{4hYN zCABRO3JL~Aekmf-qFSQjl{W9@R6rL~keZZ$#$Uqzvwdve<1jRXg`kEB3`$o=nN!*A zeE1=Pt_~d#UOWMU$aAPbB&Wr{n zhG|K1kpiK<`$VGAsBmL{j2ySoxA}FUdvZ_J7+gNvqBw z1f3spGdwdgvt6F-RX-gOG1G9+& zgD{>`7Rdb0r?OG1>oLQ;M5q{#u-f3`h9Cs1lKJ7Jdq8ol?>__6f< z52oG$IG5&m1I-)Twr$(yiEZ1qZQHh!ljOuUPi&spPHw*6zwWKOHB-CQUDLhOJ-ao0 zx)YcQjR~O<`u_-xo`5z5uo2<^pU*@|VVHQ0hJA?s)AxAWp^ z{cQ05m)pZ#_8jvt|DV8U?}&eozi*#8AWZPN@1d`zZ!0hzcrn;UXf#+4jvM2_J3*TQ zd6R^b<|S}9YL~44Jvckq9&88hYL2Vzes@NMTj5G)>2-eQotxnLV|FH2*eg5+#*_8% zGl4;bSmZs_EJPlf4&E025`&$UmZOH$Msqc*LD$fGP!IMVE+09M;LFjYE21xg9_b9J z6Um!|KguEg0(FhY$-qS1#PM)oY&kKUcqih6zR6d`YH6uLRgu+8@S)|j>9ltKasE4k zALCQ=A%6Z36B1J;(}9t+v6WHVh!6Gw&IX&C&P8zJ@v3hlT%%m0yV3gyT$DCuJF}g_ zX79dVr1E~(@N*;qihZ0umOjq6=m*Q~$$oEKIx;Yd7b&dtm@H)YS zWJw_kkS2YXPGm6ut$fRXGD6oI)G2swy37tmONTcW@MII_!K(Ct9c1OsF# zBT3XqvUyVY5`4l(QYaHf!}5ERBmiyl1ChusE`Q7e#o#y)a}X>ki4Zo35<8aINaDOh z+blVk32i2j4RnL03A1McuV9P`_{SuLnUWywkSKamrU_G~7(Q{S2~?&`l_Z%aSQcA> zrcBj1_Z{P!pw*c86FGKMjtvpb7<*IFl5hn#=ZOFq5rXj83E?48Qyy;EoW!`=9S7ti z@0w6tGR2qx;h|Jhb`F{M__+yzCjl)%0?na_Q?L(g?a9$+X_T+;h)js=JyT`IWf%5b zNCz4dPOs(gkpmYx{osDvc)(&eMHOd%ysxD}=Z>9f^FnZsgojtxQxo6O+*7kqoSi=G zi`Bb1Q2CeykiLT_pkd^Itk3y!Et^olZg$)IMb2AopcmgMDy4Gu{>ap?%NSts=YkXC zhR$ED3gJVOTkfj{UHvm3@HzV>f$D9g)F+kD1EL|f0nxxJf^>lRUA_tKI(TTV~-;H1(_+lWa9FknUHDT)e z_DS5T)A1#EXr|tkXFVg@- zDt`sbV80(-9f3foudHL>`pclz0%6PrdN)1^(VbGv9(Ll@* zBJ&eFBS}=lk+KGlb{T-E5X4qYHx^823$+pfPZ%$Ti%^{eY8@^xCa#f7S%aPnWS%%v zkPjz0jyon1#1>*mbtobQRUlf^@Ut&O40GK8ELjqZFf^46{g7Hv8lUVoAiF>mc@0)_ zoL=KEWeo~dfNKek0bh+bat$V*;I@bt;3||Yeqen*{u3F;iZHPpK;;Q;Mc5C`3VCQQ zg*`S4P|}EA5aN&VKvk2KjsucD#KeNW+d<5y(7d1m8ailjQ@R7*htd!s(`d!a3sFr? z!T^vtVQWPs`4j(vzZ4zUZuq0*6ekPpgR`P3y&agEmgH_&T6(B&!oBM~7lpdg?bC-~ zFq}H(ITT+YMpY9CD?lDv@CurcBs2FL`4u)HiChWx&L1(mFqY~S_!qIh5RUR4+5X?T z1>{%ogrvz5+(UZ+)oa`o#H;rZO$jio0Fd+xjGA;Ev0iYh9qtnrYjhie*3wFQqML4!x~W zZ!AQJADJzHHlYoWRigE@8TG(@L((g)waO);m70(YqlBd9v7{HkE;AeaWqk&g&@22Q&JD<#3`p^z z>4Cg+4`3ubld*waP!|*dP$iyGC7=mPuP-hVx&xJvru>-@$MubkEm z2jYtCfOBF0B6fVxO)y3}IP)%$0t#`I766hhA^;{|j0beh!vt)dl?U{kl0mNFBqZ@a zI48UVD=oyc2l58^0i67Y0v}}NV1Y|WQ~luX47{)oSp_3a=B@?hC8kOQ0?Z%@$wban z-N4S+`e?oI99VmxR+u7;&*-C|=T1NdBuo4o5+Nat!=;g9 zNQTlYX%+8~_i2`ZRt0l~{Gk!W(Otn_SqaI^D|p80ft8%nyn;Tk_i9DM7ct7AM}jjV#YAL5CMYC{uspaY z_CAOcw1pGW{h?iecqhazY$t}npG}Ac!7B)hBnY6H6bPXjVJ^7CwE*NylJa1k5Q{Vx zK=e^z06G^;gD5^ggE}5KhbA7NLmCfOlQIfIpGE=1PpSZ1lT;3*Hn|9tK7jyKmrxE; zmlT^YX(cGVGWJSX4_0E*Yy<2Gv#)$dJ9i<$ONar?PcsYfk*5bgClZu~pCltB5b7qL z1)D|)V8j?_PpBu}PMHMwr=2t_OjDx;BsD=MP)7qyO`!^kR6wv(N(1C4ND_ir2y4mn zZ2?vwr*tLQw4`9i)x<#!0-+fVk0ya2Zaps`%Q0XMCB&W%7w>x>0ObWZ|Q9r0wg z2;<=$-ekj;*-_LwEF1Ku1KCWGrrxU!Tm5iX_RI~od@{QMH0xkZ{Wr1i?pNxY^_^W_ zF;CgM?GyIlJDR=mAKmM%*6qEyGVk)2#v2IM0%e~iPgi)rJg`>{)r0f!KeG^So2$3d zqnO|0Up$}BZvrPf7yg3+yam*|g8>_W{y?Tc1aLKQJJ=dHUJMWZIl3_pO2!IG3){Kz zf^X0**r>CmdS#LFcy8aFvlDr}e!O6j;N+lp@N%$Os5&@5lGVy)^%K?HS+}oNXRooF zgiIoZ&<|{35no{fXkGN*d@k;%dvlA01fkpTpVSx9tFesOd02ngKE`j%2Ngo{;ruDO z^@lnlGLb@&j*wu8S0pZCUU>J6%PW{dx zVPY7`iSy(+_L{n8qHpYPWNHL44j)Dznu*oL?qYwEytrL`Hf9+5Li8qCA)Dc$=cH$@ z)81_9_~_trWOK~khac`ie3st)>sWaEdb{!x^@4IsFzS!*PxtlL<2j@aDiJCY${3}L zlvYwB*MV~{G(;Ua3*}I>e#k8{F>(t9f+CG{Mu9i)G#NFSm9vuQOlN^WYH$2(+&Y=Z z^=#49EZzOL&c8d`^xYpQztX5(JlH3KchrZ|wj*Y5dX;yCkuZ#VJlF3#%i75ihwX;* zDdIr`jue=l6;U?>fpxh&&`&=Hg?{>bppNo>K9DQI3)XzFXWR=jg#N2L#tsrva5o30 zx#y(9`lqnZb;Q+jxInxO#MR2!FyD2H)%@77+;xjPDg5Y=1O|Vs> z&+HoFd|(&PC z>d+o7x{D?JaJ+T9)y&H^^o5Zd*7rVI0N6BFTIfY(&AI; z(xDmg`9qJsrOsp3C7nW3{u(cA1N!6xwWwdzd-dpF*n9P8U)+24h+oA6JG39Q13UB| zqanQ_FI^$}6dzjyJ1~DjzJ6l%3Q#>LKz&;p`fH`U7wkfS`ODv&fC|vQ81~0UJ#kU5 zpJYfrUk?b-eEbdlF1wk9`tH7AkWN*;d6TxjrMudZoIR92%^x%Erpv`5Eu6i#mGI>C zpO`#gcnB2Uk$Tx9*6U~(g~4a=DB6t-qKNjOBHltRye4|+3F*~(u@3Fkd&v$FkU91% zoO-wY$(OkOCu7~cvx%Pm4Crr0g$!x0FH}D{lV*V?-P1pxVPF>HObt?xXkR_T1q14n zxKN*TL6>yFSG1%{Cq$cmL7VDD8p*y?(!O=B9{p{ZxaTK568FdzY-^hOZkuln*g#9#TPH_D@3 ztb0TFJN$+W>BhwemKTqp(4OK0e&89yk76%8%Huyn%}KxrsJ+|{ zD4_a9-FQRxrc0K`|D-tt#4p0Vawz|b8;J-HV^9Ky52%5BQlH`*xq*DL{b{6b(HG~? z-q{BJxYt?8?}$CpH-D6``+;7A-TNa1;%&CQ9n`P-0e83kGY{zAT9o)5`4_y9o!Q88 zjuELPiI?OM0lAmvoS|+apX{5-(Ce#i$X=y=st@)71T?>n8DqBpvuQODc6a zIW=zi+(~qi^_>K33;%Xml|*;XK=9+@nrqDIc&RV){IZ)-|LEysODqUr7>@|3A3qG3 zJdFBw-}M7(PppCMkaq*$B)$fx1-Rqr0QEp$ne|bx(>TPkqHK}`>djPx*e8bdz3z7B z%z}$c^93W9f;ZU0Nhkh<|yhh=X>%(gl`hk2pD_)bd6Qv>MAA?EyjoAqP zQJyLzgutZ_&0YBdDgbu3I588@8|<&LhVF{$G8#Yt{)O8SY~hdoAW<9__>J3vzsuYo z3&sJblZis}+_rjt7`eJJ7gkSY>WGx^rQt+%%HE+J(mI;$Sbdu9xFaPX?nBXo!`zfTY)^_X%0R?dm@7Zrg+mYa31s-)KXE*Dm<#xJ*oOLRtUTcAz~*!^WEoa6gzYJ~ z?{WijdNXuh!sy7~0rZ=sF{c~+OCnMR@=!>_*BzYK?uE;ee@s7k!}5j6i1r01(*90- z0dI5cknlHeXU+vsuSj|H9<3r{~E*p)#P z10V1e!LEET55$#-Lw?{p_GbL9ADG1NHzf>*?OpDGb69$49pa9>UGP90a68(L%H6wu zw7_f_J3xn(L-lX*WPVcgnGwe!S&0B%=)?J4@?=Qn&?!(1p|brh!c`tZvw=(s;2i)H z-p(^)^5I?=KJgfAf_XqbLLJZ{@XZgncThGMXEq-lf*nQ9(|P}8aPk*F=iW7mn#29> zMGBmGd8mUMHLy9r9E<~DMp0~+cDH8txIeQBG6yUNZAR@sLIy9wjOPExss0~llb6#U zEwDMDIVc;#ywQd;nl7YS1BnxclcvMdfu8376=?ClVuzSxqk{Zlcf6ck|0^?qMUOM% z0J8_H4mtxo18v?(?11i|#<}=^%(c4z)9vxUvJNZ%6Bf#%|3B$DpG|ug?T9me|HlNU z{ZCV9v%&u{p`!aV`!x4#G=Ah#4BBuK(1+X`{;+b8ei*ws|B=myf0S`Dpa(YhWj6jO znu-09>%SV#B>YD%`>{-5vk6j8anl~HCg@2SF{ccAzh@=nOp=&` zJatgB342a*)b4+*5@Jq~w?3|Mh?xX_2l=0UN|i6wyMCbu)AqY|!CfF%?hfw#pF+Qz z$+8o^ilw0^rpp3NTnbCaQuNbQ4A_%vVuZCVBd0kBZLnE_Emf`4Ov{!nXqwYb(o?nN zq=<7eTcQ%!hIH(jQex{HQm`;8=E0`1&6`p)CMTg~Xb+^N32#o5ng%k_lFhPdd5M$( z#(L26k!Rw~o?%S>aq_P56Kl2XNqR<& zsaSNTzi$o#F)(Yvtge0^W9yr-rDd9_Zqg_k(y*>+wf)3-!H0sQZ$TC0DL>+|Xq7Lk zYN8D_4V@E&!D}g&HEouGZfanB11-2ICAZcTvxZTb)jG~#W);q~6vFz!lUOBxC4XEH zw8luwnhHfnIiGW$lxt%yvbun_k*;o>Q%X})Go#B<)GKqN9f&Sm#EF&z!^Tsdh_Ya{ z&Z2E?ZxR+Na=^PPoX|}?UprfZ%kROT6(kY;F4O+~GC{q-JiTp=st**G2r^3N}fiNzV$wzz@1WW(1=f|-u}7>>#uc0^=_@qjn^ zv~2E<1;#v8dl=Is4T-#Z*o3@zV%jwH2j#W9ZpcxT=h%`!=it83e;uM4Gpq(^4ql@I z`7;z%H^XGjRwM@2FhfNnW;pcqO{f41ua!<5l(OKLk+c;S%j7mdg9Fbz=-e`^{9Mxq zFHq5M_LrOOn~m}pF1z>5E{ROc97fahQ8P5%&wRslS&(-IZcz0-k2rnG~t2YQK`_8s}# zOrz%t4S9^Hl%~Bi;$m4C{|edt4mSFgtm3|SU$3q z93mGg8tFRm7sX#4Xn1q++eq&05v=CKjZ5DjRIvXpS;g z8a3%P(Pe|hu#9^oGQKCiPFCKrajUkP5^-a+qSp=vRLp4^)3C;UIrS-4&Hhf9b$gbr z@F}pZX>$0kB5Z8dyVed@NXiJ3pS3P*1sxWUeb0CQ~) zOb*P(yeN-bYowhcO|o|t+}46VM`%QSbwYOd4TKa4LfB4f;U_jLX=6}AO!VWrnrOEL)TNh2w6N56B%nfj-N0J)qzF7-_ z&t&rZGTLYtdc#t&X2LiuiiBlNTzoMW+q!v40a&G=rkHHN`zGO))8~oZK!>gnsM-&k zrIxLNXp97;V}ogivRIw*X}1RpzB3EiM}mURtf*?s_LDrz&gf)*4(f)mn|M=alRusK zRVVRm*Gf8dq$ZlwCrSpF*2F<)=T!*%cP&vDyHp@v#KJ%i#TZaG5HM#l51QDN&NNjD ztt~GIBX)ZhJo<80H-HnwqqJa0J)7fDF}5l-MwM_;FUm}a!LewCos>DQZX2j5cbY># zM@}QFE%rC#jyI|az9ZL#N`Zza&uamE0oWT8=-k~YPs(j_3WR1^YqZA=vPd~J%kPY` zVCDjCw2$o)Hm;f;{V$a}WyzU(*<3d8HNB8a)Qw+O8EWL=AO&b;V@*j)15pSkYM44C zhCqYEljf%FYxOoWHkc?K&(l;PSg|QY>l(5b0FA|(%s7q=>6$r=kyLF5PT`OwCr&iY0nTfsS4EU%Xy5rWPYDsGe~nQNx*u zqoEerCub((L$ zDR`)_M^!tb7zVx(`;3x;ZB7IDTuB;*%Lbo|W)Vg|pxYrWv>q4Dc=zV#UkP+vhQ6o0 z9B{J2teV!P@%CD<%fgy`DZ%p2rovF*i`+)ggoVZf^d1>QQ&>MR0Zzt>*3vX+s*J&$ za2po6+K;HaUc3LPnZ?=n(t|-;BRNx6ogt^rlx@sr^IR2n*;@hbX41XFu8M4}k1k81 zrePxGuNUVnN2yV<0kH6Gw}jt;Hte zUG$yy9Km6@lF(Av~Z00IXi^b1z|x;PVxy@^!foklzEK#R65p+O7WK* z@TuEZ4}*rO;KA%C4DzoXL0}g_tL}XyFm%pRE5EFzxX$6@+P7^i zhgqP_Q`1wb-;ZjTLh{)uG-1}@e7`v8KV46-FYSVN|K-tcj2&aBG{td&&LBEG48;*G z8GR1=milJT95d%NejdAMQFW2lwgLakUp5eOeZc{$}I|&lcxvdqn45cIMcecj|s8!3}TvNX${8Zd?_Dfd2*$7Yf zK)X9QCf4e_wgVGN;#qSnJAc3IxBd?Xu8odn>Ta!hSCvj1&6D#csmq$mENO7I)WR2; z<1;7G73bD1qPy(IRxVPbY-bfNhHhO|T~o4$MM;%(u_b9Uj8ZY2k{1|_hN~KF5FTPI zI_m|qWP?$OAsF%nb5|@V%OdhcAN<7t^z_wF%*(6l=Lx1MtJTzz$n&jlzUNKn+3P&@ zKk^7G#B@UD%tsT{cWc6J4WSe2ICWRXr-je3)edIt!>fY5_~)NIY_n}7vn<;@e+xEC zj+&$;Ar-I+MkX}b3gLM!v3U)-uFRe+%-%uFx7}>&0X+km<+FKw-bG-HI%KuK)Y7My z`Z#ZV)Wz}X08LS^bPrvLQgNHDA2#^)Qtr~4yAFi#sHJdO1Yq(SNoE+*TvA}0;S}^X z18vj##0gN;w0*&|C1bD&zTxk=fxpKSVn=xcft|Blw>m^L)pcRC)^**P{au>K1(Tk;XR3(ZdSI41T8vu!cEIW#Y8t-e4_T{L4xJ$)eFv3F zi6{z#;C0spUTPJ`&gjWLH9%0ly}u;^2$cN+Y{k{cuN-WH&f|Y+Oz%L5hH3gR`17U~ zK|CVUN^0U(S7zxUKhY)z*9~q zmw_Kka1^{GRz{gW$XNd53DM2}<=%`o9s$Ot0?taGESj+=D(>Ag4s)pSi9&Ije$DzL zL_SZFNAah__}G$DdpiF}t9URX@aT+{O+OAay#k9r1{8W2Hn%~y^w=+`prN%IfmvNmj$M;*)L!G5=Z1IxsD3(v)V+3C(t5`0@k|Qz15;bvxEn z*|O4=f_}3`<(>`Cr)2RI&|uC{g+uwEM>G3voZ24<-}%}OVZS((5g8IuAapp2yoC%% z^08jw5HQ7)FaMZhNKag76-l)$MVB^eWhZ4XehSNl z23is%iJ|(1t8qi$BySK7@OP>Yz6#|aUvrg%m`M(e~K$$O5Ff6 zDCwNpNv8H*99%IpL~l5QxN?+)M()*VVvm%NE;ePc+*XHx#kOr8xv#1GprKo8Krq-X zyIL{Jb$KtX{ne6n^lv_ncD&Hjz*8eO{&(&ynWU~6KcC;^w9t8O;B0ztI>rtJr9+|* z`glB+<-B(N_|&Ni<-KXrvb=phrAeg`TEuirwiaci?h(wHQnlu+W}DWHH(qUKnqav( zA&iZEWZ65Z-hmXsCP0$}-TPqyq$AruyweB?8*4dV(Rq`wEt>!fTTwzvAa zh)IW^GGY_y=zk%u{zeuLRe!-AEn%BabQHVCW;ww26L*zZrroIpOGdlF zH@oH`f#!8hFhe$$U7$qAlH%t;J2&@Br4n0<50Ua-P*w&Mw*<}O$nqte;cJj5Z+1{$ z)oZh!?Q~VunKh9O3a{4!QSaZ;eCml?U(>Div#G6Bpar6g>_IOo;3Z|hToo` zSL3GLHhNWKiR{;$zd8sBAAeVz4h#p$AEy~m(=xA>`jlmDAzH_u=T#l?(O}o|F{Dif zT}3)sI(oyYkemy8nCkJYUA)&(lHjM^|+(DqFi-SY5))(Ro-{ zdE;iS^TES)VL79Ug+fx<+X9hS2lWrMB1=lznrZw&&}%J?RpB+AS&)H#vr^RGi^$Jp zI6N|~XaYqyHN~jX`+&2YK*Re?ZWZyldze5&tBmqgg)sxvY^(5aR;`=d%Ps+Hx5-qD zpr3Q4T6tE>&cIYhQn!eTs@RBiml=qlf0EI%?)J0c;&Mid(nJ4UaNK_Xwm|ew#?Hk&j8wgbp=_O#eRnkwbkrl{(B;B zPgrqGCI|F9)aZ}s6Gq9LNA)QSHI$FtX)~DQljlp_JFdNEzP}mWlz_@SdA2;_hz!3w z^g?T{?K7}g#)jBIfD{!dumGp#0p!7b01l0vWxRU^iG&3Dufj{ZCfXP}MaX#vq^__t zC?Vob)!X3$SDJ>xf>h;IsNcBMFAN^glIE(~kt`pOaX&j@;9sY_lEl21(qXj4&iSP= zW{<4btOCUm)PP~eZ8wnnyTwD5id#_B6xS-z>uf_FJh4~pPias25meeJcSyY^Qpx1} zf%+ChwG5~A7G7m!Ak`Za8ui^$0*|4w5HY&(oL^fnt^YFrnb8@+os4!{TAZvlRQ2|w zETHpX)}PumVcW)$=SI$JgSG~Xp?|iDH$;T^cYE)WADChn zRMK~;_DZND~08#v$fsHaJn z$9&lN{I%SGnGS>qw27&~KQ`Q4;vvTyO9i6UTh*ME56N@r_kq4ax@&u@E?_@YyAu4txa=|{dCTFDZM&Vn z2IX8zYY`NJScHf}R({cx8hpuAlAHo$^C+y&*BWMp*Pj85l{5E|nq!+LZ`A5)k319? zNwoH+QGWs~3<)vrhoP%#lf;;)3ixOI@LeLLqymV`9}-11MlYs71^Y1A^sp|9iz?D2 z+?PI%tl&w^d>DFutre3p-PMTlt5pDR(eY_lRA?56Jh7dx#u4(CTWWIwXT$r8>FS+S zp#Aggq!tg243JnM;yC$px?U@YIVpU+){O^&lEEvI+&-d1f{PGb<;b#1^tVlfebr-A zN7ll``*vA_aZQV{P2nG$JR3kc6kPef;m!_5Aj1^H3Kz#nbF9S~|BvrGa)7IFpjVME zCL7FT8h>|(?#8d^BkAfx(UG3g>t-fH(Nmw;I$~<0!F2npmh^iMpMP46Vl%BX85uK{S_2~uO&eDsm* zj9f(YEHQaOJwzH6U|}i09*DbU?n4jVvZCNPS+qoD~^3Sw#g0Yqma*(VCXy1-v-2sgStZ5c0O z$m?fh@%sAMeav?rC@VK(#Ldd*=WzO2T`d_?5b&|_GjVWz;=3L~X4e{XD8&9;3bF*| zL@%pujgsV}K2+(wo}Rk8z*X~>`<6JFR&vC*l%!|m5M?(D=D+}V;T+jECtt9oI8HDv zv!3Ypx951^25C<^BYY0GykYW38CJIvyjcl9L0k6O3nY#cHjesDXv>8nx;IhNKEHUx zmGJF`D!kOua48Y#FPhvv*Klyw1&C_q?$asSo0bAfSCF9lb(|>{;y8ob?f)c!W}53U{rsr z@}lRf3#iZaqp7vqWmPx*=^VPcI`mb~S@qHTPVZ?W5LRb5dxfYjh1fvF7|heem{f&fCgS>@A|{8V2j-upPpsW`OY9Do zqc=_Y&3i0zb{a)zB5C#a?vxLM)3J64tn-`RFO&`WEJ?%$V0?G}2}^83BX;X>DVVVc zFwuka<)BK8Nux;hXlkYHRXja8 zaIVP1Vls987Ea(X%E){LWlgSVfgLUJdc@W4+~QEd-~ioPQ<}7JR9wp@6H-Mf`j5N8@bolqWU$*4rPVP?~OpbMWpy%_tPd=0W$ z+TE%9Aw!Jdqh%#

wx)-@|Ck+ozKd@FlEuf--+-_XH&;dwW(QCH!`@s=l9&s>lU) z!@Jpf$o6;(pn7pfY0r-7QHc7xFyF# zXD%brz#l5NTtz|Y%8r9~Cy0gEZgq|$n&O&y^MQlc48)K~>BCkG?k(WlMkZdnbDD+= zSiM{~f~raDhWr8pPiE6HwlTRjx*8ASZV&2i58iGMB{U5X)J2LROdR_~wm};UFV|L$ z8MCNX_PP2{jPT5(@=v*14Sucu!|i2dA`-KwD`er^1Fowg5Qs`$$Oe=q8uEk$?7DDP z)CRd2qRTB&$wB4KIcR~BG77Rhwvy4o&0;px#NTq^EwfJVX_R7Cf6y0v_!zrGsFmUw z!>>foLDj;?5pP*Mku!y|=fwV@HdQAtdb@MsEtuL~(`P2opNeHSk`Psz(uah{g}3HF zAG9fNF2Glmv=ME({d37~EB}c|femz~>1p7VWR5W0=BmuSNH0F?GS~%R4A{ z;J@Aotk{xbG!Psx6ZW9E`$}6`)XOQjzLSesE8-wB%Ld*M{f6T1!4wpts#+IL^rH-b zovEv@!_LKr!1AVGO^&W;zShzm?sI1&5u(=%v{Tg3eZ-~U4jE#7Uj8SDW$P8L!v|jV za>sP2-BEMejp&oVq;5&Hr`BfHbv#+y&RBA*j5!PTmbXQDFv)i@Nz`f!6vlh~$U7xB zue*Ha`}>i?hvfKa&3fUlbuWg2vK808%~xiu@G9PXM+V(n4@1eiY=Z?Hh{THwORzAW zyp)U!&io#xpOge+P3*t2rwX1<1>=VYeB+CIBP>;Hn!32(W+HKuocQUFmr5%<*dECz zM-?;f@C~9`uM>@;ie#l`Ax3A23UAHI-iYg>Gk@KT^4nXJ%RiJa?y;fK2)j1;eHALy z*0!F!_1_wLH~67|Rp?RoWt@VmRP@D6`zofZlh&2~0hQ$`Z+M(2ykeJB{o~G{(Uhzt zvddM>PS_~o#xyAaencBX+l%y1*6SgHv27ykxwk@Ew^6o48=0(Po(>`MWBf80UfSPj zWiZ;|$M*)&I!^hwt;ECH#{Dbs4Ynn<(Jy;cnA0(amUl8iOG(p9Dfc0smb`VkC0L9;if~LOSX!5C z6%sjB@3ubq&&I`Fq#3FpF~P7?S%u};L#npGQ>H=DZZy4uoa^M>%PLx10h)-;mKCE5 z#3hIrmO)Lz)g#<_VBUfX4ojK1qeFgyVkq{2TW-?YBZVvs z$}m2&30uZWhC{s~mHs1;6*+LsdILtYn}oNWCyl7Yv-op4SU$qIV2U0#2^DG*0q&+% zhM*lqK&0JrL35{Kfr)>23UB9|&Kr|bo zZ@j_28t$_wu`x37dnim0Gdni#e1j%F?jT5w3R}z?PlDz1R?a`wRUepvBP=Hl2*5Hs z?CDz{#be*B)Nve|w96|O=VALH`QqT422?KsK5^vQo6BiMYpf|^+6 zGgIgw$wsd?$;H43RbRrC3!(ir^T+pWb}IG`9sJcb>d~LpLNpxFN z!0tM^q#@p`{)wbogtf)0&CD(nvpruJ^Pp_r({JGR3S_qJgrj!)zHAc)A(aA!Cn&~p zK~_2;h3y78AV+psuE$wV2rEtbGgl90{>-G6kfqNnV7L`WW~jfB=~sve8%~UDD|JYc zvTT~`Oz4PNZJ$$Pi^{y|^5?gFWyBcWC`X!NQ)iiNW(KdO*km0y&7yK0AL*JPwxbX& zH;`7jS)8`9WOUe3;Orz-cIU{?`!jw;Ue`UA&+0f!PdvL{c8g9P`U8muCF|QQcsbkt zE@`wQy+@IX1B$(@O$2HkY&0kQAcG(MtlCie5a( z)@<+^YBng6oNx?Qaw-+rfC94l4ca;U()AuJs}5sP8C6y_8-@9vh#$xbu7#41u?ncl z^=|m*)5*&m!uNS%Ted1ykJhVUZaS;x(o}!{>)F&oA0Bxd&`^WSzIO9-maUR~rXk-=_4G0m|KhAl;|M34YgtuD zX4);)gXc4T+fn<@CKL`9uI+Zm!-P}2Jcq~2$2G($zQ_$;2j9HImx2cm=)2ZXvW2j^ z!=e)84_+|VGf+f%WKx3P)_^}EF(9fTvOgXda7Y~lXmTvN9u^h|Nal0bf^S6Cc~MIW z_O3&E@D#_e^#wv&^L3Xwx=xf( z7$Ug7rDQ4npvSSwwMY9_6j@*FZ5d;I-CEL9E!Qr4F6WZf0a;&;Si^9`_-;&O%^q5a zCl_;hTTPssX5UsZNLV9kKMTrpj*?#rJZ=2);ixd;&HG2c@UI?;6qatrto35WxjN6* zRO`7WdK>%*?^>-2My%r>P>fqX#dheq#21T963|av1%hLS$m1gX=M7QG^mEX52~UmR za?ThQqZl>165L|zs`h?4(io}kEIj2ct|yKNk8@Rtqnszmx$(3X(vzV2Y7@cHUK z`qNE5a-=+yM2~ZNt^MBGXdw5Yb=vhxgZwGDlKYT!aHEroz0~-;R!imfh)I5pW9k9(ezE^oT|_FupKaeB?Y~S z)%Z$@L}@bZJFU`?{t1n1OkWUPw!nupLGJYcsD&J4Rlk!>mAtJ0D~dN~Wo;X?^*z?p zLAI@g-c^b)+dkl3%kc+W-Mj^JWAp!lYsVTnMbLMgu$~L@U-RwbHwR}Con+?3&$lto zDzE;s!H8y9vwBDiP8(AjF9<$uaeoAZh(26YX@?V3yaz*v z84d-ri$jNSz$!tZ;oHM=!!iilWs4ubztPrJbxB{qW6uBjg;zh0-JaqWEHVz*P_4f; z+KBvj(MR&c!-G=ecS-kTq*%T&U_JgFYdvyK zQK6!pa&Qjc;_?=@WaR?Ad<}p{F5D8DdEcncMZ<5yFJu~>Mj-x~r)v+BAvW;l+8BW0 zYZV>>&4=oCaDF+1t62Ob9w65B2rQoF=9IuGoLB@TJXeVA5MBbDq>;#-cb}d939d6X z-W9&8f2@FIbsnTs!Ns8tXCdE_5zZDzKS1c_Rn^l^H_xAb)_&rC6~x` zU&w8_rfHei2pi*Cz+1j#8b08e=M)aIwRp_fMf*Z6m*<`*EudWEItFsbR*V>v%=RPRXP7o5;feF;%qu^%u>f|6JHM<72U zbb|0s(#IZ>CJR#XK_fjGN)8_|LgDtMdxu&BSRd278eq*GHenj{mYH$}LV~S5fWCx~ z9$qV?d~uaQK9ROxkjNg~3IvRxZ<#_FY|53cY+$VlueUhmm3yOqxpu&0XayWZ zBGQstnAJD~$yVqHLYi%@1?G1A3jqJsKW8|hiiczpSh<&S5sDJ5_vjA?K?{#EfSB;^ zBCHmb0jea&r5jM8f-I0cZb!to8y~Qov?V$qQCE+S#gv)@8B{;Dy}B&i}lkMVV9I40jz!0n&GNXxMh4cu>fk zFSv_l#gY|aQ*qSK`svtPzeoaq_@fgM2aEZUj4(4{VI*e6#5w_(J5?lHIHjC0IgS1w z0BJy$zatgrol7QTirXaUWP)ZhqI%)PlDadZMk2|v4n=wpW=5R;u}(!w5@$y`dT?8y zTWT0jv#@N7FYju;x@#EvZjvzntqx{@sRK+NCLaaalT0~%_|SL<#zZ-e*LncavtpOHB!GR>>MdyOYKDdU;0~RA;F)2yD@ckg z=NmtT&w<7-afjidVF}U?e>Ub9rAl_{Rad>{dHi~KY+vR48k#o6W>7$0y?5t(U7s? zKf-67)bJi@1v=b{SpZ~Av8Tt;N_TOkjDVl^3soBoAx3`M83pWW4gpGb)ZjK5^|c7Y#SWp0%sT{OoyO@qh?&t$&jStY}MZF zO@rEk>isV76zQyH_KRZdqN1pi3tnm#rEafwix;Bd5wDf3zZ@ss4lyWXhspqQ z3$l9auc9tc{{<8bCs9a45*SLdC+g`AVhf>Z!^{ZB$7R$p*+-J_Rmt%p7$|ZQ^`(U^ z>>_srAwU-W9iyKSKzI&crNaflk&PMwK=8N^Cs|8*u>KKs1lVI;sh5CFMv-em{>i1; zaRq!6%sTbAzdZWTcmL~u{uh7w&D4wkY9;skAFF@)MtR{6-|DO_J^t~x{>^=V{8DUo z^c~ltTlKGx{HM47g$jE_wWAC+R?T9zwwif9QgQu{P`EhmY+FuxANta z>m6r4_@%#_OMmNAZ~E}NCO-Md-2eLKhqr$8>T-GZpZtd_rH{P#qaWS==;vN8ef9G8 zH(x#Yv7Wbl;qy_nJNg|k{UWKZ7|?AmgFYWe=k-q++p@d(J%spf_(jL7y7vNBtnC*g+N} zbH_c`k0;w_Ov0=y$79`AU-#TF@{1K5&o`)yK^pD3``C(Lmz>w;FsVRxAKeBlLnoEe z_FLpoyLR{Y3xvk#%{T&W#7+3RU~{&PpEC=JCuE!imU0r0#Xw^PRV{jQX^alYIp;pZ zjO_^>_5(sI>;YKkPG@61j$SiXLw^~@ZQg0!1#2=H#Rd96L)31>81ol8X%%U0=g>GZBnt0 z_8kUEOZRth=`j1pHO^?;5q-#PfhpoveZI0cv}rYv@RveMdm3x{H-_#twLILmW-zc7 z?zx_rV@Of_+}-H)Yh+S!)~y-^d9w&Bt5saYv zFS_A$!vp?zq*Y&63H5KO;Bk-IX`cn$`;ie4XMX+gm|$t~{YVE#C(cq!24 zdKGa^_QoC1Tt%F7-6q)u&_Dr=2hS0qOR67fInpDMXo6ZL{i7YCPL1tA^WKEjswWXK znf?}*5l22QB?8Nl6io(35L6B8h8>AW>WxU*sAGETga4qRH$TE#u-Icfe(nRfz{VmE z+E{cz(!j%QevGtU;L?PEY5KgP(dsTD)|;=;=O@^UAcknSNhN7NO_rC(Y3lbW`uq%0 zL6@e2E}?=hq=GJT1vYPXOJ(zBTqg(~{_KtMYJ1}>KbpP6u`c)|4N&9CZN92&X~9>h zYrk~u*IoOEVx2^`jVq8z=~9wN3+T&CCI=etiJ{51Ft8Jo>k8@JxWXKN!Es4f_i=k% z&jPt>7uw;Kk3Z!Ls3~ydu!rLo2K#ljN0L&2;6LT41-XP;_L$+n3H|9vn zZT_j9`6@Z78W*)U|DqGu34M(=D5MK&HfvDt`<;lYcPr(nWv7q+klMm_ajQ@%<|E5a zxA{8e2sC>w64p!wn#J$ktlQiGkSnb5e)8ycQ%aW(G(IS$n8MO-bA`|cn{mXHJ9Oyr zFvs;(La%+Vz+!!+6KH*fb)^;2l~#~hu1K0F1Fs)|Ij-P8RMft}^t6)dO3){sm#_E5 zI-HbQ0$p{?)3w(;x1Oig^Qm4q1ZUvTA93rSPQf9IyJzCOH)rD1{!C2g68MRmeTKj| zA z@PGrs#7;6E2TDwK(>QoD5(5DNj8uS=3~yh-hVk7OL^8_Kbu0~x+s|1iwh1rI31`Qw6GXTVli>7=44X-x4|QHCs~ zDL@~3{!BiWkSC0MW|(eQ=x(Hbm!#2M*cEp+iM6wIy9g(3IF*3a%#!B&K$ItBLKsm% z2qQ|;F)~ht%VUD6OVQ5Ey0c^)zKj#Bzywf~9N59#TEGLm;?B$Yn+HEH2e4uQ#M>dMuTJO& zE>1N6O>(d&(e^>QqYIwcklgP?R44td9mOXUPi^0jeYrz=$Y6vI`?sh;lxz5;e@FUo zifcgeNV!J=fJjtPPyrF(U&KBCXD43n4U^LgHsmYlsC^wxa(J*`4ihWP=U%6)ngu-Z zp!$3dnnTB4Aa_bT!*u(I?czZ3a8fX(hnPiGr|~+>KhXFIk~ZFeCE*i`e?sW_HYhg> zF*v12WmNKA`g{%0mP#f;B}np}+BfiwuE5i69FeOYavc7QK7Y}x;JAGQPT0>N6C*JQ z4d@0ZN?U@%0P!W`;tYM6PS)3)K@pnuuO*?7n|4Qaqd0Yf${z7ve+{w;FBwlrqB|zO zjjthjBv}-Wa<3#`I&nJL>m6E=ZlejWRc8X4NXs6htU)h=OfoTfibxuDj>niiH%6^4 z@_<6O`F*>4JS}%zQRNKtcDT*IMjCGZa5(8iJG#?QKHM?T97+Hya+^OM?ij{N8(+dh z9wYwofhb+{CQ~QxynH1oj4Vkq0+$Ul zq>?m_kuE6JBlzLO6EYy?IuZ$QJQO^5)65&+*cHv9u}k>fjmiC5ukC*yAO*m?(Q5uQ zQ1WviJKVf>p>Xr0X*-#Kfx!pKAvDvqa5*%GK#W-_GnZ}j+v5UQZi;r#-wD*lwgW42ap7AO|v#D zH)YgfTKdeGK9tgYkh+~Sb?2n@oGF=OyY<#Zt&dU)wS$OBV~~WYgxw^QjIPdQGLE!M4pOk$WzRBWYqo&jgSZyY6v-vrB}@gu3Gh1P5nDf{X4CC zPSfew70oUMf`Ga-I~jhw5jqA+4m8i{K}gAI9*ZUTNruod9x|t;J>J!b+I?mq)*+WS zXQYH1%u0h<)XQfj%~cChwSZL%lIF0j6yn`2g^;hVa zY#7RV1vj%Oo4R4_rTQxlE~@?t?=d#$95&evjy=WuG`z(-4$8oM4{_o5f#!0n!l%Be zV*2K6$lQt%st%%Y*_<-bba;z6&>W9z%M!2QBK=ST%oaY~TU*c+boDr}V!FR%!*5p` ze!JT6gM`Q^2iJV-CYlal8_&|T7s-e|Gq3}7@FWB@G0={}huCbt$Q_?&Pm+{EH7d05 zNW>hj;Aq6F)c6JZtdqq)OX(MBrdcxAq5mwI;!J=vA+76RhmH=zv)jAv z;!&Fw*?vlUG*sceIm$*gUM11)J|CyR9Spw2?2B;y)mQ8!A)T=t8EY7@}uGc7-0jfA4knhe?e4}>j3#d`kg<6k3a~SxfFyP2^84!=ADL`v6 zjZC-7Mk0tVYUfH9Yn1*(YeDPW$%HSfIRv>d;qg1-vBW_@sdjID zDL4tNyVtwvY>@A-ag#T-aZ}0(%A1gwiV5A^bo?!}R_osS(?Bp4ZSPlUmgjhuVgm0| zIM*i_eU1ZE6$J@vPn=L|QQ#>`v)+WAvHN!?^ejVq@w%Pk-ugNT?LQ~VU@GDCp){v8 zhc$_TG{R}u43K}@E;*=4!YV^=jh*jh-H>x{y+*Q!yBv!|6{%?%60lkZ3Id z!!`a}Y+8DA4dJT10{7N8VJ8Oazvu(}!y}O}fosqm8RKvgi2}pi&r#x_+dQNbX`M(> z;tB{6O3b;S+A+5=O^H#raf}kc71DY)6Uzx4TXHJ`pz zSgU5LJ4(3`)i+;0pU(1MKF#CHz7aJcjUR!A*EY6pJ~1{vk>0CgI#bFK zfZj;G5fz&}F#-R^lVo%^1tW-3oue*}~M3P4SG^uL^$ zS;8mwO+nf6TO76A>!>G}=9Wf3`nKpbH(BU{&lg4??D%#!44@^Z!O3D z8w)ANpNsH&<(#A9onB3x;@zKCOKKH9FQ_LWHLotKCm=r$pN~Nrf4%aTp)S~q--pK6@QU_}rS$Wu&JA=!`recd zjx~GdwT3u=C#VJTJe%@2Lp;#uKHks$tWoqWD|&o{*Ps@u&6Mg7{@T zFR#C)+j~utzoA0WN{3)<4gVayxR<4t72mpB=QywQcVS+lQLBW}9cnuUjKCZ7X=Q)G z7XD1C6KXL4F1~DAOrN7QUKThCvPO-g(mmJuB48~d5ar}$ z-}W@{i0lim7{64~TYdOo+F-{_*Gk@t?E@6aWGM2mlF{f<%)Z{fP@>006#c z1ppcV8~|)-VlQrGbTl=It%2#D&e*eF}tYhzyWHd^X|9J7u z;_Dax`}KeSf4&dX0RHjdf8YC*lJ#A@6Q9|$#9x!wzeLG@k|6*775gN9{i^cw@7M4N zhS%Tbk34+sKVIDaFEP&IGRUJxKZk`Zeu&fHGu5832QRci*g$leFuVs6hu++>Bm^qLoNxRjBC&Vn|JQ$Q<0whpO0g!iEMQOG?lz_Zi|t_K*c{$L zzAkN9gXOa483DE%!CE=6^)sMaiBv2xSZNOM&JH>>&NtENzj;DN^gWZ;{J+`-+2t0r-;H9g$Y(bAvVJ>{7}}qiz`3*$o1#T28#xM{qHTI?sz2Q<1r5s zYz(2gO$>}04~U^S7l;psC<^GktdMR zeR5Ab0K-4>~gpwf8duSP}G-${Fowx!vDwli+tb$aU-|39$S^?vce({PmvX zJ{oQnDe;H=e5HJR3ifM4vM5+A-*OCqNmtB(NJEhUL#x04sEpcC6meM5NR#xca~&nw zW7N$s5U+BM5Fa=(BaDWir7Py$FDCTykahFS2M3D}S$sx5!+6?`D|AvwBKRy_cOs<8 zu924x&c0EE;IkK>agvQsshm7h9AzYH>4y#e){kGbsYF0oDt_0d4h^RJHHl!z*2(BY zx{Xod;Qj*k*s@m;ux*@MPp>7a#$MleXI`=>Mu!4L*&GwYWVTMhW+qq^Aw zs2aGsa`h?$F^a=T-Kb}9GV%)^&g?LVW*LX9oQt_@Gpyj1{L6yU*A|q%7Cws+W!afO2sxyy~7=#?MfDZcgypO|JQ+<*}v_7-2WumYY4SUV~S z$m!az()A`y@CA+Wp{5Zn|^9CInq4UXjr0&;Bx z$l``4ebTObTqKP;Nz7_o@}yVXx?`6U-?EJ=f8XL4SD?2tQzICE%Rva(%cHOMG7K*z zs+K|%ce7VuBo_0nCuX`eI>0mc!?4k6caNLG2y=uTEu-}0@w23gbp}eO(o>ghGI0&j z6j3P@5fPLq3B5sS+HW$Va|cxT~8EEH?-4P$Cm-L_jN zo{z^wD|m)H$dehfErwD5+zgA%_AEq`jIQt#r?QFbL)qTEfpJUaa z07Qf^*-m4^B6DsmoRn2O8^t!LnQh|z=$TF8Nt?v8MQlg1u`FUMqS+Xl?6>yUo7^s# zTf4w%(w=(Rat@0(>TXE>dx;tUFhAGlhBe-A1>%L$9_w_$NE&~-U02+Z7IGDD$%kmy zl&0$-XB&@O_Nt+>g?g24?M`2i$;p@eqUk#U#YgGtnF=&5$ls)*5-Tr(J+EYS;EGjB2Yx`gMsZe?j0WYpR%}l7 z+Bc9|@Y|TS&TfC>Qjb#x0*3Qh1^qEBP`E z+|#h(rPcQgP59Y@=i{A(1wR|`Ct|?c2ZyJTg0F zySeRHLcbo?^0S}G?jIQJz4oKb;G!BRx>a<)&DaWCZ>JRxe?Lq?{4c_^`{NJelM`M_ z6=)^BEmTClbTU}wH2jw*M&nZYF#Mgm>w2qQ7&~}l5sQ*arw2=*%1?tyQ_dv{pXQFA z!ltcbRsvX6Gpr3X6u|G&?4IPN8^MMXP5F?opk^(1L1WF;QZy`ltpcG#$Wnn$3q18h z6GF4=f*$rF#|t0B^#P`^PL$JZ7Yk}|uZIp@omS-PaIiz;G4sS)#tY6DYhr|`#kPc* zhVa!LhnRG%_ex%Da5s2{k)`qXLJ<+4AQFRy3ITIk+%sbi~=o!YY6hMlAJbT?{CEaTwol2 zz4q^;fRzJ)1=iiPN|OVuwUBx^F26U9ffRsbq!b7%q=_7^ikI#u#*%2MqTP2Gp1`8< zBzcUoG+Bdy_t8DW-XQ#?q2;@dfW=MjXRYQ@algVm*a}1PJ0QwmshE)p3#{zIHYQX` z8IcU$)xOjXOMU@B^ig2r4t0vCaG7q*1JWCXqQMW&+T_MUH0?-DH-q{;^G{*#{&-ac zK^<-2?$9vO+gumnFBD-W9yu25a#T=qCWXx*VZY~%OYp*a7Tw>ARN&%J3nm>}ytKkJ zjT5f{0UTSNZscf#$W%4DIAc|ljUihP;Q4s6wpG=atRmLwAXip7 z4b6_*M6&bH9N!94V>^qBPDceY+E%&|pptoc-8Xh?uM01K;XJ&GGMYKONX*S{&E^tH8fA@YabCCiu zu4rk+vXEGTF{>tA>^Zh<(kXEJqSVPrFHA^^Me*4%bgSNXhBgZ%Q7p_!JpT^s;Q_m- z^)UlgEuEcL2!aO;w9~`R(i%OgRhx#0oGp|s|JDHtHgXDPhhYvK(t~-nY|(=tz_Q3= zi48VjDSrCO zV8;%{7RBbB`NBCa)lKjjr(O4&hST%eY)$r;IMQmWY20+Y_33Nl!}G(ZSJl=0DbByU z{nLH^UH7voZvV;HXT>PgJ$3w&G#iSpy!TeLyWgqH{onZ$vdVo2h6)9_W&3Z>fHLkOih>YkbTP~v{>uPN+{ z9}Xj@>X`or=Lb76wU2X{juU({yp*~DP(nWoE!|NTN))e_;}j?-=!FP#6?wdc@q~@x z{evgY>gE@wxDRhyRnbs3tXSiSS`O}#{Y5hM%?%L&{>4vZn?*E_0?PIrZ>W`KH$j?> zc}J~<%zaXb@}0~v?`A2Rv}xd|6~{IFgXN95D%$mK6YMc29cP2wj%(qo*smBM#>gs8Q0y!Ib%xpbAqu8W;b_24RgEAI9m!$|S z%3)n5Thpo>(B)f?jE6{UbK+7?LJ&GqCLxHAW#-dlIo{P^FxrS*iK9u-S00~# zBr9neY39%}S*0h-0W7CfvnHm&5qm74n(Z?lM;-8{Y8-V^0b5((uBBOP4qvIeQOyuO z0t_{Orh8Wukv{DdoW|XLlViWcd%T`iDgGzEF}}&d3hipQ@N`$c)oVvdwBCLp0Ykjc-p1B1+;kLI8f6_UA&)ewRK?F2@}?2eBZwT3(X=XQ+7UQe-W*iE zG}G%CB1TcHBw0?BW&_I;?ttQrV@qN3h6@QD#TOp0Yg|gI;t8Ab@VBwd$+B3)kU3SY zP#=R)-$-ngHQZQv)Kg_i6-DaKl{!yGT2RW2E#>l-rIn1tnvKwpulDp%-ifj2pv=h= z|Cj71_7)g_kBa<%>M_%*Sbxp%8iV2XKy(b2W)4`>E0AL?kLhCQB&thu(@m9Uu|eh#qGpf@)ySLZ~NqP#WDQ z{QKR9N0Mb&BB3|0w3aCUdqnf1<~hQOt$``KL(i7U(!7oDvR>jj9x&CG;>D~j`vjh; zfJL$)OM4a=FF5fe*`YS_M#r0|TD_5YtzZI12GgCUnY+8RMvUepd%u;f8tRSrXRdR( z2T(e|kK^kK$6(HzL+WI)vp6It>w?h4tCcNG`{U4aQ&Q|eS4}LAxd~7ne&v$ zGDL{buE@G-OQ{up_WZkan>QRA`yOUS#a1QQJ66{^H7J^^ZwV;SG_t&(UG%#sm69mB zKgsgCqOeGbx%h<_%$%@01=clu+q@31Cg~`;;k~cy@WZ=g$tymk_IoeVr-Z&JqeksF ze4N21?1CFn4U!l4U^O+hwG4rrkA$Z2qj@to_G>C?;JM_Aj1N6bfi(&3&m>DoY|99r z*;}geNti{C^>m@Z?%QajVn(#>>ZR>H`1-{8v+erK&wqQa4;{mYp>x>P0I6)4irlj4jNApG zE;Kje&-73zMjzo$3iR>_ML)#D_l&CzORVa&^sn^Np?`Y6-7(vmt+<(8l~xROHpX?< zsN6qdD0oQI&r>tXPuV7)xJf>7i~N)f@-w!_&&M1;Yiqm}Vw+pgwLMfd$;R04CsE== zEx1D`;nIo+=_uSB)~=pz7_RxJG!AKdN*IFVuP_@xw6J7t@EG$rX&=`dpsd2PSkh0% zb&^$2^Y)!wTymoIZaJ>Hr2ln zrn6jlBo7u}jdgulEr0xU3OQj#zD(>st1f8zHB3K%|6^RQQd2$`8tiHBBxz7&wphmp z)tlUj4Ad>|hHLn>S_Q(BbW>QSSxnhQLf(i3?ov2}xsARmZ>vSS2a`@>)rA*ErLeu`QAYOf$+Vu zLj%_1^ZQqUGCmJ2S#SFZuZzx~fm4H1QmkK~9jza5%bvj4)N{HlgL5T(jhek7vA_$x zUp+)|*w~PuOP;iKk$Eq``TOu^V|i;C+U5Cd%7iyM_VF?6_^LrOAd!nUt5WbFAFTb* zsB~^UZQ3iUXlEoKV1H=|zb%J#rGmO86gtd&k(_cPQEa(gbYdWy3OWoGd{IljW>oAL zV&^O{eDX_qv39wI)y0}yK|L3HD|py$m1f*NeC~x3eoFCJw*f1(Y`Fryxc>tt)hdc} zp|geBqx`h765AeyvmBi~_^TCHPp*xtb^zEjA}uL<%NJ|9gS)E8z~%RY|44WwvN#OC z+j%4swpL*=p~D`bGR6xGIbL2G9OO4-lRwy>3I^MZ;)V+Gbq^U+s45+p0Dm<+2uu25 zgHL>`qgfdnF*`tk--|iMfaljF`nO##E-PqCZQZ~s+Op|zr)}dA#KgNa3&=Piu5c<8 zl2uswAmov#c;jJGFISwu#R4cU$IG)VDO+eLq4S35Xg^vCO^QFh98z!0rD{s;NWkQElgLD^d%TPK)08m4|b55r2PR0oFe% z6IMQsrvWAPdnv%ZvCne2&A6)<4~X144s)1AT~(ms);RoNFfa?B%N}w9Q7nuv+mDHu z6PODy8`|Rh>r!~%WTHs(c^l3@8XN)b$m61V=3y|M^w(M@YjrDargtGL+7xJOL*zZR zSQ_^BY3<&IlZHw#*Mz^_i2!$}6Ju<^ek?h`LtA=+r?zy2W83-ERzt#kXxlj6d}v!` zl+!u0J*6YtQ#!Fdiv!!|abA1s$FLPQA6vFsa@i?QlbX0mtMb98a=j^jfzRQ93r~}Hr>`E&U?EzOkzUfTKpfmh;0|Ua zEKefph3M>ui+8)f%HWsJplC?By zr3AQ2;})YBOP&oV_&Z;2SId)eX*t88dIGhPma=rdUtD-s!~K~SrS*9ROUwA~F#VCN z(?@a{$2O%K@D;!|iz*`SGq&KO_K%+9WM2HF8EF<+9{?-*A&sdn9TY$1oR4PC1XdDQ z8X7}3o0KD^48D$@F*u}ofTn$UjJ*gJf%z`v(V>LY4BsPdJ~lv82^G~3Mk~D8>sa+L z7Olh?FZ%_1)qnJ(7?abqmM0U!=_Q6LBfci11rCnpF2ZpLwl$H7`y}GT*tRoDhht!8 z*qs;ygN=Ec`3a5SX*Xjtm#@!eXU#7@fPDMHuX^Pry#Op$NG@+wE97_Mrv`{bKk=8{ z@{vCh_%(JTN2hF?;l_9%F*_&CRhrV6;LIM_5LVwTh9-sk+4-G4yHWY%g9!-QF?0hS}>KhiPZ0w=cdM{jQUCyYy_2Rpx`z+XjFZtlFDrDI$(p7An8&9c$2; z8=sMhZZyR+%=s1B^#(>lK3&qwI3s?z`+Mq# zBve=yoV{3z2mJFz``4~W;0q#XIZv3u!_s&nR4Q!6Ud)!D$+pFk^PmDaG8i*1e6FPe5b7QE*d}Cxxoi)9ZUsei}U=-&5kLyE>UC&5R*r2GcT78B#? zrHpKhvAMx)3beVIM^c1VYVvoa+GVFe9r%HYv@{jea=D$`sU*(>?jyY6H%QFOsI<|+ zLzfdF_suqVP^A5+F3xldSK8@Tb&kugCKk7L#vtaT$WSp$ud{SRvU~?WV1b*ZEM;Ks zx(q|Jjab;kEZ9<&6|ux$l=rF@eKP*5>>|$l2a*s2qhlGrsw4P5btrBqV_*T6^{kX* zNj0wTqWf*Sr6x7w{vIX&UMzpi((MM2EepcIe1HA6Uis)vlo3{=g6b108KAy4t|Vtd zc1`25_@IPt%)+gAu*D1DMOiSs^sX;1EUs#shZcUngfHQUy?;P{41yRWixIi%GK|>AY1vK zoxDmzRMlSei))X!rA2f=v*CFp2m0-ooFo);bZk!}iF{Kyx;)88KrSMS@aK5Pl2w2t z*C>I0?dK0Jf`lb@(aJc(@OYasWdd3q)e4NLOQ=?PW`}Gky!CiTia@T3G_5YVAqqUG zeBDDQgRA0gwFkQpk9(goo@7couLJFxie#G7&V|t>r);40F-h%c6V_anQ`m-DUG-^h zzm91I&4dv}{!Ho8g)mLkGwsPD-kb_mIs|a`5P-Kl9}xYeAa*Cz?>598;`f?CfA^F7 zEjkeewgF{Y#s3ehTSvx_s_UZn6S)23#jEP@PR$|{02lB5&8JV_m^K6Y^yzEW&ft>$ zjy*DE$+x^gj;?imHVQ)%@q-6>XhL}GmCC~&qSnwOowp@-w{j*_H27hEo3`tbv15N< zQQm=xd7BoWEvaf;k~vKtNmeqP3fibG4^rfjC0Mcobt;y~zP=+5V1@L|%4Q=;UMYCP zIfcs^$D1urq4ijqVn5bFXZ84iU>py;+e?~7_Yu}K5$Acsi?8?WT?{-JZ%O$!+k?gX z<4dMu?!`|&Ro=VC$Xb}C__4EsQDW_w9$@YL8?dSF%o}kjUyrOY#cBs0;L`Hr|Mq?G zIA^`{$QRtiCb2nGV^vF| z!fH{g4b>M$d54G^J_7sGM3pum2JuxOM&ot)TgQIaK^|Mu>x?(zYiAl~f~JfVtoY04 z@6_o>Ti}a2%3X?$eaoJ%=(yU_JY6f5LfKElB2D6;Zt2*cQMCD_>1A z=1JlKp0Ft~B2jyn*=>Rdcx{XAraPZbZR0ce!Rcyu=Xr~1Xe4%Xrv!7k_E+F9hK7y{DLkV+YWr=K}o{IB6Q7Q!X& zME(FQhaYM8%aJ8tQe4jC2iwxuwD9FXf>Rp&-50GVP##*sjgsl$?Fh0+p;{3bY zKi%iwb(cm#sq<*L>xpay2A1yqJ;``8Fua7vmLL&00P@n!|HaBeQ4kd;yp6wQNd5ml zeQoQ~aN(modCp#4(8u2t@dQ4KK|rCz&OHlK?870;-tL5#3z1dL(o1rbp9#TM@9>`6 zo;~}P?xtst0>hjcPZC;Ynvz%cY^CLkq={JqDP$7yim=^5t_4B8P5WVItt)5js%XngKp3x*J`(e*dH3Icu_z* zY&92ZoIb+XJ9}FF&@F5b>8!CbDVXDwgrfH`0vrz2Wp`i*XArfz+4~bCec|h6HQ4 znR)9pBdzOf3vCR=KLUrm+?SQ$G$zkEN!Dfvb$NRPB7%h{GVR#CD??$xmZF`9}`1t+s=rLCq{WODDRSoYK`$O7NLO;4=`@% zxG$>cl9uM-W~Bie0a9Lyza(&~H)q(@nOxIYpKs`m5;{0YD-D$2z{T7HTJwHP*9m1Ykm~GAb(XQHbWxA1H7$a7uL+4BGFmq zR#T}CHTU3*3p)8H&?;A;RBR2}LLCV&qXX|X2kI8JExv#!GJbrY zX26nbu0G2_PwK_dXChb5#;D)?b(z_711k>wEW8QQ4Uy+IrsfiRNuAortN46CkK&h3 ztfY5#i(jaAL7mT^7)e#vAO^`X0J#BviAipM#!>==%2AF7$n683I`<<78^Rq3`i}U| zreZ4i(AbB*^g2bCn(O3ux`RzK&%L@Uu;@oAD5HFoUi3tS)OxGUFzQr#1G7i`FvFoLh zA$54+rbI#5*b!;;GCz7I1z%*SR@gr@W{>AC*DLIhtS*&wz_5I`e6QkEa4V(IP?#0v zZad(WzbS7Nv=z-A2d8afdzKMX!uc#O#=-L}JDTv@WB`>B>)K{D##5)Y7rSYg)m!YP zPU|lib_gq!8QYnd;t>N0k7;09MXJ+Y-3!mGgoY809S}Zipb?NftDh$179vnKA-kj$ zeh{;&*&j)sMdZ=A%b@%{;7W|brV%o56~(ec#+I_!sRuOLq!|q4`J0UwrfWZPA_?nY zEzbh3_l9t>TeaF3)U=vYsdBuk)^(i`o=^RIeP79GENW28R;FcK%A4H$X+%`{E`B=} zu`JTLSvM+vQzVLW^KS2@n<6kAn^#;GkspnURTPgZ3H=8$1@L5{Uouy|9Z@P-qMj28`s;5^EB=~HsTv)vhesv!H5X~Ezx5Mt2 z>bT%Q;L$Vwj2$=zIF~%c)>xtgr#oYW3LYjeQZ&@<-(#u;;@L@$CdeG^6Kp305QbWB z)a*Lm-Wv-Ae1)nm!pz(X#F!cg1DTADRtkN5PXi*)BDxKBdqq9`Mh`hltKgWzbJ2rMz3HxQQiB%|QzA0Sv(JM4!PWl~d^sse!}e}z{D>MN!T*jWN| zxS1Z=RNeytI~cFfg92n%Ay{`JoW1abvtbou1q*1v*=j$&)IU=;$1pmrgG#&H<|zp7 z2y>`+AkCAIUpI*B=9=56NS)J4`mNFV7|E+Bp>YC!L|*;#_)^Y2jm^Dk*11;1XMv0$q|!b;GsvcxCp8DRZ-R*u z*@@oiBJ7}~=71kkec)plNV5s)d^g9p)845_q$Lbtk$fog!mI@M1b$6tu1cfqH~_7CEHX2X-RA^rWSPHbX;_MYRRZRDV;=1|Km-)2U_S}AsgxHHdsH#*J3+)-g+lGFGS{^Qmn+8 z=dO<#dniHZ#UU1L`vwP_scWYV>4-biz9bWd6`ZLwbW}lGulgp2k+E;>b zH+}!R6-h+I74sQ15fqK?RL5fgf2>bFBb{1?z9el+sEP!eC`CE)A(Bm---{PL2qXeqccj9L0Z`yFK%B`m^Uh3Yv<6q{XZnW4^Dp_3q0Ph%B!1!pd|`3rqk`}$sIJcdv+ z`PN{{p$NGmU|fNre{u?~_|0$FgBFR~C$6JBC_pqQU(lzcv5Kv7ACMu8x;DG7jO)75 zW%SIwN+$7}rj&Z04I_0`duXt_Hc9($Z5~>NX#J+X2GWFIK9L8sU2l&}i^_Zf&3k&y zLWtwua*mG6`+7`?c${uHi>A$9GS_bbKBrZU7QK+_FyZE+S@_kCv);hi3U$#w_+v9= zJ}wXf&!&$>{MY)_YZr8Bm*_hl`BU-ztdsO`LU*wCkVK47XQW?6{N5x)IM z5By6fDx-ZjDc;k}E(~$~pYcro4q>Zyr)bk5nbw(WzRI6qDJaK)Ga57{E zBF=#f93Wn9Ab4gvE}9{CN+_)A-X?a?jOMGy0ZoMOFKVmIxc&2WLzr1KAi>{EaWU_iiq+x!kcz%tX7-j!2A@ zy(g_&OR~S@FY#z%M#Kp=OcBUWZvyM_n83vJBkiC?g7)W>Q#jar}Da**9} zI5PT+gzwi@F@l=)T073TUY^A? zrOoa_%Pn;K&c0*wUazIsdb7ed&0)NjX9bj62m8}c13`4dp2b#b9g{C;vZ&|!DB<68 zMG;It@rJ!OrV-_b*bikyDZ^^bVBsh`OX4DSHy%Q18dJAG=N@q0Z9eQ90dW#-?F&%G zcz75qmwOF2Uq36_C*)+{H=y^ogH!gQN;b7qWb7^{NZL@fXmnpXc z>2>uX+UDNE^tG-+WqG|)-+Zt0KH%lbfcdQ4~?<9FAR5PX(j%LM^+mL2Tn z@8+0y1Yn{YY9DpZ-n&=>5Orp%Oxx2PjXuwP2D4WtfTLKUXnQAI6-2gJR$u+oS}9_7 zIqNAZw7}4Ydty}3l~D!<(8AkJmhv89IY7GY67WYZ#Cl$wBc%{1^M<8S@@VuIw4jTxFqt)5u&6@kkZdN|NFIO@aUb01{) zADs?RzI_5n+$KTe^44PEwo&b?iHk5n3>7ewW+RWK@!5bK)+b!sgz09li!m?U1|JNK%yd_`qfsueGV6Ga#0Rb(M- zB-~d0o^4E>@d-N+7f)pt0~S z2q+DxQw=@A-Z~{Vj63bNaxs(T{dNh+A|t27{J9&_>g_+52*bDPT*X2X`%XI;(ZNx2 zMrPh?aYteaeMbVVJcPcolPm@O!qQz{ytGi4ojp4{5Jet*Q=j_)k6Ur>ECsU$Bl9qk z8PR#`e;oTn#!#gwd+%=z7m9WK3Ee+6^rI`%*aQr0SLPte+?GZ5_B6Og%mGyX8xaSZ zkGUg@20>_S=($)F7rs7RUZLae;3?A{^Hvc-=}=g-?5juZ#rRjOxC)`0)TOzrJ$cga z1lFK8W2|U+t-AZI?6B{_H4p`5E1{9}?OW+yWp%ptoOBReFxLD7i=m;NHU6%v``yJn zPQ(NvnhA_}eM=AY@QTwVEOj_eJ8;e}j#UtEXklW%w4RMdSB6-@m65lGU3~H>U+Eh} zy_t^gChvymBXf?Biy%^s_vq)OCm~%G$tF-a`6*Ar!{dG5Af%%gD>Gy!-eg~~hMgu1 zw8@|8tB{`8M2AdxKnA`38n2wZ z!*VQc>m=9&H-NAd=k}c;1^rYrihRyJqwx^+Ha0>AnXX0YexrVG61E__Wr<1nE$|dw z?J$Jg1?DhsX%&5swfIExE}kvOiy4SwmT`6n+!U~cO>YeX_{kN;V@(EinhL5_1%*E7 zjQu@3CQ8Wlsi{b!dVfiade)%j%tgbCftz+?+D;aIUcc&z-{oRiS8khj5uy%>OE2~Y?E4o*x|nX@x<#$+7LPhIcnL1*)6Gmy9Fs26oky#^gBO!bCT z<_~F&35aX$-!wZ5V%o;=YyRTL%Sge;(G$z-Fi+T_@B8=(J4;x3O3VCXiGa;f9<||y z>lgl0)}WScoO=miwWqgh-JL2*L4Y|+XlvA<*74{Sl^Y-(_>pa+xweL5hnK4)>h?H> zGihHGX7^GVE4)n%_7pa5-}or&D1Sdh5ND{^ATeR?;9n2RfVq7JM@5Hu1oWdegN1!S z?)tLxyFVPm_?CQC=paVEYoZS3S+(Rvl$0IRGEhoppioi(M4iO1y-Uowxn~H3z>47_ zES=D`7r2x33R3NmxaN(}HRbwS4`vA@#69HO4!o*oGK!sYAU8Ghv5VW~+|M`mgo$OF zW+6B~y#F={Q4lA&<_}U>R7AGlR(+&|unnU~SYttq9$3Gh&ao~VT%<$JaCHgfZWe41 zSEO+AY-H+)L1)Jr%O`?+ml51MsiTJ-)|h`@YnLi*0DBSu(5bst!`^I1As6!myR&G- zuubu#ly8Q6c@>SNXT}p6h~?vIa(R7tz<4wiD0U0tl$j_pS(9Yf7+IvxD^PsPs+>;ahpAKW>Q)+5P6l`je1@l02F~m?}L^jCg zjwt)ZCiv0q_^ulVDMl@t`~BN7j@Y_0p~I^9xvxz#V61weOwad*K~mC(@SwaK11Gs? z{1Y4wQzH8ZnLP0@f0EuBpKW_mu=i|E@9Hx-f)ou-rX37bStyfoNg{HyClgF|{?9xG z9B4>cLJMb=#)e-S&qD|(nXEWdmK+ApCUnJ8SqC-GiR4th9 zHphQOqRts5G}$D)Oz?0=ZjzAsDwxz5*CpzbK_ia^^=CGdwsOP4@AmEE|jw5Kx?i z*Jp%oiXBf8UX`}=$8MHd8560Jz%@UaA(K8Sj)t<=PX3|~vXtmdQLxw!7TBcm=7VG? ziF;TGHM^Sf=KA2Q$=b@Q#!8>O1NdMw<{kicK!8t=9*1n`ABb&+NE*l%G2-9HBb9H6 zbC~hwSf3bSY19f|TxTV7H&-3~RnBw@I>9E`l;^ddecyincw#$k?Kz>+cPhF-&vb&- zzyUsOi1gngOj2AWfMgbWutt%z>>#=UvMBgv&Q2y zG0pc?lCNQ z<06uSobx-c3_<4f>}*_AY?>#CLz*+4zFfq9Y)L%RX|Lm`k7G=iiDd3^Lf6S&@$MSC zAM0HDWRt_5jkMx4Y;s*#duoguT=Rrq3J*5pkm?jck3kvIN!{ebAemKhW@QLkVfE;l}!tJ zkI|R6-K(m$;|KXIR*oGvmC$eLythNj(7(&}GdV!m2}@4LcFoIjgjmgx8W;#3uXJ-m zy=>Zw&1yYAbX~A0+L>%_B;+>YbJAM9&~KgK4?+H-|Gs=9w8aP=b@^-RnW9sobA`d= zU34>d8Lsk6EHnw7StggusX-OdyIF_Ic?DkZx{=ZM_cVycY$Z=VGG2pG&AXnSeiss%K!mqEn|QY=$hU`36PfM3gCCLRRJ_qcpK%gnrwW zKP0W=GUX~vbPA2QLYG;l?y=!y66y?atQaJgYGeyWDC~A2Ai5;R1`TGvatZm5GHI!_ zOp|o+;;U2NYMv{zFa7#N$9iY6F};TN;F(OEZJ3g?B6fYmBotksPSVxLkcDR`y+d?A zH|`x7x1QEfFnFZ#Cg7aQza-Orzb^3>hbU{@W$Ya8M&os4G}R@Z|>NEH|5yIAOu-)kp+vhdVgsA!ckNNCkMv}xX`h8 zpSus%&4l0dX9Qzt%2#$OVcu_d7?0Ma`_5o;3s*u$wM5j8_tCzqpz)JlfH5j+PheG@ z+FN9PD=d(-2>`Gee$dO?YS0yyX;b#%(v$c*__7`mmqxnvFL*^*`$|_3H~14*OZ@m& z53>|9$NToCG@RF*^g0%1i-J26{i5qc`%ucz4Qg zXeziDu+@8vcg>JrcLtb8sfB>Hs4`qiAGQ=PQH2|Bb{NPg_sQ#M!0pa6M z3&&vz%W$44du0=YK3JLvLHh~ambHHsNH69K-0wLO?XZpofuy7QYH9m-iE`jdY}B18 z@15+4cYH+sEAFz&xZ866m>#IxHjg|{x7I6q6AqL0s4UyWzohV&4RR1fsw@g)F#_Kb zcF5qN{zK_}TSi+DrVH~0+0q2e2H!(|vZbc5B9QGgWlWu;Z0_`=Cags1!pZJLGNf1M zb%NQ+7`BJbc*#kEqa#E>H^h|D-<3&U2lD=e_4Rd=bkjesXc_x{k(H0=uLOFmVXfu! z=Zxz*q-pPIrR!r$4@mfcxJjpHm-A+FLFr(lMg4T=@#1ksOrRB={H8`wgxY37ht1cv z8}gwo&pr(&m6da5L}=^R5jE}_JDbROrCx^eSE=I&Qo9Of(v{uk1XAGR1Yf!mNnu6s zH09MvGb>5d3GuyI;yvO4WuRXWaE1w`5R=~5BRNsv{Z+<7%Qu0`3Mj@P3Lb!8m_Syd|tHaAAioa=2<>^nRF_*kGb1ib+9Jt}B zhj^-qEW@<&J|7_W+&>e)KX7A94C4Sg#PWAC=EgU}E&k2wYphE3=6DL!3E#&8c0TIP z-3Dy*62Kg#&bU`WQxWHQ+-@oPcqINIx)e5DdR2>@3UXZlG~}jH1M*>La#Px(+PoZc zuWG=bTmtl^o{fiJV_KRelrP#O23mf}ZrvI2XbO)cHmd>a_S(A@&bPn5eVK_>b~@$T z?elV>KTz7rC{Xk*+=1@*~2K$kf-2SxZL%+`V_p8@7iYNFrRXXZ2kW( zuk4qJ_{|8d!O=`Jz38H_FP`%6S|L|Hnk0eZXms2_IR)K0|F4~~0KtsR6}JTvLJkE! z6~Y9U9Z%e6`jv9LB`+y={ZiS*G6NLJEziZ7Hf4$9Tt12~AO@%x`Yg|0>ON}u1xj*3 zoust*(=64sb!!rk6Hq8I=m#oZf}n+X&WTCA@2$pRx9*V6Dj2!EP)=!csit}<_IqBL z`@lcdMm(*AtNwOX7rlaS;X7W%`jG8oZG~C6C8U!JF>-VW*#3_yJm}vCJ!vvj^=(vCY)qpA5<549m1`A%Q&pa#w>5w9;=>-HI;b$o#J)i~yaV}B2QXs*V%ZuZmR;)=Cy(FT%hwJ0ns?75C z4vr;GsVN%O&r%00!kp0g!@8=1I$NsY+ejxtrWyIDv8w4Ru_%$e#LcU6 z9-iP*Q{?@VoP={fDopZW;W)8=7K~Kg#*KsOL5q^oNx!b`^4^AG)H!EeGvpnioLR|~ zOSpUzF^yEluqh=zqmm^T?d)W7nn<$!tbOf)NTS*~XIlfnV=*x0oQ|n;A~~;AG@;G& z@rDwvb6q)(aF?!}bR*lFPqMGA;^@hoD`koYc z=p`!h3|9Q}NYQ+nA|qS3wBzu8_Kv)li7^dRIL+dl+nAAY`7_hxrwcY=4AsgDPV32g zGH$#MJ(|NjfZ51 z<4(gT#(oDA5wnk#_$FR)D4i1CuY(VLlNis9KhGD{gyy;r9+V!Z>g(lh!lZ1NTYp&@ zd-ZqGb*(ot;P$tJ*G(Gj_Qyd6h3g9q@32KAImnxiO|YcFR4qey5{=yaWhUwlwn7Rp zFgvEq;&Ry#c1L6fyQXg6$WCEFOVkvC2vdn`>i<+RaIV6?{7Ab}pQasSg&KnzIV|Cx8Ln8C*vu-)OeX_6+-_( zktyFmI33kIQU)Z2?+K+x>ziXv6|fc~QJauVpp)orwApf zw^NVkjehh~hAR)K!|reEc3z&T#Xx@4SNY_zS650_86I^Qsut-$|*5EEYiB4yPh42*M<4^(Y97?BVgA@9Vj*@T(6Gd$1hp>9{~V zMi#|IL)C?tL7^rWA!ha+kPdX{Z$CjRZX_5xoU~da8U)GwB7g}E5D(s3wN7vVG*UzU z8d8Q_3nUd~o0+;IT-g!EK&AI1cFxynQ=e!!xww=KlvNQsZIJCmVc=%YI=}G$+EaQs z*FxK~j}ek#rqq|x%Fsq-4aSvD5isNnK!d16YP8Jq3is=FfA-w({^C<_!Nq@VoW&RJ z!5sO^LRxS(@^XF|DYx5pS+K%Nc3D2+XTQJwuv?_jOKN3BfD=3&Or6Z<&;93kNZ-tk zQLx^!CmaGTT;(3&n2gp@-N>ISj!whbFLpQ`+eM6tY#pUil(=DcH(-ovAxAHxQ`Q@q zauXhzV$YIZLdK|BpC1j$uegKohcvBZcp)o0EW^mB+`S+(*e5I!`%j?m9fa=%q;9gg zQsbBCG-)8%vLry}EGAC6rO(!SdyeqLNa3#c^JT zBL-x1^#mLWNOmBAjoGtnOxwafD1Ni2U)}O7af}y6_Lw?pYu1l*om=3s*ZZD;t zxi*^T`IrWx*My>3Q)_wy(jL&wcw)ORn8EgooQ=J%PP~}zEv>GFvEE~Z*nxhUq4Uwf zFxBxv=wXr;6>J|!QFo|)7vL{|Z<}fdJyBLGHb$;Fqe2>C)pwTO-F7F8iulqUu#*Dap}#)pTS)C5 z837yiL|j`391C~l;g~=v5BVf>X>8M8)$$(x-g1b98GTGRX6Oo-qQETyZSJ4JAaxI^ z(~*p*9xlk{XtxG=vV?H;10pzI$KeTOgisp#Yw0cY+kXZW<8F81%PCU6W|^(%kx~>N zx*zX*JL{)F4!5^Q74v{>WhvhwUS2&DNokgoGp>LGawF2~4&<~#v6D`0S;OIDZVEsR zOY64@P(nymCmS2DmC%|NH_~7(R@21UBH*T7?02T>2hkBn;;1V-`(g7^e3;r`kAIx` zJ_R)3nufjid|7a&oz2nkKKpo8Z0b{^W_1;=ik}>ug|)saDsaPUU#8c~L%NMQNUH15 z!jM$|ESTU5kc5?isp95@sII|%mR|&;TJm~L&k0^1o`t-O*%!LT1@t#A!qE(Ikig6X zjg+5dTED*(zG>40+jjJzlob;@+Iu5qmef6 zV@*(}-FPzKtN2UE=?OE85#0Z`ycx-#_UmW4-3BjtssMtA^h!AJ-ufXK$|!{~pFm)c3H zm1_e>yw-d@441|8UqY&V6RK$}WkxtWkl`dVGxOXEz zJM5Y1rXlV)!D6wj*uQ;KvGfo@@fUZwwtys@053&UZ`pUynVFVe*uw5<0v!MI{TOMl zCc4O4!#n|}t!kjqxN)I4>^NVs#G8~bEGGF24Q`0R&MK1t%hBzvn=-J&X4FlfVj2s^ zY;TNkJ%AtzM81XAZsaxUC@zF{_>S>5fG;q009%Jb6sOrMfs^Fvkm38%g4MDU z`lpB{3LJMC*d7>3`T&PIUR9)@;PT@E{s;4>wzK1()ga~Hx=<$7G{pH3qFF>4YT>lW z@6O#f!HsgCrLl1Ii}cpU8H{KZ4rgvu^hHTWXr=hVUsxXXpbGV%d>UhFew7W5ez*2- zK;YX_k00#^USa>HGa=!M0kQ~ikPrFQ3p6`j;@u7at6@CWZ{qMVtf3(c z4#Hg9atMWdFrh7R%F?}(@~?O8X`T=(~vw+ z&^CS@Aoxoq0P=iKbRZNL8um!;s6Jp)uRtlf|b;%xQT2##RS zW-sS*E*WUGl|eA)5lT}7ZG7=UpsNIPSiV~x#nN-<5ma#=T z#S(@JJF?G&pt9ag%5(cRwBRBUldw&OjDCJ77X-<=!Bq^r!Z1!pf3s-~MWd&~9E@WQ zHS%x+dbzWPiZO(eS;5?DS>-cV8SR3~9xJrsoOf!nm74TPEjAdhYZur5!CwT`GDfCO zu}i$hOz}cX+_frfTHb3kZ`s)u6+C){WVS+mu^F}XMh!ZF7E7F4h2E8>>Ex;T2 zIAnhN`u9Q_1d(F!d_MzN^J+f42n&k5?C(p6FJ^%YnndC?nGnDR*arNku5Vjw^0Xk-JxH9 znjC}sCro!#+!&@+N87?-^Z7aL&%nW{A8Oa4O)RdVwFuC2ofopdoOjfRUP&E|?b^Z{ zT6JnR&dwASQ;C0{j6i9~7Ei z*30e}(1{3)KeoD}Fhp7=*gU1^7e4Y99u>zrcEn{O# zu`5X(G9$e20FYdkOl209)6Vb+<8`lJ0M%iPO?VS3$h64DtxbHhyMJ77Ghjh+VB{GC zc$ND6eR=m+x-mrf=8ZgF;>SaXM*SsUSWeVLpVNxi}8hSKk#8F&j56+!W3}4izr~qP{39@$d$@45_+- zOSHN4v_rH~gcUW75E>gHKf!vt_Ny^ItrqGI<);wR*i*KtksAkV`#O?Cyux(`(1=qM z)KQ6tU47^*^;H`?dx%X)hOWDs;>wS8PZb*xfLhBl^5g{xqpse>hQ zx7?tO^iR&m{w5uV1i2<;$fOEgk{gl)Zd!(3V|+Jy$cT865>vUwGSt^^u99up-m5ih zq@tNH?>;e3Kv<((LL+~PR#vyOxG$eVPl5czy0cIp$I&g|u=^C_3#JZh82INs_a9?% z->#CzV}ei&Ng&rj+dmBuy}-J=A#mNG&D(TVgBbPvJzK}9^^F6C8Vwx_O_BO0T=fXK z;f~EWjyDqsd>?M&!-SgmE}+FXVcK9%xZsl0L!*Z68p+SKr!oOX25 z#!osT8fr5{ITGGnWkxQcJo5RHKw1?a(=OkZ^lZO&F8nMwOpMtoxs26)s3-R8VqA!(M+hg zFl&@B%z0H3+o%&TU?Ro1O9E0qp)dSXPVUObYSukExtreQ#k>hOo5My{@Mx3PQFM)B zcPlgE?rZ657x~d>;vr;8*Sw8;nN%&cAVC*mVY^(-be$B{M^QJlZi*xwUP@Y4Bo{zI zR-9LQ6eSnlDz}4zM^Eblvdyg?=O@Yi+6DZZI&gVm_@-burJ(q9I=Bf}hgyW$m$OLB z>RP7n&mKI~6N?0gMjp>aT+LD08%t1|Vawwqfz8ajw|AuGL=e(fboi#Yf5Tqp>w8!8 zeTXk~>RNnjRZofA){a#*HMIih?I23H8yTi8aT##Fa3G~p#SjioMK>#B@AIJF1WEpU zYIh;r*rLhAdVfCceEf4$*6LeN8IAJO zp!?@v&v4Wl$sP=ufrJ#;QFpx62@iH2))@axk zKyi=2H60M|EW{Y1poa{;%xmx%ANi7digCZnuQ0!QI&_9!K9i*E4=TvqJ=o683=h4m zF^?2>v1V}&Z=6r#8@0&AcjEHR+W=fX)hdsX>X5~&P*d=3ky6%py4@Ji-mo2Koos3q zTViEREzGAxT@g(N^);$;<#?H|4&BlVTW`&R&Rh^fS$NPh{3scsNQ9*})wK7|hly_I z6YD2wBHMnPl9;knVM(5u7T<5$p>$)gaOJpdaRx4P-h8OYTUz1QSw)Ef%Yok~{4H55s`YavgZ(d7cWX(AFBoZYpjc zRoI5w99;9@_wQp!5zxP{`IUH+lj+l~i$T1An}@aoVT7i(?h zh5OC+1hyWSiv;SxyA7mcYl%h(*MYc;`m-vAb!9pb$&}MZ$0e07CZ$k$5pZ#++H!B! zof%YSN*#kpSxavpB@V-r{LR?g$HN=2zMqgQ3@@aUp*idNWZus@l2a|3FEaJWCnEynt+y!QjQ z&$OUpYm(-H0=l)-i5&0%C_*KIvp0avfstZhXR&$fZG)VL=(pX@u(e=W@}N<`4tUld zkOR|oDM9h)BoGDvF{4P~Bpnd#$T)SrYxRJfsiJqB!vm7ib8#Io&1%m*-kk26qZGGG zvr}h3bxi_-`^jGsPU_4Yz^C!YLNCyxpxAoC^RA<6@1y5ipaSKewrVU0;?CnLBar&kvQin7(z$y?fDRdSLHpw|u&j zC)D%7t*0zs3EdrL|ns&r%CDd!2zH2jK7kLbs!IA=wmV77DC7rt9D4M<}6*jmG~o%-lS9v$mrw@uNf z?Am$$>UF)+K7wB~C`EY3RX(!`i_!NHi_-z1RK#3zaC-p^P4F_82l`3qDz3$}kaB^x z+}EiTe`+rV$_6)fS*m>Qk?u^Scf^n%Glhx2ZY}Q8N0Fl7N&{!P!6w^zjVWBMc+DL` zw<#vg>7(LSsujG_tZyjUFMK6-ZTAX+rgBnY+qE|QR$=G8aL%qo^i^ItFB^TerxZ~- zQCF3l!kAmzWd>}K^5h(v>eMTGYnL?o(-RryU{!51W2LCaJO-riL-3Zmsdqh@NDjn+ zdcj&lvmb4ko}6*TrykDitGPdI>BGOR0y%3Y-|uTBN*I$F=;X7fVEtU9zWP?Kqk>ZN zuegd>Uw^zsoF*>Pw=^r7+k935aSl{sU|k9sL^_8tXn6zw{)lfC3Yn$#BP1~3XYCu$ zlxE5D7K^5srS4Yt^Oh#U`j>GOItx?JN)($&U1=OATgJ_n7kiDOb2K*@gEF=rnUoS| zvr+O(Ydo7RqI_* zE|fUiyC9Wm+GS`6q2sui!80qnQ^-QrPe2*P;gVXVy9e%fsB%)N$nFb`A5e&z2xC$& z@K9k6!m|v1i?sgfSC&xNFn^WEh(Gp35)&wTSop<;FUSu-&Lzc+4&6rN0pi{~Fl0dY zA|6l1uB*Yi=SNVfW$oKbMdX*clIq4bi)VOr^c}v*EMUj>yB|akiF-g&iz58Bi#Ufd zuL)2ep~iML!3Et!upK?NIEme}Bq^TOT|@8mA%Uf2fo(! z_-la_-|$Yi9-B0dZtIy5=NAOx4j2us16b7dk0tbgaJQ$>t4>y?7|K+Qvo9=Zim`l2 zpTv2w)dvPZQYa70Mpp&OY%}zwDkuw7P(5*C-L>=t8JFbuP`3SQ3HMJ-HhR5xVai88XUoq(w-i>al`Y>({EO zkve1Qxp6!*M9*zUxP*0W1VzEVT~jIodU#DRTwzK8z=@*G(i5Ls@qX~k*G*}_tNn2# zBgL~3Y8rW7Lz%l+5RExua8gh5vxcE;=gOz+;#Dwk@beBB=J3kebc<$U$$s5*M-w?8 z(`DOr@iLA`-E|S=to*z!b@}$``Tmi%>zz&A_0siqbAQ#*<(MdS0^fN?amN`tsl4OU zJ%8O}7~rNC_o?l_#E*8s+1a*nAM8w4YD3}cD|XMe9qq*C+l_V$>vHPApBt=typUc=q-)&) z&m+#|{~%fFFxwK?z1U{888KF_v*aAMuhgllk-tcRO{06O#r@B$Trs|LDE!*^rdl=_ z7)a4q80+d&%>c8n_aEQ?t=CA9n=9v9{8eWB00JQWZ@q?-HRJ#BY8YGpKfM}T-ERKK zBB*@2+dPX%tPEJDuBml^s2SNh#GxdG_!7i_{l!y=qq+1oT|u1yK$MlG!ytz2&1TGo zybE$7Ci1g5uuF5^oxi(hD=+9f^LBjvcKv#G6tr^HYIVC`Db>_ou~}^X(g(orR>_v`cd2v4uw`MnYy|$x;n#~?|gG*GI@nk>~xa4 zQlqWfVXkqGASOr7)1SlEtE8&hl%2rfS_WUpBBcC!%hn(NnKL)Z*i;9V&hXo zD@-9G=~9k!(6OZT=e9PjnCZI!m~)-w%$h*+?q7HB4W0$rI1WkCmImPbSFb?FSP>uG zsPp^<+}qH1?UG9NKPV*Jo55_=DLxa>@9rZjnGGPVXH!B`mkOEXnP3gT@eoi4k5eq-A%>3F_c|86TsV&1%8+U?A6H!Wt3CUJMx z9k11{UtzG8j@NxUW41Ux?r=_Huvr`Pt{)C{?Xu5!I5`ZxWOgW8`81qHeZJMM=y7{) zL$PjVt2^&%eC(oivb0|N#t(Td*Zi(tpf13;*=ju>60y*vEeluU=L04jx69PxgK&sj zRUqdZ8fnjB@jaz$!!+9kg`+Egwga^)8=rzic>0&BxeIQg(p7oCx1}(eQ14{aky9h# zt*7ug7))w$&CWjsJ5=)4P$hn~et@t>Q&5Fz1j?;(bEUr=I_OGA8+;O!TZM8ZT8%Fh7SFN;YaK=AAYg zBNAQzX*cb3bvq}zPBU6MY5N_9ml&88T!Bs_0lA_o!lsa5K`3-TC=|8~NkFaOo(M?`eAeQtZ=+`Y%3_8pqamY z8@`xzdQZcEl zkL3d8veVKLBQ=-<$axNTbt#boRzYBj@T!NQWJp1zx+FI;%Uk65Ut$SN2x?%GxV0zvaYg4HPQU<7co7+@N;uBiAYK&3%DSof${ft11tCrNpjS( znQ&07Y2UJqe(~aup}5Q@ad$>0YdAoL1nP-s_0YnL=P;Ipi9aG&M04GU3XpCB{M}gAT~-qW-|dC0Yt? z#6mG_g?pjKE;R>@S>tg*>=z$~hAjFG=3Zx8pFlO9xGxV5;-P&eXP{G~J z5Us@?1t*xJFVqg(*E`t!rjcc4dLgsCL~8cAWt58Q6o#IZ?tdGZ=!m_z8W=biHOCUG zM|@dAqV2spd0z4^%c&KXbSEfFIWa>;yCv+#9Jx8caB<*b1BaZckPZ#y4qS0mJQ6D^ zt;u%h$JhYh8*n<3gS{2a9tb&gruIfAWLSvOg?hxKq7$yo%R$zpfh<&vPg= zH5PW+&VOn+l2&8CJ(3w?gk-&NGh|bEGQsZe_aN1gma*dwrvNz|-xXH}2<(rr3n^<( z0<61ZRQUraDG$+iz30rAa&BZ9T-vphk=ir*b#w|AJuNY}7$N?4+sc%>3s^FmQq$jY z%W^72yI+d(D9A0N*kkc?vjpP|5z2T`YDQS#4Z@J-4v!^VTa;OA8fTQSnYAQbj)_mD zuS(5P6gqY_QW*e$9Fzw&`dB%2!%`}rf1;kbFpTBItW?})5=L5*+h2UCqq70K=^-O!+@MPtS0d8C0UuXupT3Q+F;{;)?wW^09(-ZkkYN)I(2m z!Hf~|$_ge$8b?{Nj-alfF6-hyEl_gWJ4dhOKPAk#q(!2fw8-a%lfi4SK=SXlm{Je# zk05P~Gnf`Du%L@`3e3Xdye?VxlDc#sI(;J*u#A8TZ$T|j?vWWK{1Wjx_+vwWYP3_` zz1B*tL8#`oqL>pe_xq=f1A{}6hzYT^x=Ewv4Kf={t4z~AUWi;V$S|}o{I z(4w>z#eJ-F&2e4L@}A7R`i{=;O;(3rC^nhT8+#aKdGwM#Rb;(5R0hteTML%7&1q zRt6^Y1VE$#mT10QE$qIDxdfHlNdKN0fXSLBLlrtvMyj-ZHNU-<-|2q_23Hy>cJS|OrAeOoW1s44=bhhD0*l-ToK^x5B{z9MTLU%PO)G0HLGKZ@&pO$6r z;xeCZQs&ccndP#~5zWdxM;go%TIHrdLmQ_ju0>Bg7d;UqrsK>YEz^E9Q_580WV#5M z&O;`Un2r+yeVPqOkEx24PV>SbhG0&D)v)JW1ZD`M1xCBlrJS%F$jQ&E{D$Cfg* z-t&3Qp6nM3*cV_3ch$EruK<$}uLi#h747 zyV^mob-c#5BKCS-VjCg5ANkF+E+>x6kX=JS+7Y&|gkPiuyZ1#SRRman-3XZ0Wza?1 z(OYz1>a0_oA<({vmnP4W0maq^XD>#bUC`JSQ;iWvQ@XVY(T(tN(B1^Eo4siy5;4=h z7%HYlt4&+TegnI0h%~XaItsOL30hzUkJQzL22U`tAQx+Ob;t6sZe7e4tp#ZSk+O6n z!iERgaN4cW_V}GC?JcfU~e=cpj57GdCG)%kBilQK_KMKKA#_j# z%OO~b(9t1uRD?>0P^kz>hmcf+Du+;|2-OauS`j)q1diamjpl*}o%3h4k}A;L-jd_3 zq}n>v>_BZdHy-pBTiK>}P(|JF7P;EGRj#&fXJqfDKS8^c21gv0C9RGK?nGL4z`CFR z2CWDAuW3EZ%pGv9awS&lg?hreSIWWah$mg^Zf{QOhrJ~4A={y{EZy1(wzny$sLpDy zTel&z-Hrs(?o2MF+wsVc(7sBoTP0Up-96{0-4~wM#FV^Ocw+`G`)a6_saw@OzUx+lkLkvmE|TD_OrPgw z@dBE~Dz!EXi0K%^FkePfW7W#^dATxuftQWXr%juBU1z4g;I1kx=^pFv^cRCvqd5*E z*L6H`T2=l<33Paob$AKc>(g{7kvfc5I=m=#c!^7U@t``qrmI#aZFd` zscsITn<8{~2;CK-hePP02t6G_PethE5PB&>Z->xZ5&AfUK8jG|5NZ^muS4jo2>l#F zKSk*85I92Pn=WQI8Q%`}q=;I`KjeV*nH;cqWcoslOh4dnY8%Fz1Bk}0FV$G}wHm9w zQ7g1J)jr1P928GCDR+`LuKHAX*Qdfqyn^BR+4?}L^AD-cC;Z2rjE*EVw5K5cwakH~ zOv3pikeF^&yTfgoQM&cMGeV?paP3pnS1CwLWm_w2b?a05Ta_#S8g@R$ zw6?-%D?taAm>*O2pB<0N&Tc2quW(SRe$RSI@QII1-d1$G^;%ku39Xe zV!)**8MSrZ%B`(|p+wi5m4i><;f_F#@c4~q-lbRvR!vohUt{&U!RQh@FgV?U^;0rC zSHm!eB`j7igl@%>?o)YeH{Ct9)9VHy=WV=jVYNt$49a;;z0Mt6IlsZ#?EBc6-9q;L|E(J8dB@ZH zqM<4?oZ+zT9k5DBWHQsCqvE`W&!+zwZ-?&A zGhPD|jjRu~&pd_b?cwu)RjR=PtWKhOqgf7jJO%Eq&S6moRXvTH(UlQ?`X{SHu2ae| zGI2LC0By1?AEARxlK%4%DWUzc;3u)E-Qa(Tw|(3;ifgZ<`mLN<8`8yc-JXQePwtyu zarTTD<1Dn1S9uJptz*t@Xc4>wv--l1uc1NIK1XSWkNP*J(q3t~{W?cixKaBJ^k@GW ze8?H&OfhbX?1yMi!<&>J3ZVRElGg;>XjSmH3USKl+0Q8>C}>8*Jp{Lmdx9u~4@!M@ zyz9!X?Qg1RJR@0b*3KmuN=#i#Lz`xVwy-w{(;901qOR|mwWm7lG`IAEz}K6qf2Dbl z5?TFBzxrX%M;kBmd~|6OA01r(qL5qM?<=%DbTARQVVB|WUUWg^H)~b6I-hyI=kt4; z=sYfp0=*OJzTCpL^3uMy*TgQ0x@EoD)D*eAIk-KQ8O_BjqrS>;xh}|bql2@4+bGAT z8*XuI3W$@N*z{eN*H#B*i{$|>){v$s{e3z`C-mNPoKqqs6Y3JyRG35bm&F#Kh~b7&h*;O z>Hk~Xc`bghf#$bbjgk06^TG)!PdA#N@J!>s)$P1QlbXD!P!SA!kHFb%Uc`P2I)v<= zd@|d^JBIzxe+>KoTgPZR!aL7*$BGhL+6&wN^0bU&T~3Puk;ED+jx(reRy;3|OhjUV zEh_?)Ick_zPd@%mOvQu42u(u&Fm(GJV&!vTdoRqb-3iMPm8+J#U_8%E&WQzM=9Y|5 z-2OXgp?F?6Sr`k&!cul7tu9%1m}G}z;aCVWoDq^sGj5zx_#KXLO55j@8KX^Ko*6S^ zLCUq+sJ+YaJ+GI7e8;&8cGceJX7`p8UHxJO^FJ$BFp?wUAd z*u}(9m0{L?>UlY#NJf!EGWawwL$?cbJSG`Ri+@}atBCu!w^38^Oz{Ai_^zKE~(6{ot;jX8LS$|0lzu+jvVXF;aAe%!+hmpO>BPz1Hy?;8R0gaio+!> zI(17PVb<>CBC%YSTJ$n&KXgedC-*n5fg-cEb<6Y&j)Q7@wRD!>_Q!5V`p55%hv#49 zj0pkp9{H~`pY8UOePtZUv_GL7RWe>_;(R4)e?~z?W}mBxzcH_Yb_9W%*KzjOBK0{^ zYEK~EIL>k?ek#QiDtSM)miH-P@p{!EOde`D$2Wcr7unVePIpNgxj9l_x^4&jzc zc1UIIbf!GQ@n<-Eg~RzwPjOh!VUWY~IV|B2hE(c&G>}09Y`jaDw*UP#ez=XZ1}M=5 zb!{Jj;ngA9cwWTQV99j*Uz{u6C1S=ya#%D=s+gJ?W@^}>cCx?3>=B7~jhd0fRQoF? ztFicW=>#f+huG-U)YnLkXT&q(S;@hA#Qrzvv$}QFk(WW|WAXx~9*%_Ncx-=eBVdh|i~;*Q!Os_iVj%JLz**TC=K!bndMXr$l+nbx0wPkS7~4Yj5A5aq z#JVu%({Nnh7PfyR+DhO`aR^zr{dck|eoNLP|DCM%EDL9J=ome@P5dPIXftI02e}NB zpOdJAw$Jy7F}l3`o=p9W!LBEt9l_U>ozEK^hU289YInAyvi%G6 zegT!($ZFQ+wWhwFZ~sbYHMluT`Z?wZ&AI!6I_$-D7<20|VIA#Mw$S8VW~^Z9G2{@-Qh_o6crdz#mmP4aQGT#np>fT&OIiSSwrjLf1 zC1IQNHv7tT4N8~OQi7Kl*B71>;~vOf%Td_;{J4yn=;m4T{GhBY4DDN2-T zJzl9>N1>Eto@vBgHd7MK>d)e`zc!Gp8r(Ces`cfsnxD#mx~WXq9nwic7RBsr4d+o1 zk(n$ED{59KVp`*f7M3aD>JMopnL{a73kp`&QZ?rVLUv5U^{`lA{URLbQIvaSmZsK} z2Cx14;tUSMR!umvB`O~sW>DrlSd|+Hg*+wgd6A{1Rrfq9x*yWwr6$nl+F;S^fRhnH!+HesPSHBR)0}|w@ zEKZecd}iqoPIIqyu>{YY`q%h5N}hU84YrmvI#$%b&Ia_<>uBN)#2Yn!k;b65HO=Xp z*0FplJqGDr3-!9Aph*k8f+>lq_4t#l((8@}JxAA9AriM{o^dXDWX#QnBPd7 z>Q7@G7aT;#L^oH-VS3$IN6E3C@o(yNqk($Hq++#8s4=RC2Qr7gYP6^RcF7g5oTjfr zWhCNOTXYWESI=~xB^YR1+`i&bv*@sx)s9#aT_Q9RRcKi0#;x{f!hQ+WS|ujv5!HXuM~hEMEH6rd<|I;f|#(r6pA^&)B9s@vg)(Dvjr8ACIhPnJWuKVKuG>`tEZ%eMnv{84q2@JG4M5sX4^1dL91q9ds9{ z>n98hzG7ZEM6b>?YV+EVPF3ixxc6Vpb5Ly;A{wbqOua_0I}GX<>N=iBMC~ppsjJ2} z?+@c4sjHkj>$+*`7B)xRyPUYu%X4cF{QcVCYu~lA+qe&vdhwLn8>Pe)O7%feH7s5x z_tm61Kz2Vr=nwEP3w^O{>EpEKaK-S@IDStUVP^Fq>0G>Zzfq)LxqVP-r~4Yo7EP zF80??LCczq)yVv&R5e%8`WWx@QlG)QOVx&+q$Yhl)&#~%S_kMEp{f=key^!29I}zn zLZj6-zavI%hebtk^^&g`R~GXmQ7P|`9k2Y+Fx^>korM+GFs!&hV*2W-h|O>~&UQIw zIP}%WAa<<7agNJztV3TtP5AEW@Y)&o#fM-HzJ%C!>+W37%Vt_4@2+(go7=*vBYFO} zhx3$fSR1k7X&Aw^GLl2=?Cnvgu2`sHv`3=#O*GUn2K90@Rsg$)I8Tl3u~?-6N`1DZ z>63EwDRlL5RooU%_(8gI4da}$LI$sJt&3UN@jfz^x{^!_GORMKP0Zs{b6C2X!&pt$ z^Sb{^&qF%#5PB-#8my6F(*iu|mC=c^O?0#Q)g79y?og>N&s|gGCZEReCwV)wGK<7j zONS(btOjj+lb!Vt%hDSrQ5d!-b9{kn$a7Gr8BR>i44brOd|s{v+fW%pxs0h8 zNkR?BNa52oKDadO>E4>v;~gb=XGq>-9p0lnURulIE_tkWB}Rss;K&uVmjWDzYMUho z;Pm_OG#k9Zv%%BuJ{JcdN8;RTrn(CN2D8yT4$t_{)qI%;=yh-Mv+{gt|9x2iaGMU#eXDXKcvY|RP@8eFuVeq#M)A#0UQqGxBAm*gE$^M(9vOX3%ZLY5rw$3x-bf4vi0=tp&wm-#w1)=pkhsapb z7`hA2UJM0}fNA-h8OxJbHT8l~PswZ8w}P_C@Gh}C33s|;4SNY{X7fRq?(#7$p}V65f)FGR(o{R0m@)p3dX(G*FK;-JlV5K1S3NsI;K9 zUrV19-sVYRnKMS=ocU;ZCwPH+YvOI*g34>B?p?|dXRI|!Ja@m1Kk^>%@lJVB)7q!; zrPIAA_xWaW4k99umSuteMN;eU8h^vZ*8FqWSbjHkw0t);jHN7W(@pC`2$-Xq4qjE& zt+$B8(b<(380vKxgxzx0izJd`xm-@;WGQaF3o$bKo)_KkM1vkf&|^@Z9w`N?S5r=e z*gqsRZhf8RFy9-gp2Gsx_tI0}vis`i$>W$>3{ccG<~wa>zG_4Z90ErM1ndcTYE_49 zjam~=f9LnK?Bh5C8^^vL&%Un8Q66+8#DAks`l>qlsac(HZdE7J^hQm7_~v+bFU#}L zVI+4vw@ugUdO+@v!HKq~H=1}%=5Koks{)d}@X)gJ<7u)Ndb0JVvYn39RXuzR>QZxB zx&~5V-8m}>@ma?N^v#8`SMg)Zdawn&oYnlMezG#LZYJMYjEAHko@mU5Mb69+f*LC@ zGl0Z&y9Ztpq^`HfdAri?1J;9S^lGlsre@dr$wAdvJEU&IgYG1Jb$c_WKy67$6aIkYCBH6l{JKQ-!le#jshZia zLf|X#F2LOYOgI3B9rq_C(vk}ONkx88oW|GEpVTTXskJ|;O_nx;XU$*t$XYfzqL!>W{(0P~}hCkL|9i5r4@%|G*iE{J_j$cnuj$Y;v zmMMbm5IBp&TBLK6r}edsT?K{i#@#o#xD?Qw2Xf zj-~2zet@rlb|`8sbsc)6o`1r_@WYQXUY8}|naZh)}UeQS33cM8g0t;$~GFZ+yx zlwI_Pj3h6f>DY%drlO3qR2gUc%Q)vCWfcBq88hW!P<$Px4ScO7xt1^CACMVn;2VJ_ zh<{Y(xqiJ*lJBzXb>|UPmGCgNo|XB|8HTjy7}#^ZvgZQ7Js1Ah_CRJW$(+Vx=vpGJ z?8XlxX*LH|@L|R2Tt0-# z!;W}HvaMln#A%7WiNZ`Xw1sbMW$EEaz#5Cem9H{0k9{!(U0?Q&$#|{V+Ib#U_a4sW z`HoT4j2o$mlzW?LU*fjKAb&q)2CoNBk$=M=VQ^d6x*VKWP*DFKFHHwK!&89fzf?dS^QAt)LT-zeb~Zg(jTOtCk$@we zYHurX&gz|AiCn`ClKlAkP7?gqC?_&n%^OFlzhj()qn*fDCo;~7j90w>j}&mHZt$1N zR4IoX#IKYcvF<8OJutXRQ)j&aewHHVfvdT*A(WTOd}Hv{+~VVIoJ&n>@z*<4>S|yXwt5G#sU4QKP3%qe|* zt2)TP-ZeaI?(sI!Z5TjqM|Dm?Q;7dBvaCrkq0#(PQ(0S7j#g4iGac{}Sf#pGf$N~h z^1dWLBR@0sXAQTvjC$mYaBlfJ`v?X2jj}ew!#Hn{VsTm=e z+DfL%uWsD!q-KVdv%O`&AzXZq5PR7izmr+%B zRcoonK`RlAW>qke7uc8QzX(0B!>_;o8n286q%Uv*@i?qI9#ZR$`*|qjI&3r_b}Hdu z?fnsddv8=K^=PKdL$X=aJ$f)rQ9WES>s9`urYtfe^W>@f7_(HHO#OxZV$_2p%zUzX zyha#qG#_i)2wS<0kWwFS(g?j~CeIx%qVi_*TH^^#U41_VSKnzNqrT?QUuoXu;FcGg zhcKEdC?i>-G8Z&uG9^Q(Dv-$Bm*c-%zb0N8_Udj9>h4KZcTf21?y29ZyQj6Lui@@$ zMtR0xzwWrvynde5oZD}zf8o8FxzOu5r58AM2i!MJIR`gV+`GWIT6;N-z>;ot(%g4T z9aElfVv3{GIZCO7Pbt0bg@frc5Bj{Q^m(C)J})%W=T6q=g+u7`(joMzRr=)0zk1zY zAz+|V#noj#ba`3n^4BK1{I!`be`Q_%dI(*1A3~Qq4f`eNQZE0>uQ~C%?)=hu-7Azu zeXGaO4VRD?@LhDJ8+c6Sv|iJ2-|Icd#*9dXaE}l8x<)5lDUP>{*(nd~(Q?PrVf1i2(6O`TmH!M}YcS0{cHz z_J4*9-bh2%e-7($xM_XiuOXT?{^`_B5O;OOQph>Lasu^8<7W*2I(YV;dfk_7FRvM0 z87Dx-S4zg0j*PFi@RNNWJbG z;tJddPut&mZ8%9bE`yEVDSvA3^wuON8)a(mvdx*ZmCFDe1pxs^3Dk z4cU!K_OH!k3%$AQX-yQ@^(KltvX?`)p-b5T-IcArLl-=V?CDMP4(W%``$WhNE7_4| zvZGC8yWcjgE zZ*U*1LERR*+81$z2r-AikppU@B=3m1-$+$=#6Bzao(bi`tF$%GqrX@v_ z5UY`@HH7@`Xb-Y|1?nZP>IF>ZDuj)3@ba+{)lLGnQwXug;t}*r^@X4F97l6x2(FD4 z>3rPM3q|m)_F`q!`3~>-Y8QHeL*U3Vwbu?28mX1?GpcnLI+-q1 zQr0>Ij@<5iwCU$k_dp`M%y+76$Wvwc`9gjNjBF7rx&Ax3jMiWSV4|EDU;s`DDX=(EpbILBIRXttFBZobUJ5t#fo=r;J(e z5Z3<@V}?s(Mta|3#JTfHO>H^Sv*lVto~%S^?Hj_8KVIk1tr3PgfizQn94kVu70ur7 zC>P12TpKQORK7^ru)!g0_#-xqkv5D?x8dZbHXP;IaE&_omo}6-HXO}1xE~$-uWTrD z`dgW5tK|-XBQ&SBMbmGmKm|a1fM^_#LM(S(h;yx3O`dP`E^|99ci>?@>pSS&;w|pC z6^)^e=w_7&k{Bl1I`k@#su6So9ST&QX4H=L9CVo5y93rB&H1JeE*77{cQuh7%@u~~ z)}6iauUzpo69@Ky;{R5-{JVtn?HlhGU+gZ#Z+E4js!V}yy1KsB9YYF#&&ITdKr_X_ z`?FdFuqn$>aru#)%n-gQtsdkRhjzDiK~`vY$N}97^sp=<%teH)!%;-Y`?5~AoOF&# zT^3{Dxv4W}<6Wdv)9?NSJoDtYl#KwtAw*+A0`K7y6^|86`QtHa4Lsn#l=DUtIo5F) zSeN;#b9c3KBrbO{O^;!)itY)o{VLR$j=OTFVNCDEW4d178x>&GgG;aLqw{!PgSOOH zm){6aaz1?fr4IS}%Y3^lostvQ03xk?p46%5{4AwP{awEZZyY)CM7IJNjc=iL3#C#6 z;b$sy5Xu}V`w&jkRrYLI9GQ3w3~|2&kR|5W^1Ey`(zWEd zE8)4B0sf4HUI)Zq(Z_-{A@9cEJG-ZgCf^ZW?M@Cdr~HQh=crMfp;VcrzyA8`>6M9S zfWM87*V=lABU|`e!j~9e;J0c@fj4@%1-}f7SBbGJUp>`(sqG1q+LL@DN{iA>246bj zs|Dz1=red14ew>@LF-~HeQ3S?DgAA@%DIEG86N>3N6uOe64NnEB&$O~dDkRCTixAZ zX8>;0@pOF6WG-tF`Z9ht0JbFD5B|K zgKy-T{#CeNgLm$ltj5@OtGaItF4}&A&EzcJx87-_y3PI8`@*zqD?F!;CRuB^9^IMU za9%a7Fy;OE45L|1hC}Kp5A9%@Cb}i4Z&F|D^v7$}aI)1QaO4T6LqFs-q|1G)ifwXD zwFq7O2E$nkVDEiKdVe-_dn?vT3ZPNF}5E{9ekf!Z!~W~)lWk9CAgSL zz0`0%LcJ6hZYN_ZYBnLxly48vCYMy{7BZ|+@&FL(8$R`2{m+K}cPjl2zy5a}M1Of# z;2h-nlgfjFXqwgVhfDRDK~nx4@M}$G+?r-a+Q1h$h=0#TS$C_l0)GAON!RbDgVgL4 zT|U%8kyF8Wf_nct$m9EY{GPq{)Ge`YIN#fg=W25Q8{&HyRT;Uu#NlMnTIO8O*k)RH z82n0|VSj{3gYQ@=--suy7Y+5@MEt;k?+8MDd$Vqu?j0iLbvF68aL$Ll)75@-hTin7 z>R4wL5oj*oU%v4>>G?*&pT7K{`prCueiuN$Xz!1xgKRcrpk;uWj^kf>DZNW%S@wmV$vFtH-PCmp3ngc=nekXqThVPtas{5$_ zCo-~K83X?}8D_SL?~$3Vtd^ZMzJt4o_wHEeNB3p5cL(L@K4Gfwk@9c4X3=b-pV4G+ zNmwtrqsv^?&X=ik4a?T$7A9aVN35lKr~6{e%hsE6efD<)zeqI|8+ZF%-mKtKw0$CF z*q14j@gAG${>Db0$ZMbe8x4yMzG$u2WmCQ4IxgN-#v&*o=OBzLm!STi<=vTH4?af$ zSt_m0pW|O0LbF`~W8P4UR!5eQ-{jgxe=p^C(&a%gOUVc+Gq7a|u|PYe^RJDR#{%{W zoo_fm$CdbeZ&su#VnpnfL{937sPmg5uc!Z}$i7S|Rqk)hs!ky(x#4I7jeG-+@-hI{P zL)v?#)r@d|AI|FT$T#>M-plaqmFwL7T*EdjoN2FfGM425+QsGT)*iTUUk0-|yE!Q@ zL$vCEpV|}dd-0ch@_2iu1ZqlPD05%i)LzJw2_gFwq7yZXGkKdVN8gS;@bhm%Oy)i9 zYA~fvg-f>y-+M48Iajp6WbNZ-dK#L_dunfcgR^wLL9L~4bO;=osi(@Y0_`5a^;4{V zte*^ib-<$=l2ju})MpstF7p=WtdD_{lRPXu?{58S z-z#%Rh_Bsse8BqI;N^Uy!Rxs&AGE~+*d?BXm85+#R>2KAKc+l|DW`grpcM>A58UDy ze2enHPKUq|><#eot1Hm=tE$zv%`0^47wjin%fHxt;#VX4@+TIV!k^w&A1p_ktsxm( z($Bv1x|{jY$ZFQ84vuhtNDshXqaW;d7%N0pSLb&u0{njLl`OZdZ=HIqT&Ehe28{>Q z*|Gd>$t_KIl@1;F3EvriOcSX`Qe^dZe`nhJmVDg~7I>!4S2h^gXQ9c}3Fo`m_$`#H zSP!>84U49$WDCu(&(`tf$!QV$9J%qu=auCL88WO6XmjW4xMIM9Wh!-|^U#U1%#hX5 z<)GGZy{nI8H0|?s{6-p&TG#kLU@42GVK19Tv2*0GccbS0Y|^Jqe>O>tQN?1xYUjI@ zn?%doB}Zc&2RF#pE_Khqsxa`E-y3PZ3%`y%12RG*TP) zw?6CF>3pGby*j#Fr~WdA4<=FhTT%W++&pXZ%bl;OnUb5&rR@!AZD!mCviv3s>7^}d_295kCzeJo6zDD*2PR;&vb?Ko-Djpj6;DEm?hrn(89EPFF2G(SFw>Xpm%x&(Q%E+1fubY;Z|pDR0x+{iHRH}rpKhS ztuDIXzXq32+eC;~v+G;l3?&K|Y^jZxP)49J@wKE&;aF|-U zOdv5`xfqK54XImU+Ii4-)4?|kv|q@_h9UK%e1STZ@PFa~zdl%mHp|P7x?(sXQ|H$$ zC4IX~H|*==0}`C8W6gZMa~Jnb_3M4$is<#o7vU`a37uz7^(*ZXNgny;UmrDEp3m0F z%eQ-A-!`2u-(Em;d9(JdfO_jXGc4b`_RGTSd3gcvXV-CE*8PpE*_X-R(JoGv27E3! ziCoYUnJeUVbOr{#?kunWx$mdmfU)guHMW9@2FrJx8p0D@zr0S?e3|6m$amnl@f-EX6xQn@Cd?9igSI5dKA4MssV6Fx|1M;;6uSY9 zV=db3pPVMu3iKP%q(EZ2wGM4IBtKh(m1sqltR+F1a51@87<}J0BrlpW#2>{2A~q)r^2|w)IW4VCZ0ooNS{M*;<@ssW^?GxOuzY%bLil0FZFLShu(CkIrQd( z&7tMG`yz{cBXxlMO0?Sye6!#fgL+pf+9lRLsqH#2zswz$L1ManE5UHXT@FjR z%K{S970cZYOIw!(B&I8tdmNT_E(=IZmn>0}M#2w~dKDO&G?f zF^q4*z-_e%=MDTE_&&AK__Ho=;i+G3s!=IT?%Ulb-1~Mo{rbUhE~ov7Sd_mFWpvg= zg{JoNa=_W_jXjrn(aXK)6<&0U7roMpUgbrv=IDPA{TBt*&OYWEkL6k~y48zb=S8=9 z(d)hF4PNv{FM5*~z1fRy_p~?wEwU7yc4bL-YjumqztfA}>P2r;&%=gH7&$}}(rMTj zp47Ed=T1F3_v(tnR1w5|Ve!NLLbRpj&b$YNXh#jG?SvJziNyB=a==-{VPy`aZK8Noyv>yFIn0ZJ{+C?D-^@k)!`xtyDEW|(Q2@#_iAS@t#k|5j zl=tf*aPDh~_?N9eXl;sCZF1X~;?g$fQ}{(2q&BvJ&eKXD;e`@V3QG~ctQ3+TC`amR z<&b=PTcke3;dgD{Z5tJ{Dxl%k_6QT!uN|VIhQr|;uAq=|Rf2zW7lilpLU>Xi$Y00d zEgU|{;a(2E=deW$!qGL=HKv$VgIwp=oK%ycU0s73d9mhJqJKeQR7CqC-kQVSeWCNP zzVN`xzQ^^=7V9Y_|M!K2yZb`Vl71hwULtz+gPb7)z(1D5*&Mz+0CM&X0OyK<@YuJ5 zkoRW}Zyx+;*16*T!9pCbNeM+mK!0usytCsA2j+oIf4k3_DEjzoMX$KT@kCmhcljei;SeAbI@ORsiS2=uy z!|$1M`Ur%NjDQt;MxqvCqrM&)6=#n^e9tJPUON_H>3D>{aQN;7=<^eYv59;599H%L z^mcslFOJ`9V6=vM?QlX7itC(q41dQ_r)4_ONeX2$I*0S&E5O(BT5YG0PY%%cpC**a z2x+hLFWBO}5|r>0p-e*MoR*={ikilk3P!yYs$?lc2w8-ZoHm}*!nAKd+A*9K7X7HF zw-Co^7#(uNSms>JoH1Ivf%9bMjEO0XE+G^ln`biTo!Y}1JTRNl%L>h9J>MY|VT61i zX+LV&gpOwv*MSmZ38RjLBBD^(ETu*tqvQ91S8>`>LJ>j@Eb}ZvmS`i+;MEhls? zquUg^fYD=&O2j%wZ!jtq8yFo>XcMEb0aPxo;L?i?*w9W~!)a{|*w9YwV3cHZn0SIY z`!i=}@hqbw6?%a=#}cv#?Ulafd|kzUwqdrh(uj$H;#W?qS4h)<))CrHNN02vrwtOO zh7xW!&lHeZIUiy)QcUEue<(DGb@?U`3<6EoU|&3F5gIS%alV0!CWuAM zIZUA?Y|+s{oS9D+%NZ?F=tSmR$()l#Eu+G#9a08{riAd;n4u%Bj*vwtpreIc7D5YIEW*rr4|6UN znasJ1IhTkmM*9`YVf3v+xtuR6+%}AS`HcE2)Sfwq5sDD97>!|cf*8b{$A;m-Moac)gmQtC~F9SDg265U{LKdOHj80;-j>bHo zix^!bj^cc`WZap7n+y}U^cM(42u)|szY&@yE)~ldeL#r%qDXPRe`oxdfhWBuF^XnN zRL7iogd&9M85I(;#O2}~<}A(ZmWiigYZ;AIXdQFTBV-X;&uBHHtHcIITNqsJ8{iG(ceChOeuUO2e7o)$6 zrHtk>+D9`c&@GJK70VfQ9|iQDsP*}JzgXe(;6KD^j7}I0^uAcd=nY06iqje48#EE| zkvN0VbVeVGvlyMp=o4`cqgxq$D$Zl{I-}3T1&l&tfIb&%r45X}5bGH&VDwM1fzjoR z{v|dsdXCXo;u1!UjJ_6|8Fe`t=-=XUM)MebBepPF&*)om6{GtZeJ8GA^Z}#q#a3TE z{2;dZTEUOv246k=ByRF~@Mp2zm+u#Gi?99~#jT9YalEV5ZujNWv_JV;vZ3AStD}H+ zx38vy+P%J-HnsbGH679(ls+2|6xJU0)n-I{l+h+mi)xQCx{FbU_JphzMw!}EjDiz@ zvb0@3i?X$6eV)kCo)6$~c?omoYA^cQOTPB1uY`p5x=&`2_NLTq5>QL+ZC?v%rR`;z zBPIj2(e`oLJ&a1V4`|dlDd%fig_gA#MbpTj7DrQfbBiTfnJ9~`q_8W6G4W;J19@fQ z&Db_dwQ_$ZN}&I-1u-$c|FQ9yIJ^HP6#lh;eql@$55QBZlXA;w{<%I#0# zzTCk?`8;<7g<{JF~WkD<5s_zkKeJcESPVA(yA5sThX?qQ@lS(dpcf5*8M$>k@35DlER!sX9_D4 zJt!QU7(n6N1Z>}sI6UB#3+pIXVoty**Dl&isjZ8lThC%hn^X+zRuqp2YGQ5in4lwb zd+}6?KU+MT!gq@y`9B;Mv_#mo<-8#D+)f&v*m6yKqfB zhV*Nri5{&!3`!fvtsYfik&UG#ubGhWT8Sp6mZFs7N{a(H`S`Taz%D}R&1`nI!!J;mC#Gr~Q^W)8Pf2!A4+Hyq)nAqcEfv>9%EZSN@RgtPMFrXbLda~F>D2Xv4&e;Pw=ymzZ?+&) zwjx<~H64p7*TjyHxuUp);>$Zi&V?O2Wx}^J!cHyR*0B#!c2ig;)+HgwlUye5OFoq) zbvDhvBxeUFuYM+3k~w+xrW}MXa{Tl>gs&%2N>x=PTNA^ovMAh8)h!#8x!F$be^PaJ zwrqiiikFFr)mLSgiCNV03iGCb zGLpkJ9Ny32zosNRNw1n>aldQwO;O+PdN;hf`r2goz&;Lx7QCAZ{L$@P31ilXMMj|}v0)1T(xW)j6yNloLGh1zcMhcc|DA!by1w6#j*d?xWmX^fp}B^C zBs`->8Q1vIq$x&sZ%^@w-Msz#gic?qX+o2D3s^nyRv%b?5FWzcPY?E5sCINS`!|d^C_YIGEF-!=YY_~7mRih z`jk+2yhtFP630`TA?7hUt8h6ZRYLHxoNs;T+MJ(!XlG8N58X|hXAeD;6Vd`cl&u9_ zv@0jBgE@dLkZQF zf%BsX^2Nkvg^({-+#&OkeM7Z8@gk#L0-nehRpru4(7Hejby2n!7sn|CtqW=XkRF8A zMPjE)gVt@t1B@OwrndN2l!#Lptr1W4-C>kC_GO*bVyfn$jV)#pdR$70Agxq9rx4Og z#jE9Bt(3W5dc1`nJ=0>j=ApfW%3bvD7P{8fMZXei=c26G0Z}2|E_eJ=uT_XhTj|}Q zv7bbH5m#s?qjqhjwJ5#4*q{(fZ!h*Jgwi{R(smM|bW3zn2&H!v{S-n>eFaooP0%RC zwNTvM-CYV4x8m;ZR@_>&SfN;OiWd(Mq*x$8aV;8(ySv* z-A~`(ktge~sOM`^t~V`|2$338X)|j}Qm(sjNphVLzY0E5uF*C+6dBzu-8S0gFYtL6 z!AkCYI^FhF7dL7(QKH%h&t7-1`AY5xP3Dl*M&ifSiIqy!yjffPGQluji3;|4`3D7>G@L5eQnB)k4g2rAkuS#QWuHEU#HF?{Y2>L z+o949AE%{P9iRKQDQvou97ivG2Zy@v=Rz|iz2r(kZiV-|C zzdk{FtURaBN90|<8gOX(E4nF4$>cJPU?dHV(SkHf)kenVW8z@{$$|W}3i)|>*zO&) z-)nMZaq`BqWFg~9+`q)1mBkfh*W=yK6x3Y0z5w0nu2V07Gu;Q>rVnxfQnBBy0Tw2F3U66W= zFoq=(geM26HG3}Y!^~pr&cbacfZtWtTp4qgV2ZC@?f|9sUGMZRwquC9HL}a zcW>!*PInINs|lUkgLvn^(ggzXzw3LndX^E-XcxVI`LIduX{?cS8GP=mG0}z5Une19 zIu}b8Bx*ziGGa2*{W-A~u6LLR9nCfcPPY!qsbCxg@1=zcNPg1m`6UUewaCMEA1OZidU)W2wb<~`9QPaQBPcoXyphw*oh*Y zHp`reVJdrw>Bx_Q@#(CtYERlSSjxjb=LLx)eIl%`_9hr6jGS7Id#8Z-5gpQp$8D=B z%VyJ1PiQz zvxB&9>POtQcnAb-Vqfe{dKqw&nB-BKV=K@l(uoxux@6k%v{7qn&!LOgZffxmxi>`T zKi6qM6J)028xZ&VjF=C{7>AhH*PNL9l%$3RL}!yF5CO?Z(#y$dNK+T+4@THUx<}}G zC{nKo5h)^v0Go}2RJWaL46}3wp|$UzI(TmP?fTt zh}*bZ9jL8b5L!s(^xDK@pFXRrf+k^MfevX$5P0%&2ow`1Nu4&OQPwk${Z%}@xoXc_ zrbdTU{Pl-J`ShedCH^cc*7aHPUg5ME*F*j!Tza%ofB~kqV*&ntPfY(5E0)g{YJnhp z;Wx^6jrcMY60C%*k)nY*xj%6Z_P925qCP5wy|d>QWqPvKWWLL6eV-1{{2M;W@SJPJ z@>Y_Q_fhPp{u#;n?aTD#&n2Qh4fH}cbNu=@xc?AoxhuZ@+pgN#kuJe{-d5u@p7Pu( zvv(9I!VGXe-q?s&f{haFDSM1wCcOqgXA4*UI?Gs2dQW^6DHd?PG}n3mYShtuqu2SVC4xg z7kr%eWOAtfeFiRlGH^D`8B_1LIwN zX6a;uo)nI#T%k`*C{`$K=*PWpdhagzcs5aE&0N!6LphDG()X(L&@KzCT4dJeTt^W$ zqAhWCLABhk41rWEQwGY9M!`QOA#<}k;QoYl+#1*A-Y31_!b!E7$L!Tu0y_G@tcz!A zqlC1*-MN??skl+i>6>q^jG3?RsF-J3#xO65rrbeW6x*keoYXO(pl`?Mtwj#snCdZp zRKBBkVOEW+?%uN?Ae-kHBdW{IJ29*LI-gqehfTZTkG#^4>O*;UGC_ug9Vtv>w8#Bu z4IS$WCWczoA=H|!?n60tDm9xQ%C9;jAAap2G^RJ}6y7tu@-I0gv4G096dF|@eT#~B z>+F90)}N|~#84?JM6dZRSN}1{HA7}T13!lSSTD*q4TQzew35mYSW+T7qhwq)`N$9< zV+snuV-P+6N~F@}_$2 zPa=wtSJW;0!!D1}&&htRHoB>~9??P7Gxyk`E&~74*En)NfHMLpm?)2e^rw%_ zC-uA1hG#3_oOa>&D6xbd=sLQD4#=8o z`}5~h!z8!s$C}(bRhfm zQNCfRBG4LUEGPRbE5Fu=?q1480cyJ9hhjBmaV@f{NeK>bNO6-h0d(==y+^{$R~g}U zVWS|kLgx`|#H2Y%PvH@7h;@_M0DMS^glRr%(!4x3wCnKeX~1dI*-%%odz6OSh<@Ez z_VMEU4_BY5wzGX`5N8{IhY{bde_*YrG20v$C;B(n+qU&WmdJ6BscK)8zAR4B(&ZRS zsRv%H=agt(y3iSD%)yc?YW}vY*eC2fIfmS0S@W_&^XZRveMv@-lTpVjLgSuOb~3xH zS2}Z8$9kl@jvPCRTs=jXpmolNlu0+DXPLc@UvGyKa?5KncYn-9K8yiS3G)iB#Y%lXk6pDl#LcR~UsDCTS$U-nY-n)u7#Tv~iCWH9^HjS@bIpLANABeCIw;t2yuD zR{sy!-g!5_lDs?Tm{rzvR|3aO;6Ty0dxuTr^6j(^G(?Uy#Cdotv$fV+v^9Af!8N8r zGP4Q!=)DDGAWDpqIR_OoP%(jwG4y9%F%EQ^aX$K%xCXH8NW}~NF-epls6@Xup$659 zT8oWuDklhM;#6{;2ekdv?hnOA^33+FxcM~`b=oCIKYm=uNP@ECP^o^K$iX+$bCzgNk5KWN9e)I*^%O$=HEc-e=LIs zFL&diU2^$S=F?r~TZUIDb5`}c06>#wd?&8i>?e6=2luCsH!=XvPI8# z+eTq^&P+$^^Nmw+2AnItl&;Q)TSskxuoi4@Zj%_{2nbu@N$aInaOB^et9((V1mH2( zVJ;RBdxbcjed}ChOIm>Y+N&R^dlhmV&7i)o`%2|!4o{`~{o1(Y{D`lEgN)pd)UTOFBCRRyN#;58PJ#Ak z>mh1f+{3ttuHXJAkEfN}&eb3=(;RsGHMg=&*T=cD#jE{NVK^w`Fr+Bg$Y$pVj{)n| z;46ieXnErPQ-xQ>AI$qKt$lv&dsR9sqQ9B+ssUJhRQG60KM}jSh?aJjv~)P zKbm>RwFh{%;XXuMd;?js?!rD$M{7invlJ+k&0QxA-=J?=PMuca ztv)PBBOe0RhUrEBBQ^5s{UfD&!AKKqzW+hDf8ClH%CPSE24z^cdAb;VZ`+IRBIhDs z-wkS+h3RXhI33B{wfis|ObK6Thk9Ml*~h3`?<|3z=a!s}$O2}}uEI%+{uOQ!0i(am z@r)^_b6?mnHULUXl~<+B)MgAWF4}>&lNKuuKzs`n`latHT>O!{?MRQt4}+8H!SObA zr5YH=qrC@6kK7?<4$O5z2IxT9lv2BysOa+z5@_;PFb!_g8jB`k) ziTv31pRk)6@(6Fdeis)K87_!RHUCLc!#K7BhS?-w9=idtc^{&FlN|B=jHT?DWtVjj zH>bOd4cPCWCv#x}wlnnlciz7p;8o^Z zomeLn4I2w8yLI~F6;4yulmQ9!UdWcVK#HG0B8osmYT_* z>#1}m>{PK|YjwLf&Zy9=x>Nvo)K}Sja&i=3b(@*SE-Zb*>XA89gMN77tk(-n75rY1!T>SR*oX+W3sK*=M-D0hhRrqxpH*lda1bnKhkAS%DRhiPErbN)X3d}{CDSIuop=I zt*fxm_6LoF6@rY(WAQi5Yiwz8~q$=`tY88Co^ zTs7Fn=u+78x7!KRR|04hv5e&My(fRzh-8O)(Zu>iQ3}-ZRN1!wH3M)nqUKbRSyY9?h%@E8H zCf%%O@_o6_JiUfM-$v-Xr8IGz;SBo|S@odXPI;^)_9{*&Mv{9`GJ5mel7EKHg3-LU zYyCKRw>sC9q3iaoPXYhtVIBW!@ z4uEOAtk)&S>(YLEK0q&~aD+4jJYE@CO~+h133&p+Olt8Atr<7Ndc@Prce_=YU;+Phb7+jYqCJ(mr$yteThY+QI{qO0hIp$al?^ z$nv#>$HTa_vMA3blMFd88o2D$`%vUVx{@39BziUh@j7N>o^qh`v~Ak-Td&}5uM(^Y z`;b8trRd#8$t^m-p?)jt2E89A(RHk2XrG4h^iyV-wbG^aOEJTkMypq6)(%t0<+WXQ z`91J(j9+TAy-w)QQ|@W!it45J%RGz(UYme1g@c`xE>%KTQg-I$RP`R`Z^cq7&-#@OFg_c8iHwXh($Xe?=5r| zc9}jsml8z8?L6LfIdbjyq?g6Gb0ij8XOr1@dgo@v^$C(2GC-Aq>3u`78Wyo)R1kOf zZPO3F-puzplyiff${h%x3tdwmIyrup?-S`VKR zt;0VOY<+P5%e46Xs|M=+L|;#|mpkD8L^cHc06sUT$0+x&uR`oKdHp?5H+{M@@eX|6 zR5hxDe_g9<#~Ro62em@}Am&~!&oggvuFo%yf3bHFPhi&KUBDl9Obu0H_FSK&IDS{t z%RsoLM&%iCGimMH8r)m#0yd|EMp`Z!iAyh9*8`R5j8q}Sg&cWFzjNyATt&H_T%@Y0 zDx}`rsGmx(+m+0WIP8W-bMSRGkoDUjPLtV!sHLP>g^FJMq3-Wl1Y^!k%UZFja=rNW z4FtkU`I^FH7ZD(Lad68HM-ryc!tah8TDsX~=c~g~`41HuctO%V$x{bB81b6N&iw?G z6G3g-`aTssf**XflWGX&gE&vS1}P6_aw3nhP)X`m0#iey>I^iRzR1*CbE$@i7MBMq zHf(CI4)2w^bt#!(d(Rn5SjPe!{_=>^xbVWB4b2^obg2m!&zUXrkha?pM&3n>h{rDc ztfG9P`=dyE18v<0NB5u39Ws@qv?OLUx``Q>b(0E-?S_A2D!ZuQRJsf&cJ04AI^B;I zVftTVUbou#U#t3Dauj9M!e^AeHD_|k1i1K=DyAl86J}%;zZmj9g09bh9mtTJvRDK- z4T|=RtFw(9Rq5fi=jAEt7ClrXkydN#gk3uh-3$!KW9dwgu=6+pMK|>Fw&k(3cNK56 zKDo@G`V{xz7Ry(jlCTR^zJE4s0N*4gvTEVE|1q@Ei4`5P_@%iyYnVdul`A3p$BGru zQ8RT$A4`zSsq$gpHPEa!fmOS`ZhjF%|C6Oz)N!Np`s1mSBaGx4Vxj_Me~&!q}9|9g1YUpKtNI5*De(b z#zpYsoV>f1{i@~7=OCT-o($-TrZd(YX-M4xoi7>L@@ey4&4J^P9o$mcTj*C8k*dQM zkp~UdP}OX8uj?g}PT88Yqv+6};@4_P+QsE=-wMYomVk4{t55;gVqkiP+EAN$B5jWF z#M$R;KS0(5%1mr{l=z%`*cF1)y=hUM_|mDN1wdtq?D^Y=Q$335n@}(q!TM?yqxt0- zY=uo4LaG7HVF$nZO(8d`?Y$O9jUByuv<|74RGL!qE+|x}xMGtXS;&6?C}8R>f{g(R zSUX1r)7w0of%Df=BdWgcuj28?LoZcgIY)^vuCR>)5A|nn3XBYPJ_|O_TOe8R5!a+r z2@%&i7H}`DaGKYLAP2=|j(8>AR0t8f7y&{K@{n_uw^^sFcdR$-DgpN zaJv_9Ej@Jh()oij8S``jpu)AIDj{mc+mAxHS-KJCMTIG?eo(jTr#LC7f7I7tWYi0#_YvE5;^yn7`@@W|7=iix3@ z^0w)r(`I3_OS7NmCP~aP=~4cellYhxtgE0LEpZ~|v+-=#nXAi&DOfXN=u_BZ=XY;* zjf2M|HeR8EXuTjaUJ>+|S&^%Ki}BlS6fCfl8>rIe_^7l@OB^Hs{&A>rU>#6)Y=7<8 zV=zBO;3-u#z@S1YA$8ILEiWLsAQI4jx&AXXbs6|n1bxV9HlOwAF>vfD&I{AcVQ*fA zP0Fz{@VV?Ql?60YkC}MM@azM2nS@O}3)H;in9D*Nbe#dF+kozT3GBG{G#Mdwf$G#0 zSRCbrU!PZIINYmHs*T_z*b;nd~rBcfvj zhMF-@P>Wm8W3;o`;+Ra73|e-lJjWF6&})Zw14wbBp)vYmlX|&i@U>YDsJ@z(i*)lD zbWQe1090Vek#(uV40v2Hb^6*ImJ#aXhB2kgQNAkb_~+ZAD=~>{j zXjg1+>H+!u5ybe-nFCbXFWVN%YCeGygx60nBC;(vJu+xBBC~lyJ%`#54hsoX=KMA? z$Iqc0DTzoKKbGqkR2$2EgX^m`zRqj6&s!aq9;Y=+$#$4QrHAt0%o&e33d%A%MP%EK zQ>T9zV=^pP>QPR)sba8cAoMB)Zbxt!Vzdu~N*(IMd4v|UKsAKMmCY*96FB3_xv&by z!(uF=1PVA~s^dCB$vKrJM4+t$6MM7j zF$iQTB4RK!^I&cbZ2+x@*DqU)Oh=nILmQej!|Smb!TpU*hwRNJuIV73tP8@4*|$b6 zAx(7CdhpF%&`yrB8gO%?+>Y&VIOqi$5byeX!7y_qGxi>5Cbd1s2Qkrqce6_O_K}PM@W$Wm+Q&cy&aiOE012Ea<7+;&Ye8$_jbm>b`vvv1=P{Phfr+!E zb2-hPMvb6jxFzA^$bLaHF%DO*aMun&+XzRtSv$1fk|@R%H*x*Gu{Rl@{&WE-=hR!n z8*4mJad`bv!xuw5Q15MKb1d{QynbZZZJyDI?{wC+hbEQ3+=3N_=*k*-@It|TbB)3xiOkdx&hRMulACVKAFsGc5xF~1M-plN zU@C$N-e}LS_QU4YZpS$RnjD55u=<(9QNhYENJ8q+u%`)xk+kl&AMg5lmJFdJ9|^E`v+D;2h&=GFm!)YGj6pOn>=cJyAu%E;UX*B9U& zjREaZY+Ki}&o%yZH0ZPtK}lO?eIPjjRbs}gCf$ahK2m;5+eC8>KTZH(HA}*K6-DDu zl&uI(yQ1w#254sb*mS1y8^3&Jho0rhj)sExsh^kWrKI=4ALiy`K;VH!~zDuHye*K@WtyWjZh zwEqglWH;z?IZX%3eeXqyei&gjHN9*Pv|w*6kvU=3vv^zAxE5RZ;9oSt#<4kiYE0xK z9DUg8@bU3%E{oqoN8E*_zg$*r3|lr#!&*)I?`r*<#v4l&(=3)x^sj!kFABA^bHvBC z5=}Q%_!72N?8-y|U)YQ;-4mmZJBoviu3JMly>vjskO$KWk+%l(nzUO*7=t?xbE^-J zm&HCD_G;3jfz6h$B2lXv9CpNI-V|f`!l$3`4_#H*2s#-fYL^N;@Yg>m+rJ&MLNw;V z{DV)*(@c)3s9i#>6<=>6SMrO7+MRaprzM!^_O(0>;SW)x@7nXjbCtoL`_*=cMFW({yMI^FvoKIW}4ecHTkFv-S=4} z)vxA`GOHGmdW(7~vg}!3_jGFPhqz_FwVp6#)N0aHOEzuR*vqScI9!xKOYueO?Vr=o zHE+1(HfxWdPJ(_+Hkmls+qVnoA;PxwZ&IbB4>}{tvr?l{<=OMN`{v9{b5Bg#!v|;I zWYO{4<=FJz&U=^c9uo!T|8W%_p2y_f?v1z(sjB7iYj~}THvjYn>-Vhaq%}Il{_APk zSyB-%&|$a40e`7EF};1UOiK_WLX2zAS6FomzTaNBPxC-?o2*DchfBjH(C2bX(?e_`M;h zMT$0_;Jg1cbAEHIDE`Bfqa7B8;aU`Q=ydbDZ)f!5F|gWIYmI;p>fF~jjACc?SApI2 z;!9RhI^-?h!$(wMvZwfPO;*HQtlt#|9-3=y5g2dm5me!bFgVdo{54JX^-`&$#n0(!HJ|`App?Fk!z{qkwr+iIID?ay=3uUOg`CaFUln! z$gK^0IegPhX%TOa(Nh}UDE*BvTm{Jhr83W8KXnp90QunNd&-INdM)Nd26o+Fh)-zjnptpdvB||s)djq0 zPeW@O$YJPYWvXui(6^fl!bJ*xqo+AiYaj%OE|f=zQ*7}jkG$tZ_(cv$i!gb6f!TTj zd#LKwjv@vy4mMIZsYrL>Z!K19Wno>oBy&Y@1HJ^440^wpLfI0bHXlDoXUoJk>C}n^ zUkn=Ii``u=ka+BN%hj_s%T&OdA$6dK6<|6wk$#%}QH5+Out(la@!z%EXtt)ud?_tN z_32W&1?~=h4dXKxTvswfgmED|;*Lx>;(yn+t14gzW=Ymwa{U489s&~_+Mj#YxTI%C|BrZf zi?Qgr&FX9P3;A!8$7@~G<0@pFjf1-7^Ivo?w!s=|bCe68e}Gpog~Q%5SmciFeG9xk zGy9i1tJpQIMb@>d9&@Z0(gR(==8WyLCh9t*d&XpU_yC~{KfB^%!^!IKfHNvzKA@P)uE0FuF2PM6g(3ua*yLE`^2avfzL*E86kT! zH5;FPm{O3Kr#R25*Sr&k$Q$YiH0gonsIUl~pT8iy;(#-<+(=nNQwDn}KZdjHSd=P>?bl}&zG#xz^h(jmN@Mn$r^XgkuSIHK+IJ4Caj;vM_ zNZ$e8uU<(Nuhm5`OoqTP7fPOnc51K9?^Hg z4o)C=YHySXcHc5RZ#VE?Z@w$FF;$-vxHveEirKh5Ls59f1+NTF6yA+#b(MHnKsW`P zfLJH+p|0Ly1E=e5yW^1dJKvR$sQNMFEB&`xcgHg$H)I!o&|-w=b_4dL$^2>l0`&1x zevT(yTn}waBuR%l1yRO41(S#7T04vMS2W?|Z!C;Yc!*nj=feoY_2%T;3mD(LTpY`V zo5R%PL{$5y`zsCFw8_DFi{02nb5{%fW-NVe&p*!C*F;iee<$oG*n(*vOutzxhQ|fC z*#f?aV0b$pXV!LVDQWkfRi*7#%qXx(wJ&t>Fm!qi2FArVQ0Fs|mu$FKZC4TVn)m-D ztopgy%NE3OOrXHgm`Fv|SWUEXnTG>_7VUq+88)wv)rs@c{VV;1F|a<&GN?=TN-5LK zI|JhNw4X={5Dvy}A$Ugg(wTDZA}B84E!#7xTOS4$HR4=sM8@S=(H^)bh8-kfazSrLr`>ukR2w9Dk z$c)tmI^+o$`g5x_+tbAJfb#w4BHAQ)e7v5CZT6oWt;%rCc^N!KmI2$W->OD*T~wTP zTucuQtcC<)+ZP5?Y-0}>7E;U&Q$&lm#*$^CSGDtMMu{H@aLS~_$7LD<*gv*f{giO> zy9_u3QPxIF^n3>HhD*{93ePW7v(o_sT*~2M0$qtUIvR?J*wy7F!2*#|5}_gv;}LeH zmFeReP8OD>9(A+PGBbUExMVVEb>ziyFBP7q^->24x|-Vv@o)Tp;94rvOCRB=z6LWo zVw)QTGCMNlXkJW|Y_f*FvBw5iT+Nqgvxf5RVHTFrL^~S98DRC&J8aPNI(hL|$B-x5 z*-Vpbd(M!S9IFNhkql@Y*#^;t#jeUVO~F;cb1)Rh5IWBc2vkp)9 zmifPd8TkOU0sww*0r4QSnsu(OJk2v9r(7GKl;0KW``!i7V8oWRE0xj&rU`)durvQt zRO_{kDVMEyP?y5JkmUH5-;ybH{LlVJ_(+@Rzd7Co z`L-MM_XW*ZljeI#)y6K`5A1bT4DgHZhbGi|srLT4fVCOIV2yLwg3Z#9KYb>2(KUJI zcdqW}KmME+y}JaaJ|rT|k6W!<2grD@( z8@;0mMflLTUU%du_%QO8EZ+^APL0?R;^JQ>k-=YI65F({bc0Ct5^Wl;Hj3opRsI8U zsXR?Gl!HFKy23`SX&vo`oNTTe<_i(;*XoEt(ZOi@1(;~qPHM83xK$Y4<-5iltlehb zg*DMYl-iVe)nCHZye@JREBG`E_L>H$kW2ti=g-)vyj|~{KYI^}&PVUgSGnGee4Z_- zXkM?lekKjA>2>T~MY&q^xG`6rD=jf}>iu(g4?;F@>%ECsH-^kFoBJyJFmLgY5c6Htbly-U8bMTW77khDD#;)k#F+tcUH`Xr z#F-dkgkmbIz+Fw0UG}+k1kn7{3ZZP{z;X~i5F27{J&Iiqt$F6`J4_0QZ(DBG38@FiM6#Aw8Az@s-&SO}R#Vsr!jnV3aPE0WDcf@r+ zEF-jA-Y3Fdli{UMSRnXk)5`czPn(i#%yDXIgQZ)G43zcFDd~5vLaajv4P-9@(SI2Z z3&ZR&E!VekV;XBe$Rsx3IiYsB4`SIeW7*7ldZwqMeWqdA40tN0r=ol2Vc9f%+N3X_ zeP&_V6nWxOl$3qo)B1gRap;g3*P6C9w|A){%0YZdNT_-^YSD3u*0b<3fwKPhJ843x zI@WKkT|{knEW$9N_qTF`J$J{Au|0PZ1zsuf0wxuN&cc_3&UeqZPZlmi_dUYe6Q$0& zf10BIv}SAQ50zJKp=|m9P}YAwvKSEAi$$EzbLaKkIcF+?pnX2jHWzabr~9|vo!^se zxEKOhhPu{*=#s({{J&CAW&#?;iI<)(EW`)E;=~iDb!c;bqN!e_{woPz7p_YdRa+$t zMk6u{mg%Y9Ib)~X;!&diUY!%iPXN~hq)khaCX{a`A#cXsTkG%*gx5zWY2Rr_n&X^k zx0wz*jtDw7{2oOFXg!2RI`ah^?^;!=AAA zUhsatSfITjwIF%KupkhF&xA-G&&K(OyID9{cwDs;NB@`*m zh@mhKnC?Lml+6+ANSDRJ%!JFx@{@)7SMru}$}xQlt{a26;)4874|Jsknb!0(YD==h zB3j0Ggt$<&7FUV5&?TB9hYbY8$h@yzp$bVOf^BexR2CJ zfr&y;Q=W*RZ;5S{#s>hIQJrViy$FVC=(*?uFoulLTE6d44^4dkD}SMsl5UYUYmt_! z$Vm^vYsPh>`K#>z`Je9fp|t_gkTeJE!m~)Fyq|)o#;7egl+@zVnG0D?Nx&3flm}a( zM4A@e-~TlhSAL$B9VX?UAO7LVQQC_C*HlXkOSb>aWkOv-HAFQ1&i$P`7Wf&M3{06+ zUyxZ){?FMQMWz%jYIgc+dKU(m4dKAVWI0WAn2XB%rSAm z)UlaPzl2t$_(#TzZCx572!RkQ7r;V{0n;W3NsUxyZ(@evLuh5hED2yH@Iq=Lmrx7n z#96fVl$+EtWei|)4L%qsIWSez{*!JZ-wJbTT@Zp0iGl_jC%qu=pOS3)!Ink`4G%39 zRT~up6$33El@0AUQa6$#vLKchufuDc&f%L{I<6EX8EKo`?e%s`9*tGqdd5rZhn8Uh^QS|K8u=%19r{*`*sb!B- zG03Ax$~IwTS+6je(Yd7yk($PXtwwKBnqHWR@Z3n`ZE0+JD=1+B#8XI){vSzi3Q6Qh zVIgNiHGI?00Lw1}Mba+}X^b$p2qAsvHVpqX{FU+l%zchK4a-3G{I9l#>a8K78!R$< z>g#COqd#(S8nQ~5{&(CNB2A7Q4H^ba&Hv`?AZKYZpg%^ayn&6G6Bf79Ze#v2Vg}$T)$wJfLlxqirLE*?(Lj^}b=JBn_=e z)TuMFJo2b$230`F5w)e21v@fE(L3BmPb1)`!Waz%uf!4ye?>NcQT0l5|DWlRW#9S# z?^N+?ff;SoW{lCabN0-VP5vzpQD-oXGR>J*@5(sK4CwW7^-{~Cwm2eDP_e(iAP%{p z!Co`4N&9~z=Tz5W-1~9#L?&|EwEtxTM`^n^)~uA}c9RbFe+fZoLbOV773o4U%LEG% z!+-HdpdIx>m;E0>-Ib>@)J&1FRqrtVtp=#~>gckACq>DTD1zTRvaDdKCTe{W7a+OQ znHjf0SI=YG%X#6mw0a!x#`Wp7Itb8O-P+^18OVNm{ys@ULjCrxQbF@c;Cx`S7q^Ul zR0+sbt-6p5tla&QKM&ctGPW}!3&x= z3NbwWy&`lQTJPs!mDD$adx)2VH&5@T5iEKh)%Q-xIpt-nnO-8}N^AO1iHb2#{Xvq2 zH$eRYx)m|R#Tb?uEP7wH<;GIM5}|EZ?yoIaLaunvE~i3~_8?O^UG7)#5;FW?GF9F+ z;S(}U!(EKXcbfhB5@@9W2W*b%E2okDZv*4JJ4tUw&YahmF7A4VKSkf zB%Q>W?c=OOQNO3(gw3? z>=6q`_SDiw_GIJ;{zzB_SWLgx5JMgyu3&DWEm5Nm!XL~OQy5h`IAkATaKp7pUwUH z-5baB&cz(8WzWRycq}L2LRYT?-ftJp!?l}4iac%7*t2c&Key3NNPY7D%-GP5a^~VU zI?J`plQ${ME@$!=;fF@TQt^I;?Z7e0{f02RqcnM$$QNMlSr}`ckZ8I~2gl z2_@a)m-%k5>8^JVE+}K(T)`Y|bjX626MMIBtW7xoP*=uv@WDb(T@}$9!@CVZGLw%V zUI2scO7Kj6p%S$-%3P7~n&nXB_6D_c`>XE--t1GWNyjPV!S%$KuH$P^;n^HF(KJTF zQ9gOaNaF=(?2JHBi~9bfUdf7aO}5#yh8$nU;%lQrrvleW!4%SOob+iDZd99Hxax_y zH~!b{XjDv3b#y_Ld_ z^{sb5YPab}_^4&MfDa2BFhWEi98~Hv@EEXPnKeMBHyuy3VAcQ2&g96s)G}G zB;B!z3X#2Y&#V!7B>ZS;zsBi#L$Pl7B;k4^L2WP9ZBhgD{yce;c36M>E}B^=oRRpW zCC{*Oay!m9Z9Rl>ojLe%eYf8k#nrtT2&k^|zpy4NT;S9wsO_(ZDHiO~#NJ2@GrI5% zFMpQYHtT*&tN9$1?)sUFH7wj9=8cG0(Gg;>(jrne;LSQGGdA3dYygh4RsivtsV#PX zBl6af#5PZI5`xS!Ym&7Df=oa<6Wj#z<9qLnGn8#d@fwYV*jEDnyf-58+Y_II-$|i* z>A#Qi*`4_EHpYyu5RW z#(le6@Y#-dz5hwO``wdwckl~?1AFCJ=ph9|M)0eCOLyaJ@$o-nvE zRY=W~!ck2m_IZKyB{#Kw(wX`D6@8}Q(p;C zVqR!}p4{|jO1{N=NsI~Ksr!sB*4--|8hu7aiI(k-2Hu?daW7;UM~aZG17UAsbKreL zFlT;@>?H+x<3#R&jQdu1Q<@Jp_jEJ))aI(0bvMXkitm3?37~E9MD{zOJH(+5RD`_e zqfBnp5}?>pffLCou?rW^@~F(l%4UhQb>g)61ts!`hEjQyiQ;%%IGEI*QU~J?2imsjINh`8Oh5eaM%8=xEHk zV`QQ)V*U?F=Kv$h(rw|fZQHhO+qP}nwr$(C=Zta2w(WW6{x9k3q^rLal1ituYt`E8 zHwf(y2;M9ufDZN(4)b56CTJS@Fqnhf!>nC{aCP)EzN8GhGl74N5o7Mu2Pt~6%w}a7 zsQCb#|L(3MX6WyjTH9s|-9m0-b@96RpRH!_kMp29)0~`Q;Biy6(Y#!&=QhfZ_@R2U zy@b`-yMH%as_XXOen_itipuM`ycN~cXU*3ZZE|lrb;qCeHGb}PH+K|uNFPics*P@= zx|7h=j;r#vy>KiauHfRhBOS1pTHZYsN%`(=L^TbboU`l7vbHqB-6 zy*_ys%`yA_?3{-4?{j=aVCowZIK{1n=bufElN;BKabz~tXW9DRL zb{0H&&a`H}o!!dpq<=Ix$IBD zN^Y{B=_CJ~ydvZ@cEWPLnfaSue6o|&&Hb9Y71TrN>HKIn>CGc=ZP@ZU{(Cnrnt!`k z!F0ejR`PQ1@bv9kF9vq;Beq|3M(^-3gk?(BvI4cPXm5~R2)YgZLA%#BBz4Q@usL80 z{z|TKeGSl#yqe@c#+_9%yDyZuN;pzyrCBDZ8_6pgtw8v-s^w%zJG>CY9F3~UV z=~J>_=|j52A2vEtVd55xuUCJ;0$X&8e z6Y;s}UvY|;agTn&Py8uf+@=2Rm-w|`^cS?GEp{v2(h_@Bt<0!Q&==Pah}&-;p+1Vf zbUP-}!$E(KO#bkwyruj`!K4@6XeOOY<57Rmnf#pc_%`kOF7<0zhEM&GIZF4!6L0&G9p)VEl6ArdSfzc!IqSp|mZ{e)Q@;A-o%*Cp zecG25=C4)eO{cQe_|FqdqJfA$e}iGTRh?ed>8>Lchr$*_Ly2iwIy z*@xW4p9Zpr&x~b$!2S7M^5NU$kAA6N%yaydALm7X#SePvU)0P$)=ar;B|oy~{iNUR zrN4Pk{0a9PCOvGGzY-t$62Hpl{&e5B)WZxd=uPNtGY5%Sdl=Ig_zpf|e(p~*AY?^n6^Z0}xiSzj6 zACPnTr28_-f1%RmlKu^}tk55>^Ib!1v7g+1c{q!>?vUkG zyF27vrN}*4qp-X;4{|#2H+*@M-1`GU8!@N06L(v`KA4uxpg}2{F(QSmMiD)rpVJUT zFP8zp6K#L-7oy8LHKGoC{gs!!Aw@60xk+!0s@c1CKN^XxVY`>TA>R8J;`lwwFhe@Y z-$Xgt_o667%Ym0MFCXNxTF zKOqBJZN<3RzulzJN^C)Q^t;W#dT@8@zvh8{b{D#P_2BA-VlLkzxv3w(9H<@~9n(P! z_Q&V^O`Q#$^cM>?&vR!mYZ=36q!bEy`WR`CV=<^-V=+*!;!dF(>&8f*Xh-(UYz=^! z$m^T;$Qj&^j2%1f2yVBUv1=oeo0TQR!P|d>!-E{ zZf0lIUIP0$?147(+5>SXyVX4D>$ymZtX(C_`&I}O_q?92hr9!&!Pnro92|@XWC7IS zZk!w*2Uh~ELEKq8j`vmrx?#6;_u2wCVQ(BA{DEJII@ShzVQ=((nKk@1gb%w%e;TAQ zCdq=kQ+~#L`LbpGcjNrm@}^FJ`f#&Zj?r`@`g0%rU z5WcV++?y*K@-v~lGqfD&9Pk`u|9kk%q&DPNhW-Qk2e=OMg{^f@XOCwu%OL;%t3Gr8 zLn+t?cgoRnpmV@=ki8M!f(P(HehBWu1NcF{2>0Lt{W0p^A#|MK&t3!k{=5As?!^Q7 zqr4Rl-~<0)+>Hm^f_lv()=SE?Ei5=y;A?EtKEN$LA=sG;q5SD{v#CsBlOk( zYa{hPVs~Ze=imEVE5ltS=+ADg_4ehVpE|S`+SZ2tY^cvPt^bI=(zINYg$Dh|uwGr3 zPb8cl+Pk$qKa=v*{DE(n8=emRfp4fA_Ou9PI^*}`t(920aSFE1G1be8hhtUl+?tk- zG40!zjZ;os<&(nIhP18|?<>9h^2VvPGsmMz2RSr^LYJE6h5d(A)^48{QZW}v>2mHK zJM-fDvFofGH{rcWJN?wxH!6qFswBoHLjJVGbaN_%}c^c7tlDO_9aO5`9rBgnsDC*mvNu)@%<{N6c(0^e@Q~jX3DpL)jC?bE6cD-2EH=K zrhaCK(EjHB@qDQgMNbnJ96{%bxWT^>VxrU-Bz~M*;dju<%{1w)tKK>ELv1M zylbncBvu25jIDH373M`(d$*hwGpmr&W$nYND4_msNyh05y}3}DieUwu@aY{sw1#UD zxaZ;fO({h3i6iAJ`z%!u@w%da(KNHY6^$H)tdCrKVHhTW>eYx z^_`}+Ojn*RRP5qqHQLIM$YT;IfA|>m# zA}=xx5-xsv-y|6;w=av!+xHmYWOwenzS6z3iOQnY3q36tnHhjpG}B3&T93^}t!i^@ z1F`UtrTfa2Rduz_5bL}3`U8@JK-sCl3SSxDdX&Y;L_~p}IyF^rxJUIR{@=Q|2^_Px z%?}%!mNBj@y$j6)otM$!TTQG}p&ydro)MnOH>A!md0kN0Q8ej+MPK|ZSK+E0y9`x% zO4@H(HK7ezx^W65ln1*zIT!4yS!djZgAGKo!q?x32~s9-KC{L5k?I|0{R61mUslyy zIkTUGUyux2-P_kPoaQ~)gt4#5?Jr{-+x!9KE?oyeXS0B8D?Ys~q{vyZttx$2xu&_l3E%_g>?qp(ro1e4VXJICO;DSsaZ8gAE- z3K(3%Is-}!PKO|)T$vXguo9QZJFPYDA5aa|n+}PO?)Ona zXnYoVff~aIoRoMRtS4=jtI^FcBaAn_4n`b3VYK5RUR*wQSzY;Xu>@xUOG+KADmwd> zMP;povSte>8koL7i%X(mB?3PI%`9VNmU-5uuARns(l=bhvX*~RWtg+XJ9mTf`0UbA z+7U(^j8FNj?boEl*?;LwR5R#fRKSv!E(0>CR@MGlIX{H6!f}Xg{q=JH+?8;?=2;k( z!}@qMG}@(W?DR>R&T;}aoJ~#+p|;^C4JccdlNmh&X+zdbGdRFCNLbcg`GSQ-Hml-j zjNm|OZPU0~8APhgxRn9wrZaNz?8|iS^yUvhjUSOOGOFR_WCos)8){XfGf}gpk@5EI ztbuaDi#-Berxg1mI5-^?|kNzlnV@1(}JqC1D>GEq3(b#=7GwZV3 zf!;#qs=6-#VXc)fyc;VMo*jUyxd?)M<6)s9N0Hgv)ipHHIIehV_fL0DFUXpTX$7|? zsHZ%G?k7O`#s1~#ClCDav^dGaU|L-1T|0vC;7YkCB&t9FPhC@&*1N7)d%L8ddDQ@3 zA>Avc(Bo_dA@*s1CA)lgm1kDLKTO4ymafVTq@ocZyN>yo9jL;wyd8iUgs3<}yWCAp(Xjbyx^mWv~>IEY^p| zxCa(d6G7XwMpV4BHSO`O(FcQ)pwWj&HgMEV|1bb?>b&;JPi3fqvHl|no(*Bl^0Y)n z1344J%7Dd)Ux;435L;%H_UF|fhdBNPA7H=q&!|wMa;{Nn5~copEl54UXOPk!C_&*4<~`PmtW%}Ute|d zNuIcZnW>YW^k7d~kmq;w{&fY$&aVQD)r3oZZx~5=w-Sah4?}&EPhxzW81j@#f#6BQ zA=*~pDuqZvt#2H#@R!^@*BPb85FEIsam2lrB&7_F(M`dM#<|b7l9a641mO8Qta_Sl zv?xk5Q*9uPbARhMRIF=HIya2--QZ~+hn_lZQgxY7qvTRPK?G#ePP+nK<&$`x6RxR( z;Xj#+WkPViU`2j6uPR*h!qhn@yxoLF2Avi}w^AAUbic&UXrgE%O0n*$XdA63OVctR zcbe2J`*DExL90p!d%;jIAnFY(_12~S{?0(u3l^&ErH~`@7amR2<)`I?sT3E>IGbZK5N#SahQ(8LF+j6FtP$;DFwJSMaiv5@`4++CxTf58A$LfbrxObmH z#eezmpbgAfN$BnJn>EoC@{?VhyqyF zGv&XZG5x!S*C3RQSa%S7)j1l+RtBWTJ-1@lIll4}J)tj8R%k3-*u9?TOO-R$?V?^u z9%2((Q6XaAw*;JwL)lj1ieV`mGvh+9L9W;<4JBH0U@cQC`-2A)Wpy@vr7)vqd?gnF!~+$-Iy#A|FBRl1KX{GmXk76c(J*Q^b@ zIEJA=F{h=4J7tCnhv*?bbGP*0e6d(+L-E*Q;2rpB=B7v77H>-b?EkZ2eKLckLfUPc zZCaa$LO6^00L44&MuTN#$n8e&o-aN{u0Wonz=#7ZF^(nbBZy|KLa^KwMaPW?wlY)| zHjW)9)O%J`D;ay(sK=lai`+lu2(aTN+Sa=}GG9uqj2Zlt!suF>tQp;^*um+B?6`8u7+7hQ<~~ghhE8nm^+VZ^byd)5+N>_R$1kQ#u2bc{IuW3BYaOnE&lps+&}V7yHDINP z-N|;c$p2+##>GSS_lT=2BTU6Tg@nRDzNci1K`SlHlT`YG7p~rKOFaEPGwAtZ>;b+F!i?fEGD#F1w<~z zeGE>`mX3ar9*x^VfD8;57xLs{An-wG-H8x7Uvl8*yxyi9=ilr4Y^XyvzWs6b@N1&; zxqrgF^9`kR#?q+r^in$GHdYjtl?$0SChCT{tBTCD=tSh%pYb3GV;n6ZGnOVwx@pH* zO1jJIpfWSd^$uw}eLkF)`_c@Z5>HG|R8*I#ag2$W!)(9!zVAFw?Yvb_TKJ@=ag(I| zuJwnnRSzJ)LUOJ^+S!i0JiqQ&r0ZRYw_eJ(UUv{b%uvKp#ZXyAm@2vE9)&ME~0Owz;wv>FNrLg;%c81b*0}PF=dt50!zLIqk?{(QeeMVl6`EA?VM-L zYp?%c?K=a1%O;48;deSdP^!yegMv9B9xUfJ-pS=v`rFxpA zF4H&+BGl0b(tbKA!c1Rj*wfL`JetJ*5Xt%*66Oy@t<62en`}KS%cRz*#d|J?sM$S# z2&PkATB3n}Q^Hkh^xl*6IG|RPk=9@;o4OiZ5}eXr9udQny^Zu}-#UJ7wKTSY7_wgP z{H|%Ehv|W_@~r3+hpF}&E<%D=?0fyH`<`Hn)bGYtEv2W@`MfEa_DEIS`@0^Q(Ty8% z5^*}{jU2WI{Ym%7P^!g`V82n%eOD2u2TAmFh_9^<8lACYX?An&h`wg!yU%I+(>I~Ge&#&Laa4s=xX1Twbccm1VljE+o+(UeKO#M(zd?9@ILg$rH;wp<+pJ`;#}# z>cLw}<@i;>P){75_2RiVlx`l^@tqfV0L;D=o$FwCp&6*xp(xZf0r>Yy1ykN$M0^mN zzCG-u!01WzVp;+9V=N$TV63RUEVwlj{8z-Z@0iyww$CT17PFVT^4|YmST?qf&dsBmhc(5a05L57LhSOc4%-6Cfz{ol!v1BM zMq~Y7?xJ}d?w+Z2ta9Rk3VzwJKhUxK@h6DxzL`5C1i;MJJ*>$Uy> z8CoC0-9J zGu4C4^JOa>2zHY_JwZMicHf&ll6Dwwcjug|fY|CIcckoWW``y8eG81cd=uL7ppH#R zRx#XQXuEp9K<&&a?<4o@o(@<_nc>V>vE=imcbL3=-IK4}hul_rqN4mfAImpBmGkJS zr6=)NdW5UME7y5@m+BYw{n3VL?1jw+M-CJ2r85s|!D$s7N&A!V6^$6R2$=@GM0>y>GSkk9?8&^==eGGThl zhE&0`nf-s~7$orZpF{`otC9(?e^lgm1?7V1!sBlYXagfRe>JRB(tkatyO6qX6LUP7NyKx+7t@LeAA79p&qGPz`$-lH za2JVe9gFKVaI^=f3c_*!1~;N@6R+7Kf;Vd0 z{{XpNg060DML5r89%D|n9)(&3w+nVxOx^`n~U&d}!%+a8MM{id#He%}Cb zH>gd$m(CySXdZ}1Nmo}`kVbY%Ie27jgPidt=76zbEkaAFDJ5V4z^sqr9}Q~##jFHF z)$R3gP?pWtpx$eZo99MLc_oPaA<_*S8S)M3AM{#{%nt zt5S6}3anRCm_@cWy7**oyJt|1qZ39Knuc|!jSJ*7)?2kW^K#IW(e#Qhq^o>r3KIVmj^Eg$}I+cbAqYgX6SD+Qy4#NXS!GLP& z&C_GIFx99aXJ18MnM_q}-QgGseuf1?U+gA|addc=_^R;PI>l#SB26Fr6FXTmEGqY? z;7xng{j;Mt@=F3PXe+JepHu^-${Y@Dh41PJ$*{xWo2xa+bQh)8yWi$ z87i)T07_yIPrd5``8EC%>hqU<8Wz71@GZ7!k$qi+2ZjdprPn_ZVzM_(ED5EcNVgLp z7!w)a@QrDYm!@tPi1j>jw`1>2)6dvA; zJYUg$XEM9!jnQFC}FD%oC z;xiEE{yvY5duE?K$SF4=%<^Fle<^&#e{UP$YhS zb<~t18C}^Vh_o22mjUB=7yy-2Xd7@JVO;xtve5R~d4)TGN?%d=8=a^_JC z2}SIn^_hjCrE;{W(FRN*z3@M+^cweK?w2RH46w*4(Kp8TW<7*jTP!Mbfu4MZhYHI= z31_>RBKS;~Fd_YFf=B}$O)f^y47L!QBiRsV?Zw%$Jx!L+h?)30oe}J4qu`hJrFgoO zsLKmL6v_f=!+wa{9*${Mc(gNfa`1uye8ef|iyYT?XMWf-;+aGxey57@)Lq1^(O{dy z*z@3fVuWW^?>z4gtFo7l^D;Op{jEw#pTt6AUd)E;4Nzc-;XbVfP74`1icFN|!smXi zWw($;Wz%!wHme_lc(|JfeHu`q|viU^+y zCg$c-AHjkn)ApqfnJp`w;xgUNo14xfda;Q(>f0U)=rNXWx?3*n+g$jP49r} z8yU7olz^L{c~8HBuqOmkP;kB5Uf78p0l+g6Fs6zFgqzl_i^wY0DfZopQ^ke^$Uk@I z%I*f?LkHwjSm@bVCCp0XmJtm6jEjK^_DM_yQ|z;TZ~>UluhWE|N+rjI>pZ8ET34XrlRqzCd#VzNho*b%iCI)djoA`{o1%ueB=FTrNqBRV2 z4r}!Ui(qGczbf!oJNRijt>T6ZqMM)k9GmyI7{p?ix8~F_ z#=Dz1>)@E}+bw@G&yVk#&J%N>DMIu3@J|G>3%|@!3Yaal|;TiFE%VrW4B$J1JDKs=IG^`!U*_j>bR2D=4~v=Z1%jQ` z1b0MO^QTFRI2^EeO_#Kg%lWO#;}92#irP-Ot)ZC_=E;70YyeI^e13p|t}%jeVPgAx zVjCKJ`Vo-47@uE4Q8U7pQM^FtJ)^iH!6^2?D}sI;z#f6?ao@xc`$uqTA_Vs@AtKt) zikQ0xL;|e(CgEkFud&+Zej?(Aj9Du#-USRC)$(Zhk&I~Ni)w1Pt+66)b(2yz!%N7< zfHIdRo2P(gcr6x+xgZ&^Q@X(~ zC-;3&D?Jg{?sXrfp7R&d8tu88dLR=)N|8+)C2cEpsuXj;H7(DVTWAN7wll&VK#j^) zc|t*!^vHdu6{0t`p?hCy+=xzr1&LrRQ!n+(UYTMgZnFy&P)|JND%K2aE3>_)mLjJB zK<8yISuDIbc#cMz73GUOe|TDQ$`xFRPEG;qQ7^L1N<3oD8U$N3)$_UldI?;4D8{!) zBlbObDaN}vm}n058o&;NJUQ&(AJ_owQmqK}1dg9EgXQwNw0TRLE-)c@hhQ&LAkwBk zN^1aY9q_xZMFaek_8wH?T4s^+G(Jd1(j&UzC@$Ago;t`n=mj%gEw2D?1}lc&Y6PP5 z`2F(?j8%UYLI@fqlGS%b^hHE%9`X<*JK5mUC(#j-!pDwuh=Pc^BrZ534oyIV36gF& zL4EUylZcX2LNsrcs~&>D2fmk|QB3V7U{WiQOP0w3>_g5fDPwxr;b&1pgdawLvt75v zVM%2Ym|(s0PK0c;oC7Z%%O4%{4aRg>C3(k!aZgoVpFe z6DO8{;G}{zX%U?+iTct?P|*n2v7=D0z#~-N!y_&R;uLzHZDyg7Q%k2GiCS6EX^`vb zmE$Pm0TR7u{!SrBk!oq1`uBPGEgz1zSw8cu3~(;B4ki6b!S%H27eUH6X4!LGYt(K7 zxZ1f6MZ>OFcO4hO-JuTIq$)*g++psYpfZdc)~X;-qKHWbKbGMfi##86ZX&`0Apd+n z99i{eC%TT_>lFY>6)JMhEpr#Ve)Wcsuuc8(iwFevXWx6UM9hrw@Lhp!YP#&ET#z}r zL?cWp>Hxi1h<5Xy9Q;nPOmg||avg$pyG!pkp!N@pfWc&0fv{NpO8`6V65D3YvoMcM z(t*(WjJwdXV8lGCKd@6X?pkYsvueM92lM=sJ5_d~FRotOK>tKdZM-=}=(oQKQ;X^a2uz>^Uu|ww*fsm&itreybEXPAo zOuuh{Ai1{WLsGAYn?zF3q;r(zBS>y|3ONzP@`qpp!PyBaUnHS2a_7aI1}_ie%7qR2 z>~PSe((I6tO zt5U~3cm($SyZUCp_Eentsp18Tr5Q^qA9<7>F*f=%qi=-v=qn6^a~<)ts5^r+v~m_=Q&Iu{+uS`>7y`An&eXuup02Bw#MF9OM`+|iiS-vFo*ls zK9J+WL<-cLOVbC@%~SnfrVO&ZAar(xQAOsw4O{)rJ$B@HtczmRUe!0U!;>r)w`CuS zw$`_LdL)ER8LIEa0ZZ*hjb58suA^XuA=`HaCnF(ROuE+bS)@bo7AkaJ7i-yewM8JLjQ=qXjD$R^nJJ*u>uEdQZ&y z*jo$U_1=4JPra~F`Kda0EbU4>eF@x0eqg`ezegQG&?k%&f`FJW;Y>$2#_ec$v_?eP1rrUW3Ul$ue(CGPjan<^)N- zIyQ#bs?JxxD$83im#yU~^K+e#habYZcoSqTQTgn;W65Q0Esm_K3@2BlzKd6XY*K=> z{Zl={BMFLOZ3O34+&bS^81wUm@_bfaF}Lc9y3EvmU)3vMoX~qy7bFq)$nvXUuXsXe%V$s6~}P4ikCaO1ib5Q zO?`ahoN^1_$)Hje;nxZ2T>i8XT*n?xDj_c7>$r#oZ0ac`EuNZ zb6Ju z2c$+iV_K?PpYR{L#{|)((XHGnUU|_B($`{+o#r_Wm#d_tBsBO`{Zr+UQ0(QT6c?l1 z=nF;0c8c5Rlcact!yC?;i~4v5yrsp*tPFw+Jha)5D8W4n3yrDp^-7#lw5Php0<2h6 zSNml_(|}!)+3**jfVZCLcB!)$ZaO2zqLqH%!%qKpEsxJ>djHGm^hNd^JM}+H{Jt;z zU)8(2Uux3rn|7u~+cz;Ql>{8Hg5vF)wyx!`>$z2%*Nt4Y9_`-o$7;>j+jh@R&gB;^ zT-Sff)FgB*4^)5-)@)*cZJtprK!$H6-{?tvbcfhUe58l)CEwyg{?(i!`2iRr4drj# zG-$h$a9yZ%7qqMzb|NFm3BI8Yw7{fw!=m+UUumYnLQcmC>U45OaNlJI0dXS-hiiAD zz1qNBm6-2OFeB_?GWrO}k-;6!ZerRQF%{B8F9nn*-`Pyp>bOy>|BE6ybOr}@Z%@ez7_8vB zLmX6bNBXMNDdDG9d!rOy#a&VYYveG8sOu!%(F7L8jRO`=sgA(rtuLF}T`-Z>IUGO% z>5h$~2KC6yQ7;RiiD{2Crf~T6flj1P4j|;hAQ7U!8gv!NQ5yjqRqNcS*oK6VBr)=D zY@iPSC~~8^EmUS1C0r$!WD_@e$*9F6eR4F`uUH2;O@wmHBT$~MZWJIeIbTb?p69tZ zcc<8vY#9phh9@8H8{^BSiO=~eG{tj;X?#SU(3K*zKOwI>x5j$awYeJ1u^4aPfSJSy zhq=tn1clVK4N?>s;j591%pqmgD=M2#P2MRmLB^|LJ7Ai;0@x{dAZf4)OXQYfc8JlY zQj#a1JyJgzg4&(Z%p&c7x_pob8QV!i z*$*rhIr0a0EIQSsZT6CBdCSOPS!*}Z2iz{*)i#hstVZAPoj6?qXd(-fiECG%@Kj8V z6m)eE;SSX)wKC~o8)K44em9*GZOVDivYc{enal_ewU8QN;Yo_jZZd-33m{-|ig|e8 z8_!X4rvW{bWHqxzl<9@Cv>@FLz2JPc)2XVs**X5z&x?8Ob&N=-MU z<(wyE0j#_w6Gb^~SOKZaU2{lv<)FaCMcKto0KJNHI&6�d_*pr~;ixmE31em4e_8 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 &W;n#$!gxH>KmN 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

da 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 g%G3iaCom$A(6G9 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%0Ap#vHbgDoJ;P3R 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 + + + Ninject + + + +

+ A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + An object that notifies when it is disposed. + + + + + An object that can report whether or not it is disposed. + + + + + Gets a value indicating whether this instance is disposed. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases resources held by the object. + + + + + Releases resources before the object is reclaimed by garbage collection. + + + + + Gets a value indicating whether this instance is disposed. + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Provides a path to resolve instances. + + + + + A hack to hide methods defined on for IntelliSense + on fluent interfaces. Credit to Daniel Cazzulino. + + + + + Gets the type of this instance. + + The type of this instance. + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + An object that fires an event when it is disposed. + + + + + Occurs when the object is disposed. + + + + + Initializes a new instance of the class. + + The parent resolution root. + + + + Releases resources held by the object. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Gets or sets the parent resolution root (usually the kernel). + + + + + Occurs when the object is disposed. + + + + + Stores the objects that were activated + + + + + A component that contributes to the internals of Ninject. + + + + + A component that contributes to the internals of Ninject. + + + + + Gets or sets the settings. + + + + + Gets or sets the settings. + + + + + Stores the objects that were activated + + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + An object that is prunealble. + + + + + Removes instances from the cache which should no longer be re-used. + + + + + The objects that were activated as reference equal weak references. + + + + + The objects that were activated as reference equal weak references. + + + + + Initializes a new instance of the class. + + The cache pruner. + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + Prunes this instance. + + + + + Removes all dead objects. + + The objects collection to be freed of dead objects. + + + + Gets the activated object count. + + The activated object count. + + + + Gets the deactivated object count. + + The deactivated object count. + + + + Tracks instances for re-use in certain scopes. + + + + + Tracks instances for re-use in certain scopes. + + + + + Stores the specified instance in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets the number of entries currently stored in the cache. + + + + + Contains all cached instances. + This is a dictionary of scopes to a multimap for bindings to cache entries. + + + + + Initializes a new instance of the class. + + The pipeline component. + The cache pruner component. + + + + Releases resources held by the object. + + + + + + Stores the specified context in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Removes instances from the cache which should no longer be re-used. + + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets all entries for a binding withing the selected scope. + + The bindings. + All bindings of a binding. + + + + Gets all cache entries. + + Returns all cache entries. + + + + Forgets the specified cache entries. + + The cache entries. + + + + Forgets the specified entry. + + The entry. + + + + Gets the pipeline component. + + + + + Gets the number of entries currently stored in the cache. + + + + + An entry in the cache. + + + + + Initializes a new instance of the class. + + The context. + The instance reference. + + + + Gets the context of the instance. + + The context. + + + + Gets the instance reference. + + The instance reference. + + + + Uses a and some magic to poll + the garbage collector to see if it has run. + + + + + Prunes instances from an based on environmental information. + + + + + Starts pruning the specified cache based on the rules of the pruner. + + The cache that will be pruned. + + + + Stops pruning. + + + + + indicator for if GC has been run. + + + + + The caches that are being pruned. + + + + + The timer used to trigger the cache pruning + + + + + Releases resources held by the object. + + + + + Starts pruning the specified pruneable based on the rules of the pruner. + + The pruneable that will be pruned. + + + + Stops pruning. + + + + + Compares ReferenceEqualWeakReferences to objects + + + + + Returns if the specifed objects are equal. + + The first object. + The second object. + True if the objects are equal; otherwise false + + + + Returns the hash code of the specified object. + + The object for which the hash code is calculated. + The hash code of the specified object. + + + + A provider that delegates to a callback method to create instances. + + The type of instances the provider creates. + + + + A simple abstract provider for instances of a specific type. + + The type of instances the provider creates. + + + + Provides instances ot the type T + + The type provides by this implementation. + + + + Creates instances of services. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Initializes a new instance of the CallbackProvider<T> class. + + The callback method that will be called to create instances. + + + + Invokes the callback method to create an instance. + + The context. + The created instance. + + + + Gets the callback method used by the provider. + + + + + A provider that always returns the same constant value. + + The type of value that is returned. + + + + Initializes a new instance of the ConstantProvider<T> class. + + The value that the provider should return. + + + + Creates an instance within the specified context. + + The context. + The constant value this provider returns. + + + + Gets the value that the provider will return. + + + + + The standard provider for types, which activates instances via a . + + + + + Initializes a new instance of the class. + + The type (or prototype) of instances the provider creates. + The planner component. + The constructor scorer component. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the value to inject into the specified target. + + The context. + The target. + The value to inject into the specified target. + + + + Gets the implementation type that the provider will activate an instance of + for the specified service. + + The service in question. + The implementation type that will be activated. + + + + Gets a callback that creates an instance of the + for the specified type. + + The prototype the provider instance will create. + The created callback. + + + + Gets a callback that creates an instance of the + for the specified type and constructor. + + The prototype the provider instance will create. + The constructor. + The created callback. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Gets or sets the planner component. + + + + + Gets or sets the selector component. + + + + + Adds all activated instances to the activation cache. + + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The activation cache. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Gets or sets the settings. + + The ninject settings. + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Executes actions defined on the binding during activation and deactivation. + + + + + Calls the activation actions defined on the binding. + + The context. + A reference to the instance being activated. + + + + Calls the deactivation actions defined on the binding. + + The context. + A reference to the instance being deactivated. + + + + During deactivation, disposes instances that implement . + + + + + Disposes the specified instance. + + The context. + A reference to the instance being deactivated. + + + + During activation, initializes instances that implement . + + + + + Initializes the specified instance. + + The context. + A reference to the instance being activated. + + + + Injects methods on an instance during activation. + + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Injects properties on an instance during activation. + + + + + Initializes a new instance of the class. + + The injector factory component. + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Applies user supplied override values to instance properties. + + The context. + A reference to the instance being activated. + The parameter override value accessors. + + + + Gets the value to inject into the specified target. + + The context. + The target. + all property values of the current request. + The value to inject into the specified target. + + + + Gets the injector factory component. + + + + + Starts instances that implement during activation, + and stops them during deactivation. + + + + + Starts the specified instance. + + The context. + A reference to the instance being activated. + + + + Stops the specified instance. + + The context. + A reference to the instance being deactivated. + + + + Contains information about the activation of a single instance. + + + + + Contains information about the activation of a single instance. + + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Resolves this instance for this context. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Initializes a new instance of the class. + + The kernel managing the resolution. + The context's request. + The context's binding. + The cache component. + The planner component. + The pipeline component. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Resolves the instance associated with this hook. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Gets or sets the cache component. + + + + + Gets or sets the planner component. + + + + + Gets or sets the pipeline component. + + + + + Holds an instance during activation or after it has been cached. + + + + + Returns a value indicating whether the instance is of the specified type. + + The type in question. + if the instance is of the specified type, otherwise . + + + + Returns the instance as the specified type. + + The requested type. + The instance. + + + + Executes the specified action if the instance if of the specified type. + + The type in question. + The action to execute. + + + + Gets or sets the instance. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Determines whether the specified binding satisfies the constraint defined on this request. + + The binding. + True if the binding satisfies the constraint; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request should return a unique result. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The strategies to execute during activation and deactivation. + The activation cache. + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Initializes a new instance of the class. + + The service that was requested. + The constraint that will be applied to filter the bindings used for the request. + The parameters that affect the resolution. + The scope callback, if an external scope was specified. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + + + + Initializes a new instance of the class. + + The parent context. + The service that was requested. + The target that will receive the injection. + The scope callback, if an external scope was specified. + + + + Determines whether the specified binding satisfies the constraints defined on this request. + + The binding. + True if the binding satisfies the constraints; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request is for a single service. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Gets the callback that resolves the scope for the request, if an external scope was provided. + + + + + Defines a constraint on the decorated member. + + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Indicates that the decorated member should be injected. + + + + + Indicates that the decorated member should only be injected using binding(s) registered + with the specified name. + + + + + Initializes a new instance of the class. + + The name of the binding(s) to use. + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Gets the binding name. + + + + + Indicates that the decorated member represents an optional dependency. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes all registrations for the specified component. + + The component's type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Gets or sets the kernel that owns the component container. + + + + + Releases resources held by the object. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets or sets the kernel that owns the component container. + + + + + Provides meaningful exception messages. + + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that a module with the same name is already loaded. + + The new module. + The existing module. + The exception message. + + + + Generates a message saying that no module has been loaded with the specified name. + + The module name. + The exception message. + + + + Generates a message saying that the binding could not be uniquely resolved. + + The request. + The matching bindings, already formatted as strings + The exception message. + + + + Generates a message saying that the binding could not be resolved on the specified request. + + The request. + The exception message. + + + + Generates a message saying that the specified context has cyclic dependencies. + + The context. + The exception message. + + + + Generates a message saying that an invalid attribute type is used in the binding condition. + + The names of the services. + Name of the method. + The type. + The exception message. + + + + Generates a message saying that no constructors are available on the specified context. + + The context. + The exception message. + + + + Generates a message saying that no constructors are available for the given component. + + The component. + The implementation. + The exception message. + + + + Generates a message saying that the specified component is not registered. + + The component. + The exception message. + + + + Generates a message saying that the specified property could not be resolved on the specified request. + + The request. + The property name. + The exception message. + + + + Generates a message saying that the provider on the specified context returned null. + + The context. + The exception message. + + + + Generates a message saying that the constructor is ambiguous. + + The context. + The best constructor directives. + The exception message. + + + + Formats the constructor. + + The constructor. + The string writer. + + + + Formats the attribute. + + The string writer. + The attribute. + + + + Provides extension methods for string formatting + + + + + Formats the activation path into a meaningful string representation. + + The request to be formatted. + The activation path formatted as string. + + + + Formats the given binding into a meaningful string representation. + + The binding to be formatted. + The context. + The binding formatted as string + + + + Formats the specified request into a meaningful string representation. + + The request to be formatted. + The request formatted as string. + + + + Formats the specified target into a meaningful string representation.. + + The target to be formatted. + The target formatted as string. + + + + Formats the specified type into a meaningful string representation.. + + The type to be formatted. + The type formatted as string. + + + + Provides extension methods for see cref="IEnumerable{T}"/> + + + + + Executes the given action for each of the elements in the enumerable. + + + The series. + The action. + + + + Converts the given enumerable type to prevent changed on the type behind. + + The type of the enumerable. + The series. + The input type as real enumerable not castable to the original type. + + + + Extensions for MemberInfo + + + + + Determines whether the specified member has attribute. + + The type of the attribute. + The member. + + true if the specified member has attribute; otherwise, false. + + + + + Determines whether the specified member has attribute. + + The member. + The type of the attribute. + + true if the specified member has attribute; otherwise, false. + + + + + Gets the property info from its declared tpe. + + The member info. + The property definition. + The flags. + The property info from the declared type of the property. + + + + Determines whether the specified property info is private. + + The property info. + + true if the specified property info is private; otherwise, false. + + + + + Gets the custom attributes. + This version is able to get custom attributes for properties from base types even if the property is none public. + + The member. + Type of the attribute. + if set to true [inherited]. + + + + + Extension methods for type + + + + + + Gets an enumerable containing the given type and all its base types + + The type. + An enumerable containing the given type and all its base types + + + + Inheritable weak reference base class for Silverlight + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Gets a value indicating whether this instance is alive. + + true if this instance is alive; otherwise, false. + + + + Gets or sets the target of this weak reference. + + The target of this weak reference. + + + + Represents a future value. + + The type of value. + + + + Initializes a new instance of the Future<T> class. + + The callback that will be triggered to read the value. + + + + Gets the value from the future. + + The future. + The future value. + + + + Gets the value, resolving it if necessary. + + + + + Gets the callback that will be called to resolve the value. + + + + + Indicates the object has a reference to a . + + + + + Gets the binding. + + + + + Indicates that the object has a reference to an . + + + + + Gets the kernel. + + + + + A data structure that contains multiple values for a each key. + + The type of key. + The type of value. + + + + Adds the specified value for the specified key. + + The key. + The value. + + + + Removes the specified value for the specified key. + + The key. + The value. + True if such a value existed and was removed; otherwise false. + + + + Removes all values for the specified key. + + The key. + True if any such values existed; otherwise false. + + + + Removes all values. + + + + + Determines whether the multimap contains any values for the specified key. + + The key. + True if the multimap has one or more values for the specified key; otherwise, false. + + + + Determines whether the multimap contains the specified value for the specified key. + + The key. + The value. + True if the multimap contains such a value; otherwise, false. + + + + Returns an enumerator that iterates through a the multimap. + + An object that can be used to iterate through the multimap. + + + + Gets the collection of values stored under the specified key. + + The key. + + + + Gets the collection of keys. + + + + + Gets the collection of collections of values. + + + + + Weak reference that can be used in collections. It is equal to the + object it references and has the same hash code. + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Scope callbacks for standard scopes. + + + + + Gets the callback for transient scope. + + + + + Gets the callback for singleton scope. + + + + + Gets the callback for thread scope. + + + + + A delegate that can inject values into a constructor. + + + + + Creates injectors for members via s. + + + + + Creates injectors from members. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A delegate that can inject values into a method. + + + + + A delegate that can inject values into a property. + + + + + Creates injectors from members via reflective invocation. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + Retrieves assembly names from file names using a temporary app domain. + + + + + Retrieves assembly names from file names using a temporary app domain. + + + + + Gets all assembly names of the assemblies in the given files that match the filter. + + The filenames. + The filter. + All assembly names of the assemblies in the given files that match the filter. + + + + Gets all assembly names of the assemblies in the given files that match the filter. + + The filenames. + The filter. + All assembly names of the assemblies in the given files that match the filter. + + + + Creates a temporary app domain. + + The created app domain. + + + + This class is loaded into the temporary appdomain to load and check if the assemblies match the filter. + + + + + Gets the assembly names of the assemblies matching the filter. + + The filenames. + The filter. + All assembly names of the assemblies matching the filter. + + + + Loads modules from compiled assemblies. + + + + + Loads modules at runtime by searching external files. + + + + + Loads modules from the specified files. + + The names of the files to load modules from. + + + + Gets the file extensions that the plugin understands how to load. + + + + + The assembly name retriever. + + + + + The file extensions that are supported. + + + + + Initializes a new instance of the class. + + The kernel into which modules will be loaded. + The assembly name retriever. + + + + Loads modules from the specified files. + + The names of the files to load modules from. + + + + Gets the kernel into which modules will be loaded. + + + + + Gets the file extensions that the plugin understands how to load. + + + + + Finds modules defined in external files. + + + + + Loads any modules found in the files that match the specified patterns. + + The patterns to search. + + + + A pluggable unit that can be loaded into an . + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Gets the module's name. + + + + + Automatically finds and loads modules from assemblies. + + + + + Initializes a new instance of the class. + + The kernel into which modules will be loaded. + + + + Loads any modules found in the files that match the specified patterns. + + The patterns to search. + + + + Gets or sets the kernel into which modules will be loaded. + + + + + A loadable unit that defines bindings for your application. + + + + + Provides a path to register bindings. + + + + + Provides a path to register bindings. + + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax. + + + + Declares a binding from the service to itself. + + The services to bind. + The fluent syntax. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The services to re-bind. + The fluent syntax. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The services to bind. + The fluent syntax + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The services to re-bind. + The fluent syntax + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Provides a path to register bindings. + + + + + Gets the kernel. + + The kernel. + + + + Initializes a new instance of the class. + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel that the module is loaded into. + + + + + Gets the module's name. Only a single module with a given name can be loaded at one time. + + + + + Gets the bindings that were registered by the module. + + + + + Gets the kernel. + + The kernel. + + + + Overrides the injected value of a constructor argument. + + + + + Modifies an activation process in some way. + + + + + Modifies an activation process in some way. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Initializes a new instance of the class. + + The name of the parameter. + The value of the parameter. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Defines the interface for constructor arguments. + + + + + Determines if the parameter applies to the given target. + + + Only one parameter may return true. + + The context. + The target. + Tre if the parameter applies in the specified context to the specified target. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + + + + + Overrides the injected value of a property. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Overrides the injected value of a constructor argument. + + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + True if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Overrides the injected value of a constructor argument. + + + + + A weak reference to the constructor argument value. + + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + Keeps a weak reference to the value. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + + + + + Contains logic about which bindings to use for a given service request + when other attempts have failed. + + + + + Returns any bindings from the specified collection that match the specified request. + + The multimap of all registered bindings. + The request in question. + The series of matching bindings. + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains logic about which bindings to use for a given service request. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Resolves bindings for open generic types. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Resolves bindings that have been registered directly for the service. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains information about a service registration. + + + + + Contains information about a service registration. + + + + + The configuration of a binding. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + True if the request satisfies the condition; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Gets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + The binding configuration. + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + + The object that will act as the scope, or if the service is transient. + + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + + True if the request satisfies the condition; otherwise false. + + + + + Gets or sets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Gets the binding's metadata. + + + + + + Gets or sets the type of target for the binding. + + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + + Gets or sets the condition defined for the binding. + + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + + Gets the parameters defined for the binding. + + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + + Provides a root for the fluent syntax associated with an . + + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The type of the returned syntax. + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of the returned fleunt syntax + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Adds the constructor arguments for the specified constructor expression. + + The ctor expression. + The constructor argument syntax parameter expression. + + + + Adds a constructor argument for the specified argument expression. + + The argument. + Name of the argument. + The constructor argument syntax parameter expression. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Gets the names of the services. + + The names of the services. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Initializes a new instance of the class. + + The context. + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Gets the context. + + The context. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + The fourth service type to be bound. + + + + Used to define a basic binding syntax builder. + + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Used to define the target of a binding. + + The service being bound. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Gets the binding being built. + + + + + The configuration of a binding. + + + + + Initializes a new instance of the class. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the conditions defined on this binding. + + The request. + True if the request satisfies the conditions; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + The syntax to define bindings. + + The type of the service. + + + + Used to set the condition, scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to define the conditions under which a binding should be used. + + The service being bound. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified types. + Types that derive from one of the specified types are considered as valid targets. + Should match at lease one of the targets. + + The types to match. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match one of the specified types exactly. Types that derive from one of the specified types + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Used to define the scope in which instances activated via a binding should be re-used. + + The service being bound. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Used to define the name of a binding. + + The service being bound. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Used to add additional information to a binding. + + The service being bound. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Used to add additional actions to be performed during activation or deactivation of instances via a binding. + + The service being bound. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Used to set the scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to set the name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to add additional information or actions to a binding. + + The service being bound. + + + + The names of the services added to the exceptions. + + + + + Initializes a new instance of the BindingBuilder<T> class. + + The binding configuration to build. + The names of the configured services. + The kernel. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Describes the target of a binding. + + + + + Indicates that the binding is from a type to itself. + + + + + Indicates that the binding is from one type to another. + + + + + Indicates that the binding is from a type to a provider. + + + + + Indicates that the binding is from a type to a callback method. + + + + + Indicates that the binding is from a type to a constant value. + + + + + Describes the injection of a constructor. + + + + + Describes the injection of a method or constructor. + + + + + A piece of information used in an . (Just a marker.) + + + + + Initializes a new instance of the MethodInjectionDirectiveBase<TMethod, TInjector> class. + + The method this directive represents. + The injector that will be triggered. + + + + Creates targets for the parameters of the method. + + The method. + The targets for the method's parameters. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the targets for the directive. + + + + + Initializes a new instance of the class. + + The constructor described by the directive. + The injector that will be triggered. + + + + The base .ctor definition. + + + + + Describes the injection of a method. + + + + + Initializes a new instance of the class. + + The method described by the directive. + The injector that will be triggered. + + + + Describes the injection of a property. + + + + + Initializes a new instance of the class. + + The member the directive describes. + The injector that will be triggered. + + + + Creates a target for the property. + + The property. + The target for the property. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the injection target for the directive. + + + + + Adds a directive to plans indicating which constructor should be injected during activation. + + + + + Contributes to the generation of a . + + + + + Contributes to the specified plan. + + The plan that is being generated. + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for the constructor + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which methods should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each method + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which properties should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each property + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Represents a site on a type where a value will be injected. + + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the type of the target. + + + + + Gets the name of the target. + + + + + Gets the member that contains the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Represents a site on a type where a value can be injected. + + The type of site this represents. + + + + Initializes a new instance of the Target<T> class. + + The member that contains the target. + The site represented by the target. + + + + Returns an array of custom attributes of a specified type defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes of the specified type. + + + + Returns an array of custom attributes defined on the target. + + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes. + + + + Returns a value indicating whether an attribute of the specified type is defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + True if such an attribute is defined; otherwise false. + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the value(s) that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + A series of values that are available for injection. + + + + Gets the value that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + The value that is to be injected. + + + + Reads whether the target represents an optional dependency. + + if it is optional; otherwise . + + + + Reads the resolution constraint from target. + + The resolution constraint. + + + + Gets the member that contains the target. + + + + + Gets or sets the site (property, parameter, etc.) represented by the target. + + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Initializes a new instance of the class. + + The method that defines the parameter. + The parameter that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Initializes a new instance of the class. + + The property that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Describes the means by which a type should be activated. + + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Generates plans for how to activate instances. + + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Describes the means by which a type should be activated. + + + + + Initializes a new instance of the class. + + The type the plan describes. + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Gets the directives defined in the plan. + + + + + Generates plans for how to activate instances. + + + + + Initializes a new instance of the class. + + The strategies to execute during planning. + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Creates an empty plan for the specified type. + + The type for which a plan should be created. + The created plan. + + + + Creates a new plan for the specified type. + This method requires an active reader lock! + + The type. + The newly created plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Generates scores for constructors, to determine which is the best one to call during activation. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Determines whether members should be injected during activation. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Constructor selector that selects the constructor matching the one passed to the constructor. + + + + + Initializes a new instance of the class. + + The constructor info of the constructor that shall be selected. + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Scores constructors by either looking for the existence of an injection marker + attribute, or by counting the number of parameters. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Checkes whether a binding exists for a given target. + + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checkes whether a binding exists for a given target on the specified kernel. + + The kernel. + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checks whether any parameters exist for the geiven target.. + + The context. + The target. + Whether a parameter exists for the target in the given context. + + + + Determines whether members should be injected during activation by checking + if they are decorated with an injection marker attribute. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Selects members for injection. + + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets or sets the constructor scorer. + + + + + Gets the heuristics used to determine which members should be injected. + + + + + Selects members for injection. + + + + + Initializes a new instance of the class. + + The constructor scorer. + The injection heuristics. + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets the default binding flags. + + + + + Gets or sets the constructor scorer. + + + + + Gets the property injection heuristics. + + + + + Extension methods that enhance module loading. + + + + + Creates a new instance of the module and loads it into the kernel. + + The type of the module. + The kernel. + + + + Loads the module(s) into the kernel. + + The kernel. + The modules to load. + + + + Loads modules from the files that match the specified pattern(s). + + The kernel. + The file patterns (i.e. "*.dll", "modules/*.rb") to match. + + + + Loads modules defined in the specified assemblies. + + The kernel. + The assemblies to search. + + + + Extensions that enhance resolution of services. + + + + + Gets an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Evaluates if an instance of the specified service can be resolved. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding with the specified name can be resolved. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding that matches the specified constraint can be resolved. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Indicates that an error occured during activation of an instance. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The exception message. + + + + Initializes a new instance of the class. + + The exception message. + The inner exception. + + + + Initializes a new instance of the class. + + The serialized object data. + The serialization context. + + + + Allows to register kernel globally to perform some tasks on all kernels. + The registration is done by loading the GlobalKernelRegistrationModule to the kernel. + + + + + Performs an action on all registered kernels. + + The action. + + + + Registers the kernel into which the module is loaded on the GlobalKernelRegistry using the + type specified by TGlobalKernelRegistry. + + The type that is used to register the kernel. + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + A service that requires initialization after it is activated. + + + + + Initializes the instance. Called during activation. + + + + + A super-factory that can create objects of all kinds, following hints provided by s. + + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Loads modules from the files that match the specified pattern(s). + + The file patterns (i.e. "*.dll", "modules/*.rb") to match. + + + + Loads modules defined in the specified assemblies. + + The assemblies to search. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets the attribute that indicates that a member should be injected. + + + + + Gets the interval at which the cache should be pruned. + + + + + Gets the default scope callback. + + + + + Gets a value indicating whether the kernel should automatically load extensions at startup. + + + + + Gets the paths that should be searched for extensions. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets a value indicating whether Ninject should inject non public members. + + + + + Gets a value indicating whether Ninject should inject private properties of base classes. + + + Activating this setting has an impact on the performance. It is recomended not + to use this feature and use constructor injection instead. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By defuault this is disabled and whenever a provider returns null an exception is thrown. + + true if null is allowed as injected value otherwise false. + + + + A service that is started when activated, and stopped when deactivated. + + + + + Starts this instance. Called during activation. + + + + + Stops this instance. Called during deactivation. + + + + + The base implementation of an . + + + + + Lock used when adding missing bindings. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The component container to use. + The configuration to use. + The modules to load into the kernel. + + + + Releases resources held by the object. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Loads modules from the files that match the specified pattern(s). + + The file patterns (i.e. "*.dll", "modules/*.rb") to match. + + + + Loads modules defined in the specified assemblies. + + The assemblies to search. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Returns an IComparer that is used to determine resolution precedence. + + An IComparer that is used to determine resolution precedence. + + + + Returns a predicate that can determine if a given IBinding matches the request. + + The request/ + A predicate that can determine if a given IBinding matches the request. + + + + Adds components to the kernel during startup. + + + + + Attempts to handle a missing binding for a service. + + The service. + True if the missing binding can be handled; otherwise false. + + + + Attempts to handle a missing binding for a request. + + The request. + True if the missing binding can be handled; otherwise false. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Creates a context for the specified request and binding. + + The request. + The binding. + The created context. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets or sets the attribute that indicates that a member should be injected. + + + + + Gets or sets the interval at which the GC should be polled. + + + + + Gets or sets the default scope callback. + + + + + Gets or sets a value indicating whether the kernel should automatically load extensions at startup. + + + + + Gets or sets the paths that should be searched for extensions. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets a value indicating whether Ninject should inject non public members. + + + + + Gets a value indicating whether Ninject should inject private properties of base classes. + + + Activating this setting has an impact on the performance. It is recomended not + to use this feature and use constructor injection instead. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By default this is disabled and whenever a provider returns null an exception is thrown. + + + true if null is allowed as injected value otherwise false. + + + + + The standard implementation of a kernel. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Adds components to the kernel during startup. + + + + + Gets the kernel. + + The kernel. + + + diff --git a/packages/Ninject.3.2.2.0/lib/net40/Ninject.xml b/packages/Ninject.3.2.2.0/lib/net40/Ninject.xml new file mode 100644 index 0000000..d43312d --- /dev/null +++ b/packages/Ninject.3.2.2.0/lib/net40/Ninject.xml @@ -0,0 +1,6616 @@ + + + + Ninject + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + An object that notifies when it is disposed. + + + + + An object that can report whether or not it is disposed. + + + + + Gets a value indicating whether this instance is disposed. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases resources held by the object. + + + + + Releases resources before the object is reclaimed by garbage collection. + + + + + Gets a value indicating whether this instance is disposed. + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Provides a path to resolve instances. + + + + + A hack to hide methods defined on for IntelliSense + on fluent interfaces. Credit to Daniel Cazzulino. + + + + + Gets the type of this instance. + + The type of this instance. + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + An object that fires an event when it is disposed. + + + + + Occurs when the object is disposed. + + + + + Initializes a new instance of the class. + + The parent resolution root. + + + + Releases resources held by the object. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + + Gets or sets the parent resolution root (usually the kernel). + + + + + Occurs when the object is disposed. + + + + + Stores the objects that were activated + + + + + A component that contributes to the internals of Ninject. + + + + + A component that contributes to the internals of Ninject. + + + + + Gets or sets the settings. + + + + + Gets or sets the settings. + + + + + Stores the objects that were activated + + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + An object that is prunealble. + + + + + Removes instances from the cache which should no longer be re-used. + + + + + The objects that were activated as reference equal weak references. + + + + + The objects that were activated as reference equal weak references. + + + + + Initializes a new instance of the class. + + The cache pruner. + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + Prunes this instance. + + + + + Removes all dead objects. + + The objects collection to be freed of dead objects. + + + + Gets the activated object count. + + The activated object count. + + + + Gets the deactivated object count. + + The deactivated object count. + + + + Tracks instances for re-use in certain scopes. + + + + + Tracks instances for re-use in certain scopes. + + + + + Stores the specified instance in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets the number of entries currently stored in the cache. + + + + + Contains all cached instances. + This is a dictionary of scopes to a multimap for bindings to cache entries. + + + + + Initializes a new instance of the class. + + The pipeline component. + The cache pruner component. + + + + Releases resources held by the object. + + + + + + Stores the specified context in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Removes instances from the cache which should no longer be re-used. + + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets all entries for a binding withing the selected scope. + + The bindings. + All bindings of a binding. + + + + Gets all cache entries. + + Returns all cache entries. + + + + Forgets the specified cache entries. + + The cache entries. + + + + Forgets the specified entry. + + The entry. + + + + Gets the pipeline component. + + + + + Gets the number of entries currently stored in the cache. + + + + + An entry in the cache. + + + + + Initializes a new instance of the class. + + The context. + The instance reference. + + + + Gets the context of the instance. + + The context. + + + + Gets the instance reference. + + The instance reference. + + + + Uses a and some magic to poll + the garbage collector to see if it has run. + + + + + Prunes instances from an based on environmental information. + + + + + Starts pruning the specified cache based on the rules of the pruner. + + The cache that will be pruned. + + + + Stops pruning. + + + + + indicator for if GC has been run. + + + + + The caches that are being pruned. + + + + + The timer used to trigger the cache pruning + + + + + Releases resources held by the object. + + + + + Starts pruning the specified pruneable based on the rules of the pruner. + + The pruneable that will be pruned. + + + + Stops pruning. + + + + + Compares ReferenceEqualWeakReferences to objects + + + + + Returns if the specifed objects are equal. + + The first object. + The second object. + True if the objects are equal; otherwise false + + + + Returns the hash code of the specified object. + + The object for which the hash code is calculated. + The hash code of the specified object. + + + + A provider that delegates to a callback method to create instances. + + The type of instances the provider creates. + + + + A simple abstract provider for instances of a specific type. + + The type of instances the provider creates. + + + + Provides instances ot the type T + + The type provides by this implementation. + + + + Creates instances of services. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Initializes a new instance of the CallbackProvider<T> class. + + The callback method that will be called to create instances. + + + + Invokes the callback method to create an instance. + + The context. + The created instance. + + + + Gets the callback method used by the provider. + + + + + A provider that always returns the same constant value. + + The type of value that is returned. + + + + Initializes a new instance of the ConstantProvider<T> class. + + The value that the provider should return. + + + + Creates an instance within the specified context. + + The context. + The constant value this provider returns. + + + + Gets the value that the provider will return. + + + + + The standard provider for types, which activates instances via a . + + + + + Initializes a new instance of the class. + + The type (or prototype) of instances the provider creates. + The planner component. + The constructor scorer component. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the value to inject into the specified target. + + The context. + The target. + The value to inject into the specified target. + + + + Gets the implementation type that the provider will activate an instance of + for the specified service. + + The service in question. + The implementation type that will be activated. + + + + Gets a callback that creates an instance of the + for the specified type. + + The prototype the provider instance will create. + The created callback. + + + + Gets a callback that creates an instance of the + for the specified type and constructor. + + The prototype the provider instance will create. + The constructor. + The created callback. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Gets or sets the planner component. + + + + + Gets or sets the selector component. + + + + + Adds all activated instances to the activation cache. + + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The activation cache. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Gets or sets the settings. + + The ninject settings. + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Executes actions defined on the binding during activation and deactivation. + + + + + Calls the activation actions defined on the binding. + + The context. + A reference to the instance being activated. + + + + Calls the deactivation actions defined on the binding. + + The context. + A reference to the instance being deactivated. + + + + During deactivation, disposes instances that implement . + + + + + Disposes the specified instance. + + The context. + A reference to the instance being deactivated. + + + + During activation, initializes instances that implement . + + + + + Initializes the specified instance. + + The context. + A reference to the instance being activated. + + + + Injects methods on an instance during activation. + + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Injects properties on an instance during activation. + + + + + Initializes a new instance of the class. + + The injector factory component. + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Applies user supplied override values to instance properties. + + The context. + A reference to the instance being activated. + The parameter override value accessors. + + + + Gets the value to inject into the specified target. + + The context. + The target. + all property values of the current request. + The value to inject into the specified target. + + + + Gets the injector factory component. + + + + + Starts instances that implement during activation, + and stops them during deactivation. + + + + + Starts the specified instance. + + The context. + A reference to the instance being activated. + + + + Stops the specified instance. + + The context. + A reference to the instance being deactivated. + + + + Contains information about the activation of a single instance. + + + + + Contains information about the activation of a single instance. + + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Resolves this instance for this context. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Initializes a new instance of the class. + + The kernel managing the resolution. + The context's request. + The context's binding. + The cache component. + The planner component. + The pipeline component. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Resolves the instance associated with this hook. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Gets or sets the cache component. + + + + + Gets or sets the planner component. + + + + + Gets or sets the pipeline component. + + + + + Holds an instance during activation or after it has been cached. + + + + + Returns a value indicating whether the instance is of the specified type. + + The type in question. + if the instance is of the specified type, otherwise . + + + + Returns the instance as the specified type. + + The requested type. + The instance. + + + + Executes the specified action if the instance if of the specified type. + + The type in question. + The action to execute. + + + + Gets or sets the instance. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Determines whether the specified binding satisfies the constraint defined on this request. + + The binding. + True if the binding satisfies the constraint; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request should return a unique result. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The strategies to execute during activation and deactivation. + The activation cache. + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Initializes a new instance of the class. + + The service that was requested. + The constraint that will be applied to filter the bindings used for the request. + The parameters that affect the resolution. + The scope callback, if an external scope was specified. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + + + + Initializes a new instance of the class. + + The parent context. + The service that was requested. + The target that will receive the injection. + The scope callback, if an external scope was specified. + + + + Determines whether the specified binding satisfies the constraints defined on this request. + + The binding. + True if the binding satisfies the constraints; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request is for a single service. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Gets the callback that resolves the scope for the request, if an external scope was provided. + + + + + Defines a constraint on the decorated member. + + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Indicates that the decorated member should be injected. + + + + + Indicates that the decorated member should only be injected using binding(s) registered + with the specified name. + + + + + Initializes a new instance of the class. + + The name of the binding(s) to use. + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Gets the binding name. + + + + + Indicates that the decorated member represents an optional dependency. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes all registrations for the specified component. + + The component's type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Gets or sets the kernel that owns the component container. + + + + + Releases resources held by the object. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets or sets the kernel that owns the component container. + + + + + Provides meaningful exception messages. + + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that a module with the same name is already loaded. + + The new module. + The existing module. + The exception message. + + + + Generates a message saying that no module has been loaded with the specified name. + + The module name. + The exception message. + + + + Generates a message saying that the binding could not be uniquely resolved. + + The request. + The matching bindings, already formatted as strings + The exception message. + + + + Generates a message saying that the binding could not be resolved on the specified request. + + The request. + The exception message. + + + + Generates a message saying that the specified context has cyclic dependencies. + + The context. + The exception message. + + + + Generates a message saying that an invalid attribute type is used in the binding condition. + + The names of the services. + Name of the method. + The type. + The exception message. + + + + Generates a message saying that no constructors are available on the specified context. + + The context. + The exception message. + + + + Generates a message saying that no constructors are available for the given component. + + The component. + The implementation. + The exception message. + + + + Generates a message saying that the specified component is not registered. + + The component. + The exception message. + + + + Generates a message saying that the specified property could not be resolved on the specified request. + + The request. + The property name. + The exception message. + + + + Generates a message saying that the provider on the specified context returned null. + + The context. + The exception message. + + + + Generates a message saying that the constructor is ambiguous. + + The context. + The best constructor directives. + The exception message. + + + + Formats the constructor. + + The constructor. + The string writer. + + + + Formats the attribute. + + The string writer. + The attribute. + + + + Provides extension methods for string formatting + + + + + Formats the activation path into a meaningful string representation. + + The request to be formatted. + The activation path formatted as string. + + + + Formats the given binding into a meaningful string representation. + + The binding to be formatted. + The context. + The binding formatted as string + + + + Formats the specified request into a meaningful string representation. + + The request to be formatted. + The request formatted as string. + + + + Formats the specified target into a meaningful string representation.. + + The target to be formatted. + The target formatted as string. + + + + Formats the specified type into a meaningful string representation.. + + The type to be formatted. + The type formatted as string. + + + + Provides extension methods for see cref="IEnumerable{T}"/> + + + + + Executes the given action for each of the elements in the enumerable. + + + The series. + The action. + + + + Converts the given enumerable type to prevent changed on the type behind. + + The type of the enumerable. + The series. + The input type as real enumerable not castable to the original type. + + + + Extensions for MemberInfo + + + + + Determines whether the specified member has attribute. + + The type of the attribute. + The member. + + true if the specified member has attribute; otherwise, false. + + + + + Determines whether the specified member has attribute. + + The member. + The type of the attribute. + + true if the specified member has attribute; otherwise, false. + + + + + Gets the property info from its declared tpe. + + The member info. + The property definition. + The flags. + The property info from the declared type of the property. + + + + Determines whether the specified property info is private. + + The property info. + + true if the specified property info is private; otherwise, false. + + + + + Gets the custom attributes. + This version is able to get custom attributes for properties from base types even if the property is none public. + + The member. + Type of the attribute. + if set to true [inherited]. + + + + + Extension methods for type + + + + + + Gets an enumerable containing the given type and all its base types + + The type. + An enumerable containing the given type and all its base types + + + + Inheritable weak reference base class for Silverlight + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Gets a value indicating whether this instance is alive. + + true if this instance is alive; otherwise, false. + + + + Gets or sets the target of this weak reference. + + The target of this weak reference. + + + + Represents a future value. + + The type of value. + + + + Initializes a new instance of the Future<T> class. + + The callback that will be triggered to read the value. + + + + Gets the value from the future. + + The future. + The future value. + + + + Gets the value, resolving it if necessary. + + + + + Gets the callback that will be called to resolve the value. + + + + + Indicates the object has a reference to a . + + + + + Gets the binding. + + + + + Indicates that the object has a reference to an . + + + + + Gets the kernel. + + + + + A data structure that contains multiple values for a each key. + + The type of key. + The type of value. + + + + Adds the specified value for the specified key. + + The key. + The value. + + + + Removes the specified value for the specified key. + + The key. + The value. + True if such a value existed and was removed; otherwise false. + + + + Removes all values for the specified key. + + The key. + True if any such values existed; otherwise false. + + + + Removes all values. + + + + + Determines whether the multimap contains any values for the specified key. + + The key. + True if the multimap has one or more values for the specified key; otherwise, false. + + + + Determines whether the multimap contains the specified value for the specified key. + + The key. + The value. + True if the multimap contains such a value; otherwise, false. + + + + Returns an enumerator that iterates through a the multimap. + + An object that can be used to iterate through the multimap. + + + + Gets the collection of values stored under the specified key. + + The key. + + + + Gets the collection of keys. + + + + + Gets the collection of collections of values. + + + + + Weak reference that can be used in collections. It is equal to the + object it references and has the same hash code. + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Scope callbacks for standard scopes. + + + + + Gets the callback for transient scope. + + + + + Gets the callback for singleton scope. + + + + + Gets the callback for thread scope. + + + + + A delegate that can inject values into a constructor. + + + + + Creates injectors for members via s. + + + + + Creates injectors from members. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A delegate that can inject values into a method. + + + + + A delegate that can inject values into a property. + + + + + Creates injectors from members via reflective invocation. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + Retrieves assembly names from file names using a temporary app domain. + + + + + Retrieves assembly names from file names using a temporary app domain. + + + + + Gets all assembly names of the assemblies in the given files that match the filter. + + The filenames. + The filter. + All assembly names of the assemblies in the given files that match the filter. + + + + Gets all assembly names of the assemblies in the given files that match the filter. + + The filenames. + The filter. + All assembly names of the assemblies in the given files that match the filter. + + + + Creates a temporary app domain. + + The created app domain. + + + + This class is loaded into the temporary appdomain to load and check if the assemblies match the filter. + + + + + Gets the assembly names of the assemblies matching the filter. + + The filenames. + The filter. + All assembly names of the assemblies matching the filter. + + + + Loads modules from compiled assemblies. + + + + + Loads modules at runtime by searching external files. + + + + + Loads modules from the specified files. + + The names of the files to load modules from. + + + + Gets the file extensions that the plugin understands how to load. + + + + + The assembly name retriever. + + + + + The file extensions that are supported. + + + + + Initializes a new instance of the class. + + The kernel into which modules will be loaded. + The assembly name retriever. + + + + Loads modules from the specified files. + + The names of the files to load modules from. + + + + Gets the kernel into which modules will be loaded. + + + + + Gets the file extensions that the plugin understands how to load. + + + + + Finds modules defined in external files. + + + + + Loads any modules found in the files that match the specified patterns. + + The patterns to search. + + + + A pluggable unit that can be loaded into an . + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Gets the module's name. + + + + + Automatically finds and loads modules from assemblies. + + + + + Initializes a new instance of the class. + + The kernel into which modules will be loaded. + + + + Loads any modules found in the files that match the specified patterns. + + The patterns to search. + + + + Gets or sets the kernel into which modules will be loaded. + + + + + A loadable unit that defines bindings for your application. + + + + + Provides a path to register bindings. + + + + + Provides a path to register bindings. + + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax. + + + + Declares a binding from the service to itself. + + The services to bind. + The fluent syntax. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The services to re-bind. + The fluent syntax. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The services to bind. + The fluent syntax + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The services to re-bind. + The fluent syntax + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel. + + The kernel. + + + + Initializes a new instance of the class. + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel that the module is loaded into. + + + + + Gets the module's name. Only a single module with a given name can be loaded at one time. + + + + + Gets the bindings that were registered by the module. + + + + + Gets the kernel. + + The kernel. + + + + Overrides the injected value of a constructor argument. + + + + + Modifies an activation process in some way. + + + + + Modifies an activation process in some way. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Initializes a new instance of the class. + + The name of the parameter. + The value of the parameter. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Defines the interface for constructor arguments. + + + + + Determines if the parameter applies to the given target. + + + Only one parameter may return true. + + The context. + The target. + Tre if the parameter applies in the specified context to the specified target. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + + + + + Overrides the injected value of a property. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Overrides the injected value of a constructor argument. + + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + True if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Overrides the injected value of a constructor argument. + + + + + A weak reference to the constructor argument value. + + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + Keeps a weak reference to the value. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + + + + + Contains logic about which bindings to use for a given service request + when other attempts have failed. + + + + + Returns any bindings from the specified collection that match the specified request. + + The multimap of all registered bindings. + The request in question. + The series of matching bindings. + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains logic about which bindings to use for a given service request. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Resolves bindings for open generic types. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Resolves bindings that have been registered directly for the service. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains information about a service registration. + + + + + Contains information about a service registration. + + + + + The configuration of a binding. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + True if the request satisfies the condition; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Gets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + The binding configuration. + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + + The object that will act as the scope, or if the service is transient. + + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + + True if the request satisfies the condition; otherwise false. + + + + + Gets or sets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Gets the binding's metadata. + + + + + + Gets or sets the type of target for the binding. + + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + + Gets or sets the condition defined for the binding. + + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + + Gets the parameters defined for the binding. + + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + + Provides a root for the fluent syntax associated with an . + + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The type of the returned syntax. + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of the returned fleunt syntax + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Adds the constructor arguments for the specified constructor expression. + + The ctor expression. + The constructor argument syntax parameter expression. + + + + Adds a constructor argument for the specified argument expression. + + The argument. + Name of the argument. + The constructor argument syntax parameter expression. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Gets the names of the services. + + The names of the services. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Initializes a new instance of the class. + + The context. + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + The fourth service type to be bound. + + + + Used to define a basic binding syntax builder. + + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Used to define the target of a binding. + + The service being bound. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Gets the binding being built. + + + + + The configuration of a binding. + + + + + Initializes a new instance of the class. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the conditions defined on this binding. + + The request. + True if the request satisfies the conditions; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + The syntax to define bindings. + + The type of the service. + + + + Used to set the condition, scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to define the conditions under which a binding should be used. + + The service being bound. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified types. + Types that derive from one of the specified types are considered as valid targets. + Should match at lease one of the targets. + + The types to match. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match one of the specified types exactly. Types that derive from one of the specified types + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Used to define the scope in which instances activated via a binding should be re-used. + + The service being bound. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Used to define the name of a binding. + + The service being bound. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Used to add additional information to a binding. + + The service being bound. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Used to add additional actions to be performed during activation or deactivation of instances via a binding. + + The service being bound. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Used to set the scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to set the name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to add additional information or actions to a binding. + + The service being bound. + + + + The names of the services added to the exceptions. + + + + + Initializes a new instance of the BindingBuilder<T> class. + + The binding configuration to build. + The names of the configured services. + The kernel. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Describes the target of a binding. + + + + + Indicates that the binding is from a type to itself. + + + + + Indicates that the binding is from one type to another. + + + + + Indicates that the binding is from a type to a provider. + + + + + Indicates that the binding is from a type to a callback method. + + + + + Indicates that the binding is from a type to a constant value. + + + + + Describes the injection of a constructor. + + + + + Describes the injection of a method or constructor. + + + + + A piece of information used in an . (Just a marker.) + + + + + Initializes a new instance of the MethodInjectionDirectiveBase<TMethod, TInjector> class. + + The method this directive represents. + The injector that will be triggered. + + + + Creates targets for the parameters of the method. + + The method. + The targets for the method's parameters. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the targets for the directive. + + + + + Initializes a new instance of the class. + + The constructor described by the directive. + The injector that will be triggered. + + + + The base .ctor definition. + + + + + Describes the injection of a method. + + + + + Initializes a new instance of the class. + + The method described by the directive. + The injector that will be triggered. + + + + Describes the injection of a property. + + + + + Initializes a new instance of the class. + + The member the directive describes. + The injector that will be triggered. + + + + Creates a target for the property. + + The property. + The target for the property. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the injection target for the directive. + + + + + Adds a directive to plans indicating which constructor should be injected during activation. + + + + + Contributes to the generation of a . + + + + + Contributes to the specified plan. + + The plan that is being generated. + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for the constructor + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which methods should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each method + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which properties should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each property + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Represents a site on a type where a value will be injected. + + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the type of the target. + + + + + Gets the name of the target. + + + + + Gets the member that contains the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Represents a site on a type where a value can be injected. + + The type of site this represents. + + + + Initializes a new instance of the Target<T> class. + + The member that contains the target. + The site represented by the target. + + + + Returns an array of custom attributes of a specified type defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes of the specified type. + + + + Returns an array of custom attributes defined on the target. + + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes. + + + + Returns a value indicating whether an attribute of the specified type is defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + True if such an attribute is defined; otherwise false. + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the value(s) that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + A series of values that are available for injection. + + + + Gets the value that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + The value that is to be injected. + + + + Reads whether the target represents an optional dependency. + + if it is optional; otherwise . + + + + Reads the resolution constraint from target. + + The resolution constraint. + + + + Gets the member that contains the target. + + + + + Gets or sets the site (property, parameter, etc.) represented by the target. + + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Initializes a new instance of the class. + + The method that defines the parameter. + The parameter that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Initializes a new instance of the class. + + The property that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Describes the means by which a type should be activated. + + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Generates plans for how to activate instances. + + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Describes the means by which a type should be activated. + + + + + Initializes a new instance of the class. + + The type the plan describes. + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Gets the directives defined in the plan. + + + + + Generates plans for how to activate instances. + + + + + Initializes a new instance of the class. + + The strategies to execute during planning. + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Creates an empty plan for the specified type. + + The type for which a plan should be created. + The created plan. + + + + Creates a new plan for the specified type. + This method requires an active reader lock! + + The type. + The newly created plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Generates scores for constructors, to determine which is the best one to call during activation. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Determines whether members should be injected during activation. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Constructor selector that selects the constructor matching the one passed to the constructor. + + + + + Initializes a new instance of the class. + + The constructor info of the constructor that shall be selected. + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Scores constructors by either looking for the existence of an injection marker + attribute, or by counting the number of parameters. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Checkes whether a binding exists for a given target. + + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checkes whether a binding exists for a given target on the specified kernel. + + The kernel. + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checks whether any parameters exist for the geiven target.. + + The context. + The target. + Whether a parameter exists for the target in the given context. + + + + Determines whether members should be injected during activation by checking + if they are decorated with an injection marker attribute. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Selects members for injection. + + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets or sets the constructor scorer. + + + + + Gets the heuristics used to determine which members should be injected. + + + + + Selects members for injection. + + + + + Initializes a new instance of the class. + + The constructor scorer. + The injection heuristics. + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets the default binding flags. + + + + + Gets or sets the constructor scorer. + + + + + Gets the property injection heuristics. + + + + + Extension methods that enhance module loading. + + + + + Creates a new instance of the module and loads it into the kernel. + + The type of the module. + The kernel. + + + + Loads the module(s) into the kernel. + + The kernel. + The modules to load. + + + + Loads modules from the files that match the specified pattern(s). + + The kernel. + The file patterns (i.e. "*.dll", "modules/*.rb") to match. + + + + Loads modules defined in the specified assemblies. + + The kernel. + The assemblies to search. + + + + Extensions that enhance resolution of services. + + + + + Gets an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Evaluates if an instance of the specified service can be resolved. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding with the specified name can be resolved. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding that matches the specified constraint can be resolved. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Indicates that an error occured during activation of an instance. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The exception message. + + + + Initializes a new instance of the class. + + The exception message. + The inner exception. + + + + Initializes a new instance of the class. + + The serialized object data. + The serialization context. + + + + Allows to register kernel globally to perform some tasks on all kernels. + The registration is done by loading the GlobalKernelRegistrationModule to the kernel. + + + + + Performs an action on all registered kernels. + + The action. + + + + Registers the kernel into which the module is loaded on the GlobalKernelRegistry using the + type specified by TGlobalKernelRegistry. + + The type that is used to register the kernel. + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + A service that requires initialization after it is activated. + + + + + Initializes the instance. Called during activation. + + + + + A super-factory that can create objects of all kinds, following hints provided by s. + + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Loads modules from the files that match the specified pattern(s). + + The file patterns (i.e. "*.dll", "modules/*.rb") to match. + + + + Loads modules defined in the specified assemblies. + + The assemblies to search. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets the attribute that indicates that a member should be injected. + + + + + Gets the interval at which the cache should be pruned. + + + + + Gets the default scope callback. + + + + + Gets a value indicating whether the kernel should automatically load extensions at startup. + + + + + Gets the paths that should be searched for extensions. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets a value indicating whether Ninject should inject non public members. + + + + + Gets a value indicating whether Ninject should inject private properties of base classes. + + + Activating this setting has an impact on the performance. It is recomended not + to use this feature and use constructor injection instead. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By defuault this is disabled and whenever a provider returns null an exception is thrown. + + true if null is allowed as injected value otherwise false. + + + + A service that is started when activated, and stopped when deactivated. + + + + + Starts this instance. Called during activation. + + + + + Stops this instance. Called during deactivation. + + + + + The base implementation of an . + + + + + Lock used when adding missing bindings. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The component container to use. + The configuration to use. + The modules to load into the kernel. + + + + Releases resources held by the object. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Loads modules from the files that match the specified pattern(s). + + The file patterns (i.e. "*.dll", "modules/*.rb") to match. + + + + Loads modules defined in the specified assemblies. + + The assemblies to search. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Returns an IComparer that is used to determine resolution precedence. + + An IComparer that is used to determine resolution precedence. + + + + Returns a predicate that can determine if a given IBinding matches the request. + + The request/ + A predicate that can determine if a given IBinding matches the request. + + + + Adds components to the kernel during startup. + + + + + Attempts to handle a missing binding for a service. + + The service. + True if the missing binding can be handled; otherwise false. + + + + Attempts to handle a missing binding for a request. + + The request. + True if the missing binding can be handled; otherwise false. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Creates a context for the specified request and binding. + + The request. + The binding. + The created context. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets or sets the attribute that indicates that a member should be injected. + + + + + Gets or sets the interval at which the GC should be polled. + + + + + Gets or sets the default scope callback. + + + + + Gets or sets a value indicating whether the kernel should automatically load extensions at startup. + + + + + Gets or sets the paths that should be searched for extensions. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets a value indicating whether Ninject should inject non public members. + + + + + Gets a value indicating whether Ninject should inject private properties of base classes. + + + Activating this setting has an impact on the performance. It is recomended not + to use this feature and use constructor injection instead. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By default this is disabled and whenever a provider returns null an exception is thrown. + + + true if null is allowed as injected value otherwise false. + + + + + The standard implementation of a kernel. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Adds components to the kernel during startup. + + + + + Gets the kernel. + + The kernel. + + + diff --git a/packages/Ninject.3.2.2.0/lib/net45-full/Ninject.xml b/packages/Ninject.3.2.2.0/lib/net45-full/Ninject.xml new file mode 100644 index 0000000..d43312d --- /dev/null +++ b/packages/Ninject.3.2.2.0/lib/net45-full/Ninject.xml @@ -0,0 +1,6616 @@ + + + + Ninject + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + An object that notifies when it is disposed. + + + + + An object that can report whether or not it is disposed. + + + + + Gets a value indicating whether this instance is disposed. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases resources held by the object. + + + + + Releases resources before the object is reclaimed by garbage collection. + + + + + Gets a value indicating whether this instance is disposed. + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Provides a path to resolve instances. + + + + + A hack to hide methods defined on for IntelliSense + on fluent interfaces. Credit to Daniel Cazzulino. + + + + + Gets the type of this instance. + + The type of this instance. + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + An object that fires an event when it is disposed. + + + + + Occurs when the object is disposed. + + + + + Initializes a new instance of the class. + + The parent resolution root. + + + + Releases resources held by the object. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + + Gets or sets the parent resolution root (usually the kernel). + + + + + Occurs when the object is disposed. + + + + + Stores the objects that were activated + + + + + A component that contributes to the internals of Ninject. + + + + + A component that contributes to the internals of Ninject. + + + + + Gets or sets the settings. + + + + + Gets or sets the settings. + + + + + Stores the objects that were activated + + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + An object that is prunealble. + + + + + Removes instances from the cache which should no longer be re-used. + + + + + The objects that were activated as reference equal weak references. + + + + + The objects that were activated as reference equal weak references. + + + + + Initializes a new instance of the class. + + The cache pruner. + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + Prunes this instance. + + + + + Removes all dead objects. + + The objects collection to be freed of dead objects. + + + + Gets the activated object count. + + The activated object count. + + + + Gets the deactivated object count. + + The deactivated object count. + + + + Tracks instances for re-use in certain scopes. + + + + + Tracks instances for re-use in certain scopes. + + + + + Stores the specified instance in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets the number of entries currently stored in the cache. + + + + + Contains all cached instances. + This is a dictionary of scopes to a multimap for bindings to cache entries. + + + + + Initializes a new instance of the class. + + The pipeline component. + The cache pruner component. + + + + Releases resources held by the object. + + + + + + Stores the specified context in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Removes instances from the cache which should no longer be re-used. + + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets all entries for a binding withing the selected scope. + + The bindings. + All bindings of a binding. + + + + Gets all cache entries. + + Returns all cache entries. + + + + Forgets the specified cache entries. + + The cache entries. + + + + Forgets the specified entry. + + The entry. + + + + Gets the pipeline component. + + + + + Gets the number of entries currently stored in the cache. + + + + + An entry in the cache. + + + + + Initializes a new instance of the class. + + The context. + The instance reference. + + + + Gets the context of the instance. + + The context. + + + + Gets the instance reference. + + The instance reference. + + + + Uses a and some magic to poll + the garbage collector to see if it has run. + + + + + Prunes instances from an based on environmental information. + + + + + Starts pruning the specified cache based on the rules of the pruner. + + The cache that will be pruned. + + + + Stops pruning. + + + + + indicator for if GC has been run. + + + + + The caches that are being pruned. + + + + + The timer used to trigger the cache pruning + + + + + Releases resources held by the object. + + + + + Starts pruning the specified pruneable based on the rules of the pruner. + + The pruneable that will be pruned. + + + + Stops pruning. + + + + + Compares ReferenceEqualWeakReferences to objects + + + + + Returns if the specifed objects are equal. + + The first object. + The second object. + True if the objects are equal; otherwise false + + + + Returns the hash code of the specified object. + + The object for which the hash code is calculated. + The hash code of the specified object. + + + + A provider that delegates to a callback method to create instances. + + The type of instances the provider creates. + + + + A simple abstract provider for instances of a specific type. + + The type of instances the provider creates. + + + + Provides instances ot the type T + + The type provides by this implementation. + + + + Creates instances of services. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Initializes a new instance of the CallbackProvider<T> class. + + The callback method that will be called to create instances. + + + + Invokes the callback method to create an instance. + + The context. + The created instance. + + + + Gets the callback method used by the provider. + + + + + A provider that always returns the same constant value. + + The type of value that is returned. + + + + Initializes a new instance of the ConstantProvider<T> class. + + The value that the provider should return. + + + + Creates an instance within the specified context. + + The context. + The constant value this provider returns. + + + + Gets the value that the provider will return. + + + + + The standard provider for types, which activates instances via a . + + + + + Initializes a new instance of the class. + + The type (or prototype) of instances the provider creates. + The planner component. + The constructor scorer component. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the value to inject into the specified target. + + The context. + The target. + The value to inject into the specified target. + + + + Gets the implementation type that the provider will activate an instance of + for the specified service. + + The service in question. + The implementation type that will be activated. + + + + Gets a callback that creates an instance of the + for the specified type. + + The prototype the provider instance will create. + The created callback. + + + + Gets a callback that creates an instance of the + for the specified type and constructor. + + The prototype the provider instance will create. + The constructor. + The created callback. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Gets or sets the planner component. + + + + + Gets or sets the selector component. + + + + + Adds all activated instances to the activation cache. + + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The activation cache. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Gets or sets the settings. + + The ninject settings. + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Executes actions defined on the binding during activation and deactivation. + + + + + Calls the activation actions defined on the binding. + + The context. + A reference to the instance being activated. + + + + Calls the deactivation actions defined on the binding. + + The context. + A reference to the instance being deactivated. + + + + During deactivation, disposes instances that implement . + + + + + Disposes the specified instance. + + The context. + A reference to the instance being deactivated. + + + + During activation, initializes instances that implement . + + + + + Initializes the specified instance. + + The context. + A reference to the instance being activated. + + + + Injects methods on an instance during activation. + + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Injects properties on an instance during activation. + + + + + Initializes a new instance of the class. + + The injector factory component. + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Applies user supplied override values to instance properties. + + The context. + A reference to the instance being activated. + The parameter override value accessors. + + + + Gets the value to inject into the specified target. + + The context. + The target. + all property values of the current request. + The value to inject into the specified target. + + + + Gets the injector factory component. + + + + + Starts instances that implement during activation, + and stops them during deactivation. + + + + + Starts the specified instance. + + The context. + A reference to the instance being activated. + + + + Stops the specified instance. + + The context. + A reference to the instance being deactivated. + + + + Contains information about the activation of a single instance. + + + + + Contains information about the activation of a single instance. + + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Resolves this instance for this context. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Initializes a new instance of the class. + + The kernel managing the resolution. + The context's request. + The context's binding. + The cache component. + The planner component. + The pipeline component. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Resolves the instance associated with this hook. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Gets or sets the cache component. + + + + + Gets or sets the planner component. + + + + + Gets or sets the pipeline component. + + + + + Holds an instance during activation or after it has been cached. + + + + + Returns a value indicating whether the instance is of the specified type. + + The type in question. + if the instance is of the specified type, otherwise . + + + + Returns the instance as the specified type. + + The requested type. + The instance. + + + + Executes the specified action if the instance if of the specified type. + + The type in question. + The action to execute. + + + + Gets or sets the instance. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Determines whether the specified binding satisfies the constraint defined on this request. + + The binding. + True if the binding satisfies the constraint; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request should return a unique result. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The strategies to execute during activation and deactivation. + The activation cache. + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Initializes a new instance of the class. + + The service that was requested. + The constraint that will be applied to filter the bindings used for the request. + The parameters that affect the resolution. + The scope callback, if an external scope was specified. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + + + + Initializes a new instance of the class. + + The parent context. + The service that was requested. + The target that will receive the injection. + The scope callback, if an external scope was specified. + + + + Determines whether the specified binding satisfies the constraints defined on this request. + + The binding. + True if the binding satisfies the constraints; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request is for a single service. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Gets the callback that resolves the scope for the request, if an external scope was provided. + + + + + Defines a constraint on the decorated member. + + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Indicates that the decorated member should be injected. + + + + + Indicates that the decorated member should only be injected using binding(s) registered + with the specified name. + + + + + Initializes a new instance of the class. + + The name of the binding(s) to use. + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Gets the binding name. + + + + + Indicates that the decorated member represents an optional dependency. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes all registrations for the specified component. + + The component's type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Gets or sets the kernel that owns the component container. + + + + + Releases resources held by the object. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets or sets the kernel that owns the component container. + + + + + Provides meaningful exception messages. + + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that a module with the same name is already loaded. + + The new module. + The existing module. + The exception message. + + + + Generates a message saying that no module has been loaded with the specified name. + + The module name. + The exception message. + + + + Generates a message saying that the binding could not be uniquely resolved. + + The request. + The matching bindings, already formatted as strings + The exception message. + + + + Generates a message saying that the binding could not be resolved on the specified request. + + The request. + The exception message. + + + + Generates a message saying that the specified context has cyclic dependencies. + + The context. + The exception message. + + + + Generates a message saying that an invalid attribute type is used in the binding condition. + + The names of the services. + Name of the method. + The type. + The exception message. + + + + Generates a message saying that no constructors are available on the specified context. + + The context. + The exception message. + + + + Generates a message saying that no constructors are available for the given component. + + The component. + The implementation. + The exception message. + + + + Generates a message saying that the specified component is not registered. + + The component. + The exception message. + + + + Generates a message saying that the specified property could not be resolved on the specified request. + + The request. + The property name. + The exception message. + + + + Generates a message saying that the provider on the specified context returned null. + + The context. + The exception message. + + + + Generates a message saying that the constructor is ambiguous. + + The context. + The best constructor directives. + The exception message. + + + + Formats the constructor. + + The constructor. + The string writer. + + + + Formats the attribute. + + The string writer. + The attribute. + + + + Provides extension methods for string formatting + + + + + Formats the activation path into a meaningful string representation. + + The request to be formatted. + The activation path formatted as string. + + + + Formats the given binding into a meaningful string representation. + + The binding to be formatted. + The context. + The binding formatted as string + + + + Formats the specified request into a meaningful string representation. + + The request to be formatted. + The request formatted as string. + + + + Formats the specified target into a meaningful string representation.. + + The target to be formatted. + The target formatted as string. + + + + Formats the specified type into a meaningful string representation.. + + The type to be formatted. + The type formatted as string. + + + + Provides extension methods for see cref="IEnumerable{T}"/> + + + + + Executes the given action for each of the elements in the enumerable. + + + The series. + The action. + + + + Converts the given enumerable type to prevent changed on the type behind. + + The type of the enumerable. + The series. + The input type as real enumerable not castable to the original type. + + + + Extensions for MemberInfo + + + + + Determines whether the specified member has attribute. + + The type of the attribute. + The member. + + true if the specified member has attribute; otherwise, false. + + + + + Determines whether the specified member has attribute. + + The member. + The type of the attribute. + + true if the specified member has attribute; otherwise, false. + + + + + Gets the property info from its declared tpe. + + The member info. + The property definition. + The flags. + The property info from the declared type of the property. + + + + Determines whether the specified property info is private. + + The property info. + + true if the specified property info is private; otherwise, false. + + + + + Gets the custom attributes. + This version is able to get custom attributes for properties from base types even if the property is none public. + + The member. + Type of the attribute. + if set to true [inherited]. + + + + + Extension methods for type + + + + + + Gets an enumerable containing the given type and all its base types + + The type. + An enumerable containing the given type and all its base types + + + + Inheritable weak reference base class for Silverlight + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Gets a value indicating whether this instance is alive. + + true if this instance is alive; otherwise, false. + + + + Gets or sets the target of this weak reference. + + The target of this weak reference. + + + + Represents a future value. + + The type of value. + + + + Initializes a new instance of the Future<T> class. + + The callback that will be triggered to read the value. + + + + Gets the value from the future. + + The future. + The future value. + + + + Gets the value, resolving it if necessary. + + + + + Gets the callback that will be called to resolve the value. + + + + + Indicates the object has a reference to a . + + + + + Gets the binding. + + + + + Indicates that the object has a reference to an . + + + + + Gets the kernel. + + + + + A data structure that contains multiple values for a each key. + + The type of key. + The type of value. + + + + Adds the specified value for the specified key. + + The key. + The value. + + + + Removes the specified value for the specified key. + + The key. + The value. + True if such a value existed and was removed; otherwise false. + + + + Removes all values for the specified key. + + The key. + True if any such values existed; otherwise false. + + + + Removes all values. + + + + + Determines whether the multimap contains any values for the specified key. + + The key. + True if the multimap has one or more values for the specified key; otherwise, false. + + + + Determines whether the multimap contains the specified value for the specified key. + + The key. + The value. + True if the multimap contains such a value; otherwise, false. + + + + Returns an enumerator that iterates through a the multimap. + + An object that can be used to iterate through the multimap. + + + + Gets the collection of values stored under the specified key. + + The key. + + + + Gets the collection of keys. + + + + + Gets the collection of collections of values. + + + + + Weak reference that can be used in collections. It is equal to the + object it references and has the same hash code. + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Scope callbacks for standard scopes. + + + + + Gets the callback for transient scope. + + + + + Gets the callback for singleton scope. + + + + + Gets the callback for thread scope. + + + + + A delegate that can inject values into a constructor. + + + + + Creates injectors for members via s. + + + + + Creates injectors from members. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A delegate that can inject values into a method. + + + + + A delegate that can inject values into a property. + + + + + Creates injectors from members via reflective invocation. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + Retrieves assembly names from file names using a temporary app domain. + + + + + Retrieves assembly names from file names using a temporary app domain. + + + + + Gets all assembly names of the assemblies in the given files that match the filter. + + The filenames. + The filter. + All assembly names of the assemblies in the given files that match the filter. + + + + Gets all assembly names of the assemblies in the given files that match the filter. + + The filenames. + The filter. + All assembly names of the assemblies in the given files that match the filter. + + + + Creates a temporary app domain. + + The created app domain. + + + + This class is loaded into the temporary appdomain to load and check if the assemblies match the filter. + + + + + Gets the assembly names of the assemblies matching the filter. + + The filenames. + The filter. + All assembly names of the assemblies matching the filter. + + + + Loads modules from compiled assemblies. + + + + + Loads modules at runtime by searching external files. + + + + + Loads modules from the specified files. + + The names of the files to load modules from. + + + + Gets the file extensions that the plugin understands how to load. + + + + + The assembly name retriever. + + + + + The file extensions that are supported. + + + + + Initializes a new instance of the class. + + The kernel into which modules will be loaded. + The assembly name retriever. + + + + Loads modules from the specified files. + + The names of the files to load modules from. + + + + Gets the kernel into which modules will be loaded. + + + + + Gets the file extensions that the plugin understands how to load. + + + + + Finds modules defined in external files. + + + + + Loads any modules found in the files that match the specified patterns. + + The patterns to search. + + + + A pluggable unit that can be loaded into an . + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Gets the module's name. + + + + + Automatically finds and loads modules from assemblies. + + + + + Initializes a new instance of the class. + + The kernel into which modules will be loaded. + + + + Loads any modules found in the files that match the specified patterns. + + The patterns to search. + + + + Gets or sets the kernel into which modules will be loaded. + + + + + A loadable unit that defines bindings for your application. + + + + + Provides a path to register bindings. + + + + + Provides a path to register bindings. + + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax. + + + + Declares a binding from the service to itself. + + The services to bind. + The fluent syntax. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The services to re-bind. + The fluent syntax. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The services to bind. + The fluent syntax + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The services to re-bind. + The fluent syntax + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel. + + The kernel. + + + + Initializes a new instance of the class. + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel that the module is loaded into. + + + + + Gets the module's name. Only a single module with a given name can be loaded at one time. + + + + + Gets the bindings that were registered by the module. + + + + + Gets the kernel. + + The kernel. + + + + Overrides the injected value of a constructor argument. + + + + + Modifies an activation process in some way. + + + + + Modifies an activation process in some way. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Initializes a new instance of the class. + + The name of the parameter. + The value of the parameter. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Defines the interface for constructor arguments. + + + + + Determines if the parameter applies to the given target. + + + Only one parameter may return true. + + The context. + The target. + Tre if the parameter applies in the specified context to the specified target. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + + + + + Overrides the injected value of a property. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Overrides the injected value of a constructor argument. + + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + True if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Overrides the injected value of a constructor argument. + + + + + A weak reference to the constructor argument value. + + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + Keeps a weak reference to the value. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + + + + + Contains logic about which bindings to use for a given service request + when other attempts have failed. + + + + + Returns any bindings from the specified collection that match the specified request. + + The multimap of all registered bindings. + The request in question. + The series of matching bindings. + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains logic about which bindings to use for a given service request. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Resolves bindings for open generic types. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Resolves bindings that have been registered directly for the service. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains information about a service registration. + + + + + Contains information about a service registration. + + + + + The configuration of a binding. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + True if the request satisfies the condition; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Gets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + The binding configuration. + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + + The object that will act as the scope, or if the service is transient. + + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + + True if the request satisfies the condition; otherwise false. + + + + + Gets or sets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Gets the binding's metadata. + + + + + + Gets or sets the type of target for the binding. + + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + + Gets or sets the condition defined for the binding. + + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + + Gets the parameters defined for the binding. + + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + + Provides a root for the fluent syntax associated with an . + + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The type of the returned syntax. + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of the returned fleunt syntax + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Adds the constructor arguments for the specified constructor expression. + + The ctor expression. + The constructor argument syntax parameter expression. + + + + Adds a constructor argument for the specified argument expression. + + The argument. + Name of the argument. + The constructor argument syntax parameter expression. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Gets the names of the services. + + The names of the services. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Initializes a new instance of the class. + + The context. + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + The fourth service type to be bound. + + + + Used to define a basic binding syntax builder. + + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Used to define the target of a binding. + + The service being bound. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Gets the binding being built. + + + + + The configuration of a binding. + + + + + Initializes a new instance of the class. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the conditions defined on this binding. + + The request. + True if the request satisfies the conditions; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + The syntax to define bindings. + + The type of the service. + + + + Used to set the condition, scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to define the conditions under which a binding should be used. + + The service being bound. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified types. + Types that derive from one of the specified types are considered as valid targets. + Should match at lease one of the targets. + + The types to match. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match one of the specified types exactly. Types that derive from one of the specified types + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Used to define the scope in which instances activated via a binding should be re-used. + + The service being bound. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Used to define the name of a binding. + + The service being bound. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Used to add additional information to a binding. + + The service being bound. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Used to add additional actions to be performed during activation or deactivation of instances via a binding. + + The service being bound. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Used to set the scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to set the name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to add additional information or actions to a binding. + + The service being bound. + + + + The names of the services added to the exceptions. + + + + + Initializes a new instance of the BindingBuilder<T> class. + + The binding configuration to build. + The names of the configured services. + The kernel. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Describes the target of a binding. + + + + + Indicates that the binding is from a type to itself. + + + + + Indicates that the binding is from one type to another. + + + + + Indicates that the binding is from a type to a provider. + + + + + Indicates that the binding is from a type to a callback method. + + + + + Indicates that the binding is from a type to a constant value. + + + + + Describes the injection of a constructor. + + + + + Describes the injection of a method or constructor. + + + + + A piece of information used in an . (Just a marker.) + + + + + Initializes a new instance of the MethodInjectionDirectiveBase<TMethod, TInjector> class. + + The method this directive represents. + The injector that will be triggered. + + + + Creates targets for the parameters of the method. + + The method. + The targets for the method's parameters. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the targets for the directive. + + + + + Initializes a new instance of the class. + + The constructor described by the directive. + The injector that will be triggered. + + + + The base .ctor definition. + + + + + Describes the injection of a method. + + + + + Initializes a new instance of the class. + + The method described by the directive. + The injector that will be triggered. + + + + Describes the injection of a property. + + + + + Initializes a new instance of the class. + + The member the directive describes. + The injector that will be triggered. + + + + Creates a target for the property. + + The property. + The target for the property. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the injection target for the directive. + + + + + Adds a directive to plans indicating which constructor should be injected during activation. + + + + + Contributes to the generation of a . + + + + + Contributes to the specified plan. + + The plan that is being generated. + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for the constructor + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which methods should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each method + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which properties should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each property + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Represents a site on a type where a value will be injected. + + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the type of the target. + + + + + Gets the name of the target. + + + + + Gets the member that contains the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Represents a site on a type where a value can be injected. + + The type of site this represents. + + + + Initializes a new instance of the Target<T> class. + + The member that contains the target. + The site represented by the target. + + + + Returns an array of custom attributes of a specified type defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes of the specified type. + + + + Returns an array of custom attributes defined on the target. + + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes. + + + + Returns a value indicating whether an attribute of the specified type is defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + True if such an attribute is defined; otherwise false. + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the value(s) that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + A series of values that are available for injection. + + + + Gets the value that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + The value that is to be injected. + + + + Reads whether the target represents an optional dependency. + + if it is optional; otherwise . + + + + Reads the resolution constraint from target. + + The resolution constraint. + + + + Gets the member that contains the target. + + + + + Gets or sets the site (property, parameter, etc.) represented by the target. + + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Initializes a new instance of the class. + + The method that defines the parameter. + The parameter that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Initializes a new instance of the class. + + The property that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Describes the means by which a type should be activated. + + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Generates plans for how to activate instances. + + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Describes the means by which a type should be activated. + + + + + Initializes a new instance of the class. + + The type the plan describes. + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Gets the directives defined in the plan. + + + + + Generates plans for how to activate instances. + + + + + Initializes a new instance of the class. + + The strategies to execute during planning. + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Creates an empty plan for the specified type. + + The type for which a plan should be created. + The created plan. + + + + Creates a new plan for the specified type. + This method requires an active reader lock! + + The type. + The newly created plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Generates scores for constructors, to determine which is the best one to call during activation. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Determines whether members should be injected during activation. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Constructor selector that selects the constructor matching the one passed to the constructor. + + + + + Initializes a new instance of the class. + + The constructor info of the constructor that shall be selected. + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Scores constructors by either looking for the existence of an injection marker + attribute, or by counting the number of parameters. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Checkes whether a binding exists for a given target. + + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checkes whether a binding exists for a given target on the specified kernel. + + The kernel. + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checks whether any parameters exist for the geiven target.. + + The context. + The target. + Whether a parameter exists for the target in the given context. + + + + Determines whether members should be injected during activation by checking + if they are decorated with an injection marker attribute. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Selects members for injection. + + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets or sets the constructor scorer. + + + + + Gets the heuristics used to determine which members should be injected. + + + + + Selects members for injection. + + + + + Initializes a new instance of the class. + + The constructor scorer. + The injection heuristics. + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets the default binding flags. + + + + + Gets or sets the constructor scorer. + + + + + Gets the property injection heuristics. + + + + + Extension methods that enhance module loading. + + + + + Creates a new instance of the module and loads it into the kernel. + + The type of the module. + The kernel. + + + + Loads the module(s) into the kernel. + + The kernel. + The modules to load. + + + + Loads modules from the files that match the specified pattern(s). + + The kernel. + The file patterns (i.e. "*.dll", "modules/*.rb") to match. + + + + Loads modules defined in the specified assemblies. + + The kernel. + The assemblies to search. + + + + Extensions that enhance resolution of services. + + + + + Gets an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Evaluates if an instance of the specified service can be resolved. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding with the specified name can be resolved. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding that matches the specified constraint can be resolved. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Indicates that an error occured during activation of an instance. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The exception message. + + + + Initializes a new instance of the class. + + The exception message. + The inner exception. + + + + Initializes a new instance of the class. + + The serialized object data. + The serialization context. + + + + Allows to register kernel globally to perform some tasks on all kernels. + The registration is done by loading the GlobalKernelRegistrationModule to the kernel. + + + + + Performs an action on all registered kernels. + + The action. + + + + Registers the kernel into which the module is loaded on the GlobalKernelRegistry using the + type specified by TGlobalKernelRegistry. + + The type that is used to register the kernel. + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + A service that requires initialization after it is activated. + + + + + Initializes the instance. Called during activation. + + + + + A super-factory that can create objects of all kinds, following hints provided by s. + + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Loads modules from the files that match the specified pattern(s). + + The file patterns (i.e. "*.dll", "modules/*.rb") to match. + + + + Loads modules defined in the specified assemblies. + + The assemblies to search. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets the attribute that indicates that a member should be injected. + + + + + Gets the interval at which the cache should be pruned. + + + + + Gets the default scope callback. + + + + + Gets a value indicating whether the kernel should automatically load extensions at startup. + + + + + Gets the paths that should be searched for extensions. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets a value indicating whether Ninject should inject non public members. + + + + + Gets a value indicating whether Ninject should inject private properties of base classes. + + + Activating this setting has an impact on the performance. It is recomended not + to use this feature and use constructor injection instead. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By defuault this is disabled and whenever a provider returns null an exception is thrown. + + true if null is allowed as injected value otherwise false. + + + + A service that is started when activated, and stopped when deactivated. + + + + + Starts this instance. Called during activation. + + + + + Stops this instance. Called during deactivation. + + + + + The base implementation of an . + + + + + Lock used when adding missing bindings. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The component container to use. + The configuration to use. + The modules to load into the kernel. + + + + Releases resources held by the object. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Loads modules from the files that match the specified pattern(s). + + The file patterns (i.e. "*.dll", "modules/*.rb") to match. + + + + Loads modules defined in the specified assemblies. + + The assemblies to search. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Returns an IComparer that is used to determine resolution precedence. + + An IComparer that is used to determine resolution precedence. + + + + Returns a predicate that can determine if a given IBinding matches the request. + + The request/ + A predicate that can determine if a given IBinding matches the request. + + + + Adds components to the kernel during startup. + + + + + Attempts to handle a missing binding for a service. + + The service. + True if the missing binding can be handled; otherwise false. + + + + Attempts to handle a missing binding for a request. + + The request. + True if the missing binding can be handled; otherwise false. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Creates a context for the specified request and binding. + + The request. + The binding. + The created context. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets or sets the attribute that indicates that a member should be injected. + + + + + Gets or sets the interval at which the GC should be polled. + + + + + Gets or sets the default scope callback. + + + + + Gets or sets a value indicating whether the kernel should automatically load extensions at startup. + + + + + Gets or sets the paths that should be searched for extensions. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets a value indicating whether Ninject should inject non public members. + + + + + Gets a value indicating whether Ninject should inject private properties of base classes. + + + Activating this setting has an impact on the performance. It is recomended not + to use this feature and use constructor injection instead. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By default this is disabled and whenever a provider returns null an exception is thrown. + + + true if null is allowed as injected value otherwise false. + + + + + The standard implementation of a kernel. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Adds components to the kernel during startup. + + + + + Gets the kernel. + + The kernel. + + + diff --git a/packages/Ninject.3.2.2.0/lib/sl2/Ninject.xml b/packages/Ninject.3.2.2.0/lib/sl2/Ninject.xml new file mode 100644 index 0000000..1539119 --- /dev/null +++ b/packages/Ninject.3.2.2.0/lib/sl2/Ninject.xml @@ -0,0 +1,6579 @@ + + + + Ninject + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + An object that notifies when it is disposed. + + + + + An object that can report whether or not it is disposed. + + + + + Gets a value indicating whether this instance is disposed. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases resources held by the object. + + + + + Releases resources before the object is reclaimed by garbage collection. + + + + + Gets a value indicating whether this instance is disposed. + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Provides a path to resolve instances. + + + + + A hack to hide methods defined on for IntelliSense + on fluent interfaces. Credit to Daniel Cazzulino. + + + + + Gets the type of this instance. + + The type of this instance. + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + An object that fires an event when it is disposed. + + + + + Occurs when the object is disposed. + + + + + Initializes a new instance of the class. + + The parent resolution root. + + + + Releases resources held by the object. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Gets or sets the parent resolution root (usually the kernel). + + + + + Occurs when the object is disposed. + + + + + Stores the objects that were activated + + + + + A component that contributes to the internals of Ninject. + + + + + A component that contributes to the internals of Ninject. + + + + + Gets or sets the settings. + + + + + Gets or sets the settings. + + + + + Stores the objects that were activated + + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + An object that is prunealble. + + + + + Removes instances from the cache which should no longer be re-used. + + + + + The objects that were activated as reference equal weak references. + + + + + The objects that were activated as reference equal weak references. + + + + + Initializes a new instance of the class. + + The cache pruner. + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + Prunes this instance. + + + + + Removes all dead objects. + + The objects collection to be freed of dead objects. + + + + Gets the activated object count. + + The activated object count. + + + + Gets the deactivated object count. + + The deactivated object count. + + + + Tracks instances for re-use in certain scopes. + + + + + Tracks instances for re-use in certain scopes. + + + + + Stores the specified instance in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets the number of entries currently stored in the cache. + + + + + Contains all cached instances. + This is a dictionary of scopes to a multimap for bindings to cache entries. + + + + + Initializes a new instance of the class. + + The pipeline component. + The cache pruner component. + + + + Releases resources held by the object. + + + + + + Stores the specified context in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Removes instances from the cache which should no longer be re-used. + + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets all entries for a binding withing the selected scope. + + The bindings. + All bindings of a binding. + + + + Gets all cache entries. + + Returns all cache entries. + + + + Forgets the specified cache entries. + + The cache entries. + + + + Forgets the specified entry. + + The entry. + + + + Gets the pipeline component. + + + + + Gets the number of entries currently stored in the cache. + + + + + An entry in the cache. + + + + + Initializes a new instance of the class. + + The context. + The instance reference. + + + + Gets the context of the instance. + + The context. + + + + Gets the instance reference. + + The instance reference. + + + + Uses a and some magic to poll + the garbage collector to see if it has run. + + + + + Prunes instances from an based on environmental information. + + + + + Starts pruning the specified cache based on the rules of the pruner. + + The cache that will be pruned. + + + + Stops pruning. + + + + + indicator for if GC has been run. + + + + + The caches that are being pruned. + + + + + The timer used to trigger the cache pruning + + + + + Releases resources held by the object. + + + + + Starts pruning the specified pruneable based on the rules of the pruner. + + The pruneable that will be pruned. + + + + Stops pruning. + + + + + Compares ReferenceEqualWeakReferences to objects + + + + + Returns if the specifed objects are equal. + + The first object. + The second object. + True if the objects are equal; otherwise false + + + + Returns the hash code of the specified object. + + The object for which the hash code is calculated. + The hash code of the specified object. + + + + A provider that delegates to a callback method to create instances. + + The type of instances the provider creates. + + + + A simple abstract provider for instances of a specific type. + + The type of instances the provider creates. + + + + Provides instances ot the type T + + The type provides by this implementation. + + + + Creates instances of services. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Initializes a new instance of the CallbackProvider<T> class. + + The callback method that will be called to create instances. + + + + Invokes the callback method to create an instance. + + The context. + The created instance. + + + + Gets the callback method used by the provider. + + + + + A provider that always returns the same constant value. + + The type of value that is returned. + + + + Initializes a new instance of the ConstantProvider<T> class. + + The value that the provider should return. + + + + Creates an instance within the specified context. + + The context. + The constant value this provider returns. + + + + Gets the value that the provider will return. + + + + + The standard provider for types, which activates instances via a . + + + + + Initializes a new instance of the class. + + The type (or prototype) of instances the provider creates. + The planner component. + The constructor scorer component. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the value to inject into the specified target. + + The context. + The target. + The value to inject into the specified target. + + + + Gets the implementation type that the provider will activate an instance of + for the specified service. + + The service in question. + The implementation type that will be activated. + + + + Gets a callback that creates an instance of the + for the specified type. + + The prototype the provider instance will create. + The created callback. + + + + Gets a callback that creates an instance of the + for the specified type and constructor. + + The prototype the provider instance will create. + The constructor. + The created callback. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Gets or sets the planner component. + + + + + Gets or sets the selector component. + + + + + Adds all activated instances to the activation cache. + + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The activation cache. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Gets or sets the settings. + + The ninject settings. + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Executes actions defined on the binding during activation and deactivation. + + + + + Calls the activation actions defined on the binding. + + The context. + A reference to the instance being activated. + + + + Calls the deactivation actions defined on the binding. + + The context. + A reference to the instance being deactivated. + + + + During deactivation, disposes instances that implement . + + + + + Disposes the specified instance. + + The context. + A reference to the instance being deactivated. + + + + During activation, initializes instances that implement . + + + + + Initializes the specified instance. + + The context. + A reference to the instance being activated. + + + + Injects methods on an instance during activation. + + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Injects properties on an instance during activation. + + + + + Initializes a new instance of the class. + + The injector factory component. + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Applies user supplied override values to instance properties. + + The context. + A reference to the instance being activated. + The parameter override value accessors. + + + + Gets the value to inject into the specified target. + + The context. + The target. + all property values of the current request. + The value to inject into the specified target. + + + + Gets the injector factory component. + + + + + Starts instances that implement during activation, + and stops them during deactivation. + + + + + Starts the specified instance. + + The context. + A reference to the instance being activated. + + + + Stops the specified instance. + + The context. + A reference to the instance being deactivated. + + + + Contains information about the activation of a single instance. + + + + + Contains information about the activation of a single instance. + + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Resolves this instance for this context. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Initializes a new instance of the class. + + The kernel managing the resolution. + The context's request. + The context's binding. + The cache component. + The planner component. + The pipeline component. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Resolves the instance associated with this hook. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Gets or sets the cache component. + + + + + Gets or sets the planner component. + + + + + Gets or sets the pipeline component. + + + + + Holds an instance during activation or after it has been cached. + + + + + Returns a value indicating whether the instance is of the specified type. + + The type in question. + if the instance is of the specified type, otherwise . + + + + Returns the instance as the specified type. + + The requested type. + The instance. + + + + Executes the specified action if the instance if of the specified type. + + The type in question. + The action to execute. + + + + Gets or sets the instance. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Determines whether the specified binding satisfies the constraint defined on this request. + + The binding. + True if the binding satisfies the constraint; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request should return a unique result. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The strategies to execute during activation and deactivation. + The activation cache. + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Initializes a new instance of the class. + + The service that was requested. + The constraint that will be applied to filter the bindings used for the request. + The parameters that affect the resolution. + The scope callback, if an external scope was specified. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + + + + Initializes a new instance of the class. + + The parent context. + The service that was requested. + The target that will receive the injection. + The scope callback, if an external scope was specified. + + + + Determines whether the specified binding satisfies the constraints defined on this request. + + The binding. + True if the binding satisfies the constraints; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request is for a single service. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Gets the callback that resolves the scope for the request, if an external scope was provided. + + + + + Defines a constraint on the decorated member. + + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Indicates that the decorated member should be injected. + + + + + Indicates that the decorated member should only be injected using binding(s) registered + with the specified name. + + + + + Initializes a new instance of the class. + + The name of the binding(s) to use. + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Gets the binding name. + + + + + Indicates that the decorated member represents an optional dependency. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes all registrations for the specified component. + + The component's type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Gets or sets the kernel that owns the component container. + + + + + Releases resources held by the object. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets or sets the kernel that owns the component container. + + + + + Provides meaningful exception messages. + + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that a module with the same name is already loaded. + + The new module. + The existing module. + The exception message. + + + + Generates a message saying that no module has been loaded with the specified name. + + The module name. + The exception message. + + + + Generates a message saying that the binding could not be uniquely resolved. + + The request. + The matching bindings, already formatted as strings + The exception message. + + + + Generates a message saying that the binding could not be resolved on the specified request. + + The request. + The exception message. + + + + Generates a message saying that the specified context has cyclic dependencies. + + The context. + The exception message. + + + + Generates a message saying that an invalid attribute type is used in the binding condition. + + The names of the services. + Name of the method. + The type. + The exception message. + + + + Generates a message saying that no constructors are available on the specified context. + + The context. + The exception message. + + + + Generates a message saying that no constructors are available for the given component. + + The component. + The implementation. + The exception message. + + + + Generates a message saying that the specified component is not registered. + + The component. + The exception message. + + + + Generates a message saying that the specified property could not be resolved on the specified request. + + The request. + The property name. + The exception message. + + + + Generates a message saying that the provider on the specified context returned null. + + The context. + The exception message. + + + + Generates a message saying that the constructor is ambiguous. + + The context. + The best constructor directives. + The exception message. + + + + Formats the constructor. + + The constructor. + The string writer. + + + + Formats the attribute. + + The string writer. + The attribute. + + + + Provides extension methods for string formatting + + + + + Formats the activation path into a meaningful string representation. + + The request to be formatted. + The activation path formatted as string. + + + + Formats the given binding into a meaningful string representation. + + The binding to be formatted. + The context. + The binding formatted as string + + + + Formats the specified request into a meaningful string representation. + + The request to be formatted. + The request formatted as string. + + + + Formats the specified target into a meaningful string representation.. + + The target to be formatted. + The target formatted as string. + + + + Formats the specified type into a meaningful string representation.. + + The type to be formatted. + The type formatted as string. + + + + Provides extension methods for see cref="IEnumerable{T}"/> + + + + + Executes the given action for each of the elements in the enumerable. + + + The series. + The action. + + + + Converts the given enumerable type to prevent changed on the type behind. + + The type of the enumerable. + The series. + The input type as real enumerable not castable to the original type. + + + + Extensions for MemberInfo + + + + + Determines whether the specified member has attribute. + + The type of the attribute. + The member. + + true if the specified member has attribute; otherwise, false. + + + + + Determines whether the specified member has attribute. + + The member. + The type of the attribute. + + true if the specified member has attribute; otherwise, false. + + + + + Gets the property info from its declared tpe. + + The member info. + The property definition. + The flags. + The property info from the declared type of the property. + + + + Determines whether the specified property info is private. + + The property info. + + true if the specified property info is private; otherwise, false. + + + + + Gets the custom attributes. + This version is able to get custom attributes for properties from base types even if the property is none public. + + The member. + Type of the attribute. + if set to true [inherited]. + + + + + Extension methods for type + + + + + + Gets an enumerable containing the given type and all its base types + + The type. + An enumerable containing the given type and all its base types + + + + A reader-writer lock implementation that is intended to be simple, yet very + efficient. In particular only 1 interlocked operation is taken for any lock + operation (we use spin locks to achieve this). The spin lock is never held + for more than a few instructions (in particular, we never call event APIs + or in fact any non-trivial API while holding the spin lock). + + Currently this ReaderWriterLock does not support recurision, however it is + not hard to add + + + By Vance Morrison + Taken from - http://blogs.msdn.com/vancem/archive/2006/03/28/563180.aspx + Code at - http://blogs.msdn.com/vancem/attachment/563180.ashx + + + + + The my lock. + + + + + The number read waiters. + + + + + The number upgrade waiters. + + + + + The number write waiters. + + + + + The owners. + + + + + The read event. + + + + + The upgrade event. + + + + + The write event. + + + + + The acquire reader lock. + + + The milliseconds timeout. + + + + + The acquire writer lock. + + + The milliseconds timeout. + + + + + The downgrade to reader lock. + + The lock cookie. + + + + The release reader lock. + + + + + The release writer lock. + + + + + The upgrade to writer lock. + + + The milliseconds timeout. + + + + + + + The enter my lock. + + + + + The enter my lock spin. + + + + + Determines the appropriate events to set, leaves the locks, and sets the events. + + + + + The exit my lock. + + + + + A routine for lazily creating a event outside the lock (so if errors + happen they are outside the lock and that we don't do much work + while holding a spin lock). If all goes well, reenter the lock and + set 'waitEvent' + + + The wait Event. + + + The make Auto Reset Event. + + + + + Waits on 'waitEvent' with a timeout of 'millisceondsTimeout. + Before the wait 'numWaiters' is incremented and is restored before leaving this routine. + + + The wait Event. + + + The num Waiters. + + + The milliseconds Timeout. + + + + + Gets a value indicating whether MyLockHeld. + + + + + Inheritable weak reference base class for Silverlight + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Gets a value indicating whether this instance is alive. + + true if this instance is alive; otherwise, false. + + + + Gets or sets the target of this weak reference. + + The target of this weak reference. + + + + Represents a future value. + + The type of value. + + + + Initializes a new instance of the Future<T> class. + + The callback that will be triggered to read the value. + + + + Gets the value from the future. + + The future. + The future value. + + + + Gets the value, resolving it if necessary. + + + + + Gets the callback that will be called to resolve the value. + + + + + Indicates the object has a reference to a . + + + + + Gets the binding. + + + + + Indicates that the object has a reference to an . + + + + + Gets the kernel. + + + + + A data structure that contains multiple values for a each key. + + The type of key. + The type of value. + + + + Adds the specified value for the specified key. + + The key. + The value. + + + + Removes the specified value for the specified key. + + The key. + The value. + True if such a value existed and was removed; otherwise false. + + + + Removes all values for the specified key. + + The key. + True if any such values existed; otherwise false. + + + + Removes all values. + + + + + Determines whether the multimap contains any values for the specified key. + + The key. + True if the multimap has one or more values for the specified key; otherwise, false. + + + + Determines whether the multimap contains the specified value for the specified key. + + The key. + The value. + True if the multimap contains such a value; otherwise, false. + + + + Returns an enumerator that iterates through a the multimap. + + An object that can be used to iterate through the multimap. + + + + Gets the collection of values stored under the specified key. + + The key. + + + + Gets the collection of keys. + + + + + Gets the collection of collections of values. + + + + + Weak reference that can be used in collections. It is equal to the + object it references and has the same hash code. + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Scope callbacks for standard scopes. + + + + + Gets the callback for transient scope. + + + + + Gets the callback for singleton scope. + + + + + Gets the callback for thread scope. + + + + + A delegate that can inject values into a constructor. + + + + + Creates injectors for members via s. + + + + + Creates injectors from members. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A delegate that can inject values into a method. + + + + + A delegate that can inject values into a property. + + + + + Creates injectors from members via reflective invocation. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A pluggable unit that can be loaded into an . + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Gets the module's name. + + + + + A loadable unit that defines bindings for your application. + + + + + Provides a path to register bindings. + + + + + Provides a path to register bindings. + + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax. + + + + Declares a binding from the service to itself. + + The services to bind. + The fluent syntax. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The services to re-bind. + The fluent syntax. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The services to bind. + The fluent syntax + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The services to re-bind. + The fluent syntax + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Provides a path to register bindings. + + + + + Gets the kernel. + + The kernel. + + + + Initializes a new instance of the class. + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel that the module is loaded into. + + + + + Gets the module's name. Only a single module with a given name can be loaded at one time. + + + + + Gets the bindings that were registered by the module. + + + + + Gets the kernel. + + The kernel. + + + + Overrides the injected value of a constructor argument. + + + + + Modifies an activation process in some way. + + + + + Modifies an activation process in some way. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Initializes a new instance of the class. + + The name of the parameter. + The value of the parameter. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Defines the interface for constructor arguments. + + + + + Determines if the parameter applies to the given target. + + + Only one parameter may return true. + + The context. + The target. + Tre if the parameter applies in the specified context to the specified target. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + + + + + Overrides the injected value of a property. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Overrides the injected value of a constructor argument. + + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + True if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Overrides the injected value of a constructor argument. + + + + + A weak reference to the constructor argument value. + + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + Keeps a weak reference to the value. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + + + + + Contains logic about which bindings to use for a given service request + when other attempts have failed. + + + + + Returns any bindings from the specified collection that match the specified request. + + The multimap of all registered bindings. + The request in question. + The series of matching bindings. + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains logic about which bindings to use for a given service request. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Resolves bindings for open generic types. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Resolves bindings that have been registered directly for the service. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains information about a service registration. + + + + + Contains information about a service registration. + + + + + The configuration of a binding. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + True if the request satisfies the condition; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Gets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + The binding configuration. + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + + The object that will act as the scope, or if the service is transient. + + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + + True if the request satisfies the condition; otherwise false. + + + + + Gets or sets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Gets the binding's metadata. + + + + + + Gets or sets the type of target for the binding. + + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + + Gets or sets the condition defined for the binding. + + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + + Gets the parameters defined for the binding. + + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + + Provides a root for the fluent syntax associated with an . + + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The type of the returned syntax. + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of the returned fleunt syntax + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Adds the constructor arguments for the specified constructor expression. + + The ctor expression. + The constructor argument syntax parameter expression. + + + + Adds a constructor argument for the specified argument expression. + + The argument. + Name of the argument. + The constructor argument syntax parameter expression. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Gets the names of the services. + + The names of the services. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Initializes a new instance of the class. + + The context. + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Gets the context. + + The context. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + The fourth service type to be bound. + + + + Used to define a basic binding syntax builder. + + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Used to define the target of a binding. + + The service being bound. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Gets the binding being built. + + + + + The configuration of a binding. + + + + + Initializes a new instance of the class. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the conditions defined on this binding. + + The request. + True if the request satisfies the conditions; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + The syntax to define bindings. + + The type of the service. + + + + Used to set the condition, scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to define the conditions under which a binding should be used. + + The service being bound. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified types. + Types that derive from one of the specified types are considered as valid targets. + Should match at lease one of the targets. + + The types to match. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match one of the specified types exactly. Types that derive from one of the specified types + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Used to define the scope in which instances activated via a binding should be re-used. + + The service being bound. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Used to define the name of a binding. + + The service being bound. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Used to add additional information to a binding. + + The service being bound. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Used to add additional actions to be performed during activation or deactivation of instances via a binding. + + The service being bound. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Used to set the scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to set the name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to add additional information or actions to a binding. + + The service being bound. + + + + The names of the services added to the exceptions. + + + + + Initializes a new instance of the BindingBuilder<T> class. + + The binding configuration to build. + The names of the configured services. + The kernel. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Describes the target of a binding. + + + + + Indicates that the binding is from a type to itself. + + + + + Indicates that the binding is from one type to another. + + + + + Indicates that the binding is from a type to a provider. + + + + + Indicates that the binding is from a type to a callback method. + + + + + Indicates that the binding is from a type to a constant value. + + + + + Describes the injection of a constructor. + + + + + Describes the injection of a method or constructor. + + + + + A piece of information used in an . (Just a marker.) + + + + + Initializes a new instance of the MethodInjectionDirectiveBase<TMethod, TInjector> class. + + The method this directive represents. + The injector that will be triggered. + + + + Creates targets for the parameters of the method. + + The method. + The targets for the method's parameters. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the targets for the directive. + + + + + Initializes a new instance of the class. + + The constructor described by the directive. + The injector that will be triggered. + + + + The base .ctor definition. + + + + + Describes the injection of a method. + + + + + Initializes a new instance of the class. + + The method described by the directive. + The injector that will be triggered. + + + + Describes the injection of a property. + + + + + Initializes a new instance of the class. + + The member the directive describes. + The injector that will be triggered. + + + + Creates a target for the property. + + The property. + The target for the property. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the injection target for the directive. + + + + + Adds a directive to plans indicating which constructor should be injected during activation. + + + + + Contributes to the generation of a . + + + + + Contributes to the specified plan. + + The plan that is being generated. + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for the constructor + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which methods should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each method + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which properties should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each property + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Represents a site on a type where a value will be injected. + + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the type of the target. + + + + + Gets the name of the target. + + + + + Gets the member that contains the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Represents a site on a type where a value can be injected. + + The type of site this represents. + + + + Initializes a new instance of the Target<T> class. + + The member that contains the target. + The site represented by the target. + + + + Returns an array of custom attributes of a specified type defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes of the specified type. + + + + Returns an array of custom attributes defined on the target. + + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes. + + + + Returns a value indicating whether an attribute of the specified type is defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + True if such an attribute is defined; otherwise false. + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the value(s) that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + A series of values that are available for injection. + + + + Gets the value that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + The value that is to be injected. + + + + Reads whether the target represents an optional dependency. + + if it is optional; otherwise . + + + + Reads the resolution constraint from target. + + The resolution constraint. + + + + Gets the member that contains the target. + + + + + Gets or sets the site (property, parameter, etc.) represented by the target. + + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Initializes a new instance of the class. + + The method that defines the parameter. + The parameter that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Initializes a new instance of the class. + + The property that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Describes the means by which a type should be activated. + + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Generates plans for how to activate instances. + + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Describes the means by which a type should be activated. + + + + + Initializes a new instance of the class. + + The type the plan describes. + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Gets the directives defined in the plan. + + + + + Generates plans for how to activate instances. + + + + + Initializes a new instance of the class. + + The strategies to execute during planning. + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Creates an empty plan for the specified type. + + The type for which a plan should be created. + The created plan. + + + + Creates a new plan for the specified type. + This method requires an active reader lock! + + The type. + The newly created plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Generates scores for constructors, to determine which is the best one to call during activation. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Determines whether members should be injected during activation. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Constructor selector that selects the constructor matching the one passed to the constructor. + + + + + Initializes a new instance of the class. + + The constructor info of the constructor that shall be selected. + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Scores constructors by either looking for the existence of an injection marker + attribute, or by counting the number of parameters. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Checkes whether a binding exists for a given target. + + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checkes whether a binding exists for a given target on the specified kernel. + + The kernel. + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checks whether any parameters exist for the geiven target.. + + The context. + The target. + Whether a parameter exists for the target in the given context. + + + + Determines whether members should be injected during activation by checking + if they are decorated with an injection marker attribute. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Selects members for injection. + + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets or sets the constructor scorer. + + + + + Gets the heuristics used to determine which members should be injected. + + + + + Selects members for injection. + + + + + Initializes a new instance of the class. + + The constructor scorer. + The injection heuristics. + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets the default binding flags. + + + + + Gets or sets the constructor scorer. + + + + + Gets the property injection heuristics. + + + + + Extension methods that enhance module loading. + + + + + Creates a new instance of the module and loads it into the kernel. + + The type of the module. + The kernel. + + + + Loads the module(s) into the kernel. + + The kernel. + The modules to load. + + + + Extensions that enhance resolution of services. + + + + + Gets an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Evaluates if an instance of the specified service can be resolved. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding with the specified name can be resolved. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding that matches the specified constraint can be resolved. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Indicates that an error occured during activation of an instance. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The exception message. + + + + Initializes a new instance of the class. + + The exception message. + The inner exception. + + + + Allows to register kernel globally to perform some tasks on all kernels. + The registration is done by loading the GlobalKernelRegistrationModule to the kernel. + + + + + Performs an action on all registered kernels. + + The action. + + + + A service that requires initialization after it is activated. + + + + + Initializes the instance. Called during activation. + + + + + A super-factory that can create objects of all kinds, following hints provided by s. + + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets the attribute that indicates that a member should be injected. + + + + + Gets the interval at which the cache should be pruned. + + + + + Gets the default scope callback. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By defuault this is disabled and whenever a provider returns null an exception is thrown. + + true if null is allowed as injected value otherwise false. + + + + A service that is started when activated, and stopped when deactivated. + + + + + Starts this instance. Called during activation. + + + + + Stops this instance. Called during deactivation. + + + + + The base implementation of an . + + + + + Lock used when adding missing bindings. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The component container to use. + The configuration to use. + The modules to load into the kernel. + + + + Releases resources held by the object. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Returns an IComparer that is used to determine resolution precedence. + + An IComparer that is used to determine resolution precedence. + + + + Returns a predicate that can determine if a given IBinding matches the request. + + The request/ + A predicate that can determine if a given IBinding matches the request. + + + + Adds components to the kernel during startup. + + + + + Attempts to handle a missing binding for a service. + + The service. + True if the missing binding can be handled; otherwise false. + + + + Attempts to handle a missing binding for a request. + + The request. + True if the missing binding can be handled; otherwise false. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Creates a context for the specified request and binding. + + The request. + The binding. + The created context. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets or sets the attribute that indicates that a member should be injected. + + + + + Gets or sets the interval at which the GC should be polled. + + + + + Gets or sets the default scope callback. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By default this is disabled and whenever a provider returns null an exception is thrown. + + + true if null is allowed as injected value otherwise false. + + + + + The standard implementation of a kernel. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Adds components to the kernel during startup. + + + + + Gets the kernel. + + The kernel. + + + diff --git a/packages/Ninject.3.2.2.0/lib/sl3-wp/Ninject.xml b/packages/Ninject.3.2.2.0/lib/sl3-wp/Ninject.xml new file mode 100644 index 0000000..e245d80 --- /dev/null +++ b/packages/Ninject.3.2.2.0/lib/sl3-wp/Ninject.xml @@ -0,0 +1,6530 @@ + + + + Ninject + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + An object that notifies when it is disposed. + + + + + An object that can report whether or not it is disposed. + + + + + Gets a value indicating whether this instance is disposed. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases resources held by the object. + + + + + Releases resources before the object is reclaimed by garbage collection. + + + + + Gets a value indicating whether this instance is disposed. + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Provides a path to resolve instances. + + + + + A hack to hide methods defined on for IntelliSense + on fluent interfaces. Credit to Daniel Cazzulino. + + + + + Gets the type of this instance. + + The type of this instance. + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + An object that fires an event when it is disposed. + + + + + Occurs when the object is disposed. + + + + + Initializes a new instance of the class. + + The parent resolution root. + + + + Releases resources held by the object. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Gets or sets the parent resolution root (usually the kernel). + + + + + Occurs when the object is disposed. + + + + + Stores the objects that were activated + + + + + A component that contributes to the internals of Ninject. + + + + + A component that contributes to the internals of Ninject. + + + + + Gets or sets the settings. + + + + + Gets or sets the settings. + + + + + Stores the objects that were activated + + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + An object that is prunealble. + + + + + Removes instances from the cache which should no longer be re-used. + + + + + The objects that were activated as reference equal weak references. + + + + + The objects that were activated as reference equal weak references. + + + + + Initializes a new instance of the class. + + The cache pruner. + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + Prunes this instance. + + + + + Removes all dead objects. + + The objects collection to be freed of dead objects. + + + + Gets the activated object count. + + The activated object count. + + + + Gets the deactivated object count. + + The deactivated object count. + + + + Tracks instances for re-use in certain scopes. + + + + + Tracks instances for re-use in certain scopes. + + + + + Stores the specified instance in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets the number of entries currently stored in the cache. + + + + + Contains all cached instances. + This is a dictionary of scopes to a multimap for bindings to cache entries. + + + + + Initializes a new instance of the class. + + The pipeline component. + The cache pruner component. + + + + Releases resources held by the object. + + + + + + Stores the specified context in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Removes instances from the cache which should no longer be re-used. + + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets all entries for a binding withing the selected scope. + + The bindings. + All bindings of a binding. + + + + Gets all cache entries. + + Returns all cache entries. + + + + Forgets the specified cache entries. + + The cache entries. + + + + Forgets the specified entry. + + The entry. + + + + Gets the pipeline component. + + + + + Gets the number of entries currently stored in the cache. + + + + + An entry in the cache. + + + + + Initializes a new instance of the class. + + The context. + The instance reference. + + + + Gets the context of the instance. + + The context. + + + + Gets the instance reference. + + The instance reference. + + + + Uses a and some magic to poll + the garbage collector to see if it has run. + + + + + Prunes instances from an based on environmental information. + + + + + Starts pruning the specified cache based on the rules of the pruner. + + The cache that will be pruned. + + + + Stops pruning. + + + + + indicator for if GC has been run. + + + + + The caches that are being pruned. + + + + + The timer used to trigger the cache pruning + + + + + Releases resources held by the object. + + + + + Starts pruning the specified pruneable based on the rules of the pruner. + + The pruneable that will be pruned. + + + + Stops pruning. + + + + + Compares ReferenceEqualWeakReferences to objects + + + + + Returns if the specifed objects are equal. + + The first object. + The second object. + True if the objects are equal; otherwise false + + + + Returns the hash code of the specified object. + + The object for which the hash code is calculated. + The hash code of the specified object. + + + + A provider that delegates to a callback method to create instances. + + The type of instances the provider creates. + + + + A simple abstract provider for instances of a specific type. + + The type of instances the provider creates. + + + + Provides instances ot the type T + + The type provides by this implementation. + + + + Creates instances of services. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Initializes a new instance of the CallbackProvider<T> class. + + The callback method that will be called to create instances. + + + + Invokes the callback method to create an instance. + + The context. + The created instance. + + + + Gets the callback method used by the provider. + + + + + A provider that always returns the same constant value. + + The type of value that is returned. + + + + Initializes a new instance of the ConstantProvider<T> class. + + The value that the provider should return. + + + + Creates an instance within the specified context. + + The context. + The constant value this provider returns. + + + + Gets the value that the provider will return. + + + + + The standard provider for types, which activates instances via a . + + + + + Initializes a new instance of the class. + + The type (or prototype) of instances the provider creates. + The planner component. + The constructor scorer component. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the value to inject into the specified target. + + The context. + The target. + The value to inject into the specified target. + + + + Gets the implementation type that the provider will activate an instance of + for the specified service. + + The service in question. + The implementation type that will be activated. + + + + Gets a callback that creates an instance of the + for the specified type. + + The prototype the provider instance will create. + The created callback. + + + + Gets a callback that creates an instance of the + for the specified type and constructor. + + The prototype the provider instance will create. + The constructor. + The created callback. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Gets or sets the planner component. + + + + + Gets or sets the selector component. + + + + + Adds all activated instances to the activation cache. + + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The activation cache. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Gets or sets the settings. + + The ninject settings. + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Executes actions defined on the binding during activation and deactivation. + + + + + Calls the activation actions defined on the binding. + + The context. + A reference to the instance being activated. + + + + Calls the deactivation actions defined on the binding. + + The context. + A reference to the instance being deactivated. + + + + During deactivation, disposes instances that implement . + + + + + Disposes the specified instance. + + The context. + A reference to the instance being deactivated. + + + + During activation, initializes instances that implement . + + + + + Initializes the specified instance. + + The context. + A reference to the instance being activated. + + + + Injects methods on an instance during activation. + + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Injects properties on an instance during activation. + + + + + Initializes a new instance of the class. + + The injector factory component. + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Applies user supplied override values to instance properties. + + The context. + A reference to the instance being activated. + The parameter override value accessors. + + + + Gets the value to inject into the specified target. + + The context. + The target. + all property values of the current request. + The value to inject into the specified target. + + + + Gets the injector factory component. + + + + + Starts instances that implement during activation, + and stops them during deactivation. + + + + + Starts the specified instance. + + The context. + A reference to the instance being activated. + + + + Stops the specified instance. + + The context. + A reference to the instance being deactivated. + + + + Contains information about the activation of a single instance. + + + + + Contains information about the activation of a single instance. + + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Resolves this instance for this context. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Initializes a new instance of the class. + + The kernel managing the resolution. + The context's request. + The context's binding. + The cache component. + The planner component. + The pipeline component. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Resolves the instance associated with this hook. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Gets or sets the cache component. + + + + + Gets or sets the planner component. + + + + + Gets or sets the pipeline component. + + + + + Holds an instance during activation or after it has been cached. + + + + + Returns a value indicating whether the instance is of the specified type. + + The type in question. + if the instance is of the specified type, otherwise . + + + + Returns the instance as the specified type. + + The requested type. + The instance. + + + + Executes the specified action if the instance if of the specified type. + + The type in question. + The action to execute. + + + + Gets or sets the instance. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Determines whether the specified binding satisfies the constraint defined on this request. + + The binding. + True if the binding satisfies the constraint; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request should return a unique result. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The strategies to execute during activation and deactivation. + The activation cache. + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Initializes a new instance of the class. + + The service that was requested. + The constraint that will be applied to filter the bindings used for the request. + The parameters that affect the resolution. + The scope callback, if an external scope was specified. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + + + + Initializes a new instance of the class. + + The parent context. + The service that was requested. + The target that will receive the injection. + The scope callback, if an external scope was specified. + + + + Determines whether the specified binding satisfies the constraints defined on this request. + + The binding. + True if the binding satisfies the constraints; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request is for a single service. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Gets the callback that resolves the scope for the request, if an external scope was provided. + + + + + Defines a constraint on the decorated member. + + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Indicates that the decorated member should be injected. + + + + + Indicates that the decorated member should only be injected using binding(s) registered + with the specified name. + + + + + Initializes a new instance of the class. + + The name of the binding(s) to use. + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Gets the binding name. + + + + + Indicates that the decorated member represents an optional dependency. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes all registrations for the specified component. + + The component's type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Gets or sets the kernel that owns the component container. + + + + + Releases resources held by the object. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets or sets the kernel that owns the component container. + + + + + Provides meaningful exception messages. + + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that a module with the same name is already loaded. + + The new module. + The existing module. + The exception message. + + + + Generates a message saying that no module has been loaded with the specified name. + + The module name. + The exception message. + + + + Generates a message saying that the binding could not be uniquely resolved. + + The request. + The matching bindings, already formatted as strings + The exception message. + + + + Generates a message saying that the binding could not be resolved on the specified request. + + The request. + The exception message. + + + + Generates a message saying that the specified context has cyclic dependencies. + + The context. + The exception message. + + + + Generates a message saying that an invalid attribute type is used in the binding condition. + + The names of the services. + Name of the method. + The type. + The exception message. + + + + Generates a message saying that no constructors are available on the specified context. + + The context. + The exception message. + + + + Generates a message saying that no constructors are available for the given component. + + The component. + The implementation. + The exception message. + + + + Generates a message saying that the specified component is not registered. + + The component. + The exception message. + + + + Generates a message saying that the specified property could not be resolved on the specified request. + + The request. + The property name. + The exception message. + + + + Generates a message saying that the provider on the specified context returned null. + + The context. + The exception message. + + + + Generates a message saying that the constructor is ambiguous. + + The context. + The best constructor directives. + The exception message. + + + + Formats the constructor. + + The constructor. + The string writer. + + + + Formats the attribute. + + The string writer. + The attribute. + + + + Provides extension methods for string formatting + + + + + Formats the activation path into a meaningful string representation. + + The request to be formatted. + The activation path formatted as string. + + + + Formats the given binding into a meaningful string representation. + + The binding to be formatted. + The context. + The binding formatted as string + + + + Formats the specified request into a meaningful string representation. + + The request to be formatted. + The request formatted as string. + + + + Formats the specified target into a meaningful string representation.. + + The target to be formatted. + The target formatted as string. + + + + Formats the specified type into a meaningful string representation.. + + The type to be formatted. + The type formatted as string. + + + + Provides extension methods for see cref="IEnumerable{T}"/> + + + + + Executes the given action for each of the elements in the enumerable. + + + The series. + The action. + + + + Converts the given enumerable type to prevent changed on the type behind. + + The type of the enumerable. + The series. + The input type as real enumerable not castable to the original type. + + + + Extensions for MemberInfo + + + + + Determines whether the specified member has attribute. + + The type of the attribute. + The member. + + true if the specified member has attribute; otherwise, false. + + + + + Determines whether the specified member has attribute. + + The member. + The type of the attribute. + + true if the specified member has attribute; otherwise, false. + + + + + Gets the property info from its declared tpe. + + The member info. + The property definition. + The flags. + The property info from the declared type of the property. + + + + Determines whether the specified property info is private. + + The property info. + + true if the specified property info is private; otherwise, false. + + + + + Gets the custom attributes. + This version is able to get custom attributes for properties from base types even if the property is none public. + + The member. + Type of the attribute. + if set to true [inherited]. + + + + + Extension methods for type + + + + + + Gets an enumerable containing the given type and all its base types + + The type. + An enumerable containing the given type and all its base types + + + + A reader-writer lock implementation that is intended to be simple, yet very + efficient. In particular only 1 interlocked operation is taken for any lock + operation (we use spin locks to achieve this). The spin lock is never held + for more than a few instructions (in particular, we never call event APIs + or in fact any non-trivial API while holding the spin lock). + + Currently this ReaderWriterLock does not support recurision, however it is + not hard to add + + + By Vance Morrison + Taken from - http://blogs.msdn.com/vancem/archive/2006/03/28/563180.aspx + Code at - http://blogs.msdn.com/vancem/attachment/563180.ashx + + + + + The my lock. + + + + + The number read waiters. + + + + + The number upgrade waiters. + + + + + The number write waiters. + + + + + The owners. + + + + + The read event. + + + + + The upgrade event. + + + + + The write event. + + + + + The acquire reader lock. + + + The milliseconds timeout. + + + + + The acquire writer lock. + + + The milliseconds timeout. + + + + + The downgrade to reader lock. + + The lock cookie. + + + + The release reader lock. + + + + + The release writer lock. + + + + + The upgrade to writer lock. + + + The milliseconds timeout. + + + + + + + The enter my lock. + + + + + The enter my lock spin. + + + + + Determines the appropriate events to set, leaves the locks, and sets the events. + + + + + The exit my lock. + + + + + A routine for lazily creating a event outside the lock (so if errors + happen they are outside the lock and that we don't do much work + while holding a spin lock). If all goes well, reenter the lock and + set 'waitEvent' + + + The wait Event. + + + The make Auto Reset Event. + + + + + Waits on 'waitEvent' with a timeout of 'millisceondsTimeout. + Before the wait 'numWaiters' is incremented and is restored before leaving this routine. + + + The wait Event. + + + The num Waiters. + + + The milliseconds Timeout. + + + + + Gets a value indicating whether MyLockHeld. + + + + + Inheritable weak reference base class for Silverlight + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Gets a value indicating whether this instance is alive. + + true if this instance is alive; otherwise, false. + + + + Gets or sets the target of this weak reference. + + The target of this weak reference. + + + + Represents a future value. + + The type of value. + + + + Initializes a new instance of the Future<T> class. + + The callback that will be triggered to read the value. + + + + Gets the value from the future. + + The future. + The future value. + + + + Gets the value, resolving it if necessary. + + + + + Gets the callback that will be called to resolve the value. + + + + + Indicates the object has a reference to a . + + + + + Gets the binding. + + + + + Indicates that the object has a reference to an . + + + + + Gets the kernel. + + + + + A data structure that contains multiple values for a each key. + + The type of key. + The type of value. + + + + Adds the specified value for the specified key. + + The key. + The value. + + + + Removes the specified value for the specified key. + + The key. + The value. + True if such a value existed and was removed; otherwise false. + + + + Removes all values for the specified key. + + The key. + True if any such values existed; otherwise false. + + + + Removes all values. + + + + + Determines whether the multimap contains any values for the specified key. + + The key. + True if the multimap has one or more values for the specified key; otherwise, false. + + + + Determines whether the multimap contains the specified value for the specified key. + + The key. + The value. + True if the multimap contains such a value; otherwise, false. + + + + Returns an enumerator that iterates through a the multimap. + + An object that can be used to iterate through the multimap. + + + + Gets the collection of values stored under the specified key. + + The key. + + + + Gets the collection of keys. + + + + + Gets the collection of collections of values. + + + + + Weak reference that can be used in collections. It is equal to the + object it references and has the same hash code. + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Scope callbacks for standard scopes. + + + + + Gets the callback for transient scope. + + + + + Gets the callback for singleton scope. + + + + + Gets the callback for thread scope. + + + + + A delegate that can inject values into a constructor. + + + + + Creates injectors from members. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A delegate that can inject values into a method. + + + + + A delegate that can inject values into a property. + + + + + Creates injectors from members via reflective invocation. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A pluggable unit that can be loaded into an . + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Gets the module's name. + + + + + A loadable unit that defines bindings for your application. + + + + + Provides a path to register bindings. + + + + + Provides a path to register bindings. + + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax. + + + + Declares a binding from the service to itself. + + The services to bind. + The fluent syntax. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The services to re-bind. + The fluent syntax. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The services to bind. + The fluent syntax + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The services to re-bind. + The fluent syntax + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Provides a path to register bindings. + + + + + Gets the kernel. + + The kernel. + + + + Initializes a new instance of the class. + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel that the module is loaded into. + + + + + Gets the module's name. Only a single module with a given name can be loaded at one time. + + + + + Gets the bindings that were registered by the module. + + + + + Gets the kernel. + + The kernel. + + + + Overrides the injected value of a constructor argument. + + + + + Modifies an activation process in some way. + + + + + Modifies an activation process in some way. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Initializes a new instance of the class. + + The name of the parameter. + The value of the parameter. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Defines the interface for constructor arguments. + + + + + Determines if the parameter applies to the given target. + + + Only one parameter may return true. + + The context. + The target. + Tre if the parameter applies in the specified context to the specified target. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + + + + + Overrides the injected value of a property. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Overrides the injected value of a constructor argument. + + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + True if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Overrides the injected value of a constructor argument. + + + + + A weak reference to the constructor argument value. + + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + Keeps a weak reference to the value. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + + + + + Contains logic about which bindings to use for a given service request + when other attempts have failed. + + + + + Returns any bindings from the specified collection that match the specified request. + + The multimap of all registered bindings. + The request in question. + The series of matching bindings. + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains logic about which bindings to use for a given service request. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Resolves bindings for open generic types. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Resolves bindings that have been registered directly for the service. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains information about a service registration. + + + + + Contains information about a service registration. + + + + + The configuration of a binding. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + True if the request satisfies the condition; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Gets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + The binding configuration. + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + + The object that will act as the scope, or if the service is transient. + + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + + True if the request satisfies the condition; otherwise false. + + + + + Gets or sets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Gets the binding's metadata. + + + + + + Gets or sets the type of target for the binding. + + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + + Gets or sets the condition defined for the binding. + + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + + Gets the parameters defined for the binding. + + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + + Provides a root for the fluent syntax associated with an . + + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The type of the returned syntax. + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of the returned fleunt syntax + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Adds the constructor arguments for the specified constructor expression. + + The ctor expression. + The constructor argument syntax parameter expression. + + + + Adds a constructor argument for the specified argument expression. + + The argument. + Name of the argument. + The constructor argument syntax parameter expression. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Gets the names of the services. + + The names of the services. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Initializes a new instance of the class. + + The context. + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Gets the context. + + The context. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + The fourth service type to be bound. + + + + Used to define a basic binding syntax builder. + + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Used to define the target of a binding. + + The service being bound. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Gets the binding being built. + + + + + The configuration of a binding. + + + + + Initializes a new instance of the class. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the conditions defined on this binding. + + The request. + True if the request satisfies the conditions; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + The syntax to define bindings. + + The type of the service. + + + + Used to set the condition, scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to define the conditions under which a binding should be used. + + The service being bound. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified types. + Types that derive from one of the specified types are considered as valid targets. + Should match at lease one of the targets. + + The types to match. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match one of the specified types exactly. Types that derive from one of the specified types + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Used to define the scope in which instances activated via a binding should be re-used. + + The service being bound. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Used to define the name of a binding. + + The service being bound. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Used to add additional information to a binding. + + The service being bound. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Used to add additional actions to be performed during activation or deactivation of instances via a binding. + + The service being bound. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Used to set the scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to set the name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to add additional information or actions to a binding. + + The service being bound. + + + + The names of the services added to the exceptions. + + + + + Initializes a new instance of the BindingBuilder<T> class. + + The binding configuration to build. + The names of the configured services. + The kernel. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Describes the target of a binding. + + + + + Indicates that the binding is from a type to itself. + + + + + Indicates that the binding is from one type to another. + + + + + Indicates that the binding is from a type to a provider. + + + + + Indicates that the binding is from a type to a callback method. + + + + + Indicates that the binding is from a type to a constant value. + + + + + Describes the injection of a constructor. + + + + + Describes the injection of a method or constructor. + + + + + A piece of information used in an . (Just a marker.) + + + + + Initializes a new instance of the MethodInjectionDirectiveBase<TMethod, TInjector> class. + + The method this directive represents. + The injector that will be triggered. + + + + Creates targets for the parameters of the method. + + The method. + The targets for the method's parameters. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the targets for the directive. + + + + + Initializes a new instance of the class. + + The constructor described by the directive. + The injector that will be triggered. + + + + The base .ctor definition. + + + + + Describes the injection of a method. + + + + + Initializes a new instance of the class. + + The method described by the directive. + The injector that will be triggered. + + + + Describes the injection of a property. + + + + + Initializes a new instance of the class. + + The member the directive describes. + The injector that will be triggered. + + + + Creates a target for the property. + + The property. + The target for the property. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the injection target for the directive. + + + + + Adds a directive to plans indicating which constructor should be injected during activation. + + + + + Contributes to the generation of a . + + + + + Contributes to the specified plan. + + The plan that is being generated. + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for the constructor + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which methods should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each method + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which properties should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each property + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Represents a site on a type where a value will be injected. + + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the type of the target. + + + + + Gets the name of the target. + + + + + Gets the member that contains the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Represents a site on a type where a value can be injected. + + The type of site this represents. + + + + Initializes a new instance of the Target<T> class. + + The member that contains the target. + The site represented by the target. + + + + Returns an array of custom attributes of a specified type defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes of the specified type. + + + + Returns an array of custom attributes defined on the target. + + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes. + + + + Returns a value indicating whether an attribute of the specified type is defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + True if such an attribute is defined; otherwise false. + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the value(s) that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + A series of values that are available for injection. + + + + Gets the value that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + The value that is to be injected. + + + + Reads whether the target represents an optional dependency. + + if it is optional; otherwise . + + + + Reads the resolution constraint from target. + + The resolution constraint. + + + + Gets the member that contains the target. + + + + + Gets or sets the site (property, parameter, etc.) represented by the target. + + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Initializes a new instance of the class. + + The method that defines the parameter. + The parameter that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Represents an injection target for a . + + + + + Initializes a new instance of the class. + + The property that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Describes the means by which a type should be activated. + + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Generates plans for how to activate instances. + + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Describes the means by which a type should be activated. + + + + + Initializes a new instance of the class. + + The type the plan describes. + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Gets the directives defined in the plan. + + + + + Generates plans for how to activate instances. + + + + + Initializes a new instance of the class. + + The strategies to execute during planning. + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Creates an empty plan for the specified type. + + The type for which a plan should be created. + The created plan. + + + + Creates a new plan for the specified type. + This method requires an active reader lock! + + The type. + The newly created plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Generates scores for constructors, to determine which is the best one to call during activation. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Determines whether members should be injected during activation. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Constructor selector that selects the constructor matching the one passed to the constructor. + + + + + Initializes a new instance of the class. + + The constructor info of the constructor that shall be selected. + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Scores constructors by either looking for the existence of an injection marker + attribute, or by counting the number of parameters. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Checkes whether a binding exists for a given target. + + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checkes whether a binding exists for a given target on the specified kernel. + + The kernel. + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checks whether any parameters exist for the geiven target.. + + The context. + The target. + Whether a parameter exists for the target in the given context. + + + + Determines whether members should be injected during activation by checking + if they are decorated with an injection marker attribute. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Selects members for injection. + + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets or sets the constructor scorer. + + + + + Gets the heuristics used to determine which members should be injected. + + + + + Selects members for injection. + + + + + Initializes a new instance of the class. + + The constructor scorer. + The injection heuristics. + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets the default binding flags. + + + + + Gets or sets the constructor scorer. + + + + + Gets the property injection heuristics. + + + + + Extension methods that enhance module loading. + + + + + Creates a new instance of the module and loads it into the kernel. + + The type of the module. + The kernel. + + + + Loads the module(s) into the kernel. + + The kernel. + The modules to load. + + + + Extensions that enhance resolution of services. + + + + + Gets an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Evaluates if an instance of the specified service can be resolved. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding with the specified name can be resolved. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding that matches the specified constraint can be resolved. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Indicates that an error occured during activation of an instance. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The exception message. + + + + Initializes a new instance of the class. + + The exception message. + The inner exception. + + + + Allows to register kernel globally to perform some tasks on all kernels. + The registration is done by loading the GlobalKernelRegistrationModule to the kernel. + + + + + Performs an action on all registered kernels. + + The action. + + + + A service that requires initialization after it is activated. + + + + + Initializes the instance. Called during activation. + + + + + A super-factory that can create objects of all kinds, following hints provided by s. + + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets the attribute that indicates that a member should be injected. + + + + + Gets the interval at which the cache should be pruned. + + + + + Gets the default scope callback. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By defuault this is disabled and whenever a provider returns null an exception is thrown. + + true if null is allowed as injected value otherwise false. + + + + A service that is started when activated, and stopped when deactivated. + + + + + Starts this instance. Called during activation. + + + + + Stops this instance. Called during deactivation. + + + + + The base implementation of an . + + + + + Lock used when adding missing bindings. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The component container to use. + The configuration to use. + The modules to load into the kernel. + + + + Releases resources held by the object. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Returns an IComparer that is used to determine resolution precedence. + + An IComparer that is used to determine resolution precedence. + + + + Returns a predicate that can determine if a given IBinding matches the request. + + The request/ + A predicate that can determine if a given IBinding matches the request. + + + + Adds components to the kernel during startup. + + + + + Attempts to handle a missing binding for a service. + + The service. + True if the missing binding can be handled; otherwise false. + + + + Attempts to handle a missing binding for a request. + + The request. + True if the missing binding can be handled; otherwise false. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Creates a context for the specified request and binding. + + The request. + The binding. + The created context. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets or sets the attribute that indicates that a member should be injected. + + + + + Gets or sets the interval at which the GC should be polled. + + + + + Gets or sets the default scope callback. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By default this is disabled and whenever a provider returns null an exception is thrown. + + + true if null is allowed as injected value otherwise false. + + + + + The standard implementation of a kernel. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Adds components to the kernel during startup. + + + + + Gets the kernel. + + The kernel. + + + diff --git a/packages/Ninject.3.2.2.0/lib/sl3/Ninject.xml b/packages/Ninject.3.2.2.0/lib/sl3/Ninject.xml new file mode 100644 index 0000000..1539119 --- /dev/null +++ b/packages/Ninject.3.2.2.0/lib/sl3/Ninject.xml @@ -0,0 +1,6579 @@ + + + + Ninject + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + An object that notifies when it is disposed. + + + + + An object that can report whether or not it is disposed. + + + + + Gets a value indicating whether this instance is disposed. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases resources held by the object. + + + + + Releases resources before the object is reclaimed by garbage collection. + + + + + Gets a value indicating whether this instance is disposed. + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Provides a path to resolve instances. + + + + + A hack to hide methods defined on for IntelliSense + on fluent interfaces. Credit to Daniel Cazzulino. + + + + + Gets the type of this instance. + + The type of this instance. + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + An object that fires an event when it is disposed. + + + + + Occurs when the object is disposed. + + + + + Initializes a new instance of the class. + + The parent resolution root. + + + + Releases resources held by the object. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Gets or sets the parent resolution root (usually the kernel). + + + + + Occurs when the object is disposed. + + + + + Stores the objects that were activated + + + + + A component that contributes to the internals of Ninject. + + + + + A component that contributes to the internals of Ninject. + + + + + Gets or sets the settings. + + + + + Gets or sets the settings. + + + + + Stores the objects that were activated + + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + An object that is prunealble. + + + + + Removes instances from the cache which should no longer be re-used. + + + + + The objects that were activated as reference equal weak references. + + + + + The objects that were activated as reference equal weak references. + + + + + Initializes a new instance of the class. + + The cache pruner. + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + Prunes this instance. + + + + + Removes all dead objects. + + The objects collection to be freed of dead objects. + + + + Gets the activated object count. + + The activated object count. + + + + Gets the deactivated object count. + + The deactivated object count. + + + + Tracks instances for re-use in certain scopes. + + + + + Tracks instances for re-use in certain scopes. + + + + + Stores the specified instance in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets the number of entries currently stored in the cache. + + + + + Contains all cached instances. + This is a dictionary of scopes to a multimap for bindings to cache entries. + + + + + Initializes a new instance of the class. + + The pipeline component. + The cache pruner component. + + + + Releases resources held by the object. + + + + + + Stores the specified context in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Removes instances from the cache which should no longer be re-used. + + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets all entries for a binding withing the selected scope. + + The bindings. + All bindings of a binding. + + + + Gets all cache entries. + + Returns all cache entries. + + + + Forgets the specified cache entries. + + The cache entries. + + + + Forgets the specified entry. + + The entry. + + + + Gets the pipeline component. + + + + + Gets the number of entries currently stored in the cache. + + + + + An entry in the cache. + + + + + Initializes a new instance of the class. + + The context. + The instance reference. + + + + Gets the context of the instance. + + The context. + + + + Gets the instance reference. + + The instance reference. + + + + Uses a and some magic to poll + the garbage collector to see if it has run. + + + + + Prunes instances from an based on environmental information. + + + + + Starts pruning the specified cache based on the rules of the pruner. + + The cache that will be pruned. + + + + Stops pruning. + + + + + indicator for if GC has been run. + + + + + The caches that are being pruned. + + + + + The timer used to trigger the cache pruning + + + + + Releases resources held by the object. + + + + + Starts pruning the specified pruneable based on the rules of the pruner. + + The pruneable that will be pruned. + + + + Stops pruning. + + + + + Compares ReferenceEqualWeakReferences to objects + + + + + Returns if the specifed objects are equal. + + The first object. + The second object. + True if the objects are equal; otherwise false + + + + Returns the hash code of the specified object. + + The object for which the hash code is calculated. + The hash code of the specified object. + + + + A provider that delegates to a callback method to create instances. + + The type of instances the provider creates. + + + + A simple abstract provider for instances of a specific type. + + The type of instances the provider creates. + + + + Provides instances ot the type T + + The type provides by this implementation. + + + + Creates instances of services. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Initializes a new instance of the CallbackProvider<T> class. + + The callback method that will be called to create instances. + + + + Invokes the callback method to create an instance. + + The context. + The created instance. + + + + Gets the callback method used by the provider. + + + + + A provider that always returns the same constant value. + + The type of value that is returned. + + + + Initializes a new instance of the ConstantProvider<T> class. + + The value that the provider should return. + + + + Creates an instance within the specified context. + + The context. + The constant value this provider returns. + + + + Gets the value that the provider will return. + + + + + The standard provider for types, which activates instances via a . + + + + + Initializes a new instance of the class. + + The type (or prototype) of instances the provider creates. + The planner component. + The constructor scorer component. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the value to inject into the specified target. + + The context. + The target. + The value to inject into the specified target. + + + + Gets the implementation type that the provider will activate an instance of + for the specified service. + + The service in question. + The implementation type that will be activated. + + + + Gets a callback that creates an instance of the + for the specified type. + + The prototype the provider instance will create. + The created callback. + + + + Gets a callback that creates an instance of the + for the specified type and constructor. + + The prototype the provider instance will create. + The constructor. + The created callback. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Gets or sets the planner component. + + + + + Gets or sets the selector component. + + + + + Adds all activated instances to the activation cache. + + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The activation cache. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Gets or sets the settings. + + The ninject settings. + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Executes actions defined on the binding during activation and deactivation. + + + + + Calls the activation actions defined on the binding. + + The context. + A reference to the instance being activated. + + + + Calls the deactivation actions defined on the binding. + + The context. + A reference to the instance being deactivated. + + + + During deactivation, disposes instances that implement . + + + + + Disposes the specified instance. + + The context. + A reference to the instance being deactivated. + + + + During activation, initializes instances that implement . + + + + + Initializes the specified instance. + + The context. + A reference to the instance being activated. + + + + Injects methods on an instance during activation. + + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Injects properties on an instance during activation. + + + + + Initializes a new instance of the class. + + The injector factory component. + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Applies user supplied override values to instance properties. + + The context. + A reference to the instance being activated. + The parameter override value accessors. + + + + Gets the value to inject into the specified target. + + The context. + The target. + all property values of the current request. + The value to inject into the specified target. + + + + Gets the injector factory component. + + + + + Starts instances that implement during activation, + and stops them during deactivation. + + + + + Starts the specified instance. + + The context. + A reference to the instance being activated. + + + + Stops the specified instance. + + The context. + A reference to the instance being deactivated. + + + + Contains information about the activation of a single instance. + + + + + Contains information about the activation of a single instance. + + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Resolves this instance for this context. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Initializes a new instance of the class. + + The kernel managing the resolution. + The context's request. + The context's binding. + The cache component. + The planner component. + The pipeline component. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Resolves the instance associated with this hook. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Gets or sets the cache component. + + + + + Gets or sets the planner component. + + + + + Gets or sets the pipeline component. + + + + + Holds an instance during activation or after it has been cached. + + + + + Returns a value indicating whether the instance is of the specified type. + + The type in question. + if the instance is of the specified type, otherwise . + + + + Returns the instance as the specified type. + + The requested type. + The instance. + + + + Executes the specified action if the instance if of the specified type. + + The type in question. + The action to execute. + + + + Gets or sets the instance. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Determines whether the specified binding satisfies the constraint defined on this request. + + The binding. + True if the binding satisfies the constraint; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request should return a unique result. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The strategies to execute during activation and deactivation. + The activation cache. + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Initializes a new instance of the class. + + The service that was requested. + The constraint that will be applied to filter the bindings used for the request. + The parameters that affect the resolution. + The scope callback, if an external scope was specified. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + + + + Initializes a new instance of the class. + + The parent context. + The service that was requested. + The target that will receive the injection. + The scope callback, if an external scope was specified. + + + + Determines whether the specified binding satisfies the constraints defined on this request. + + The binding. + True if the binding satisfies the constraints; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request is for a single service. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Gets the callback that resolves the scope for the request, if an external scope was provided. + + + + + Defines a constraint on the decorated member. + + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Indicates that the decorated member should be injected. + + + + + Indicates that the decorated member should only be injected using binding(s) registered + with the specified name. + + + + + Initializes a new instance of the class. + + The name of the binding(s) to use. + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Gets the binding name. + + + + + Indicates that the decorated member represents an optional dependency. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes all registrations for the specified component. + + The component's type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Gets or sets the kernel that owns the component container. + + + + + Releases resources held by the object. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets or sets the kernel that owns the component container. + + + + + Provides meaningful exception messages. + + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that a module with the same name is already loaded. + + The new module. + The existing module. + The exception message. + + + + Generates a message saying that no module has been loaded with the specified name. + + The module name. + The exception message. + + + + Generates a message saying that the binding could not be uniquely resolved. + + The request. + The matching bindings, already formatted as strings + The exception message. + + + + Generates a message saying that the binding could not be resolved on the specified request. + + The request. + The exception message. + + + + Generates a message saying that the specified context has cyclic dependencies. + + The context. + The exception message. + + + + Generates a message saying that an invalid attribute type is used in the binding condition. + + The names of the services. + Name of the method. + The type. + The exception message. + + + + Generates a message saying that no constructors are available on the specified context. + + The context. + The exception message. + + + + Generates a message saying that no constructors are available for the given component. + + The component. + The implementation. + The exception message. + + + + Generates a message saying that the specified component is not registered. + + The component. + The exception message. + + + + Generates a message saying that the specified property could not be resolved on the specified request. + + The request. + The property name. + The exception message. + + + + Generates a message saying that the provider on the specified context returned null. + + The context. + The exception message. + + + + Generates a message saying that the constructor is ambiguous. + + The context. + The best constructor directives. + The exception message. + + + + Formats the constructor. + + The constructor. + The string writer. + + + + Formats the attribute. + + The string writer. + The attribute. + + + + Provides extension methods for string formatting + + + + + Formats the activation path into a meaningful string representation. + + The request to be formatted. + The activation path formatted as string. + + + + Formats the given binding into a meaningful string representation. + + The binding to be formatted. + The context. + The binding formatted as string + + + + Formats the specified request into a meaningful string representation. + + The request to be formatted. + The request formatted as string. + + + + Formats the specified target into a meaningful string representation.. + + The target to be formatted. + The target formatted as string. + + + + Formats the specified type into a meaningful string representation.. + + The type to be formatted. + The type formatted as string. + + + + Provides extension methods for see cref="IEnumerable{T}"/> + + + + + Executes the given action for each of the elements in the enumerable. + + + The series. + The action. + + + + Converts the given enumerable type to prevent changed on the type behind. + + The type of the enumerable. + The series. + The input type as real enumerable not castable to the original type. + + + + Extensions for MemberInfo + + + + + Determines whether the specified member has attribute. + + The type of the attribute. + The member. + + true if the specified member has attribute; otherwise, false. + + + + + Determines whether the specified member has attribute. + + The member. + The type of the attribute. + + true if the specified member has attribute; otherwise, false. + + + + + Gets the property info from its declared tpe. + + The member info. + The property definition. + The flags. + The property info from the declared type of the property. + + + + Determines whether the specified property info is private. + + The property info. + + true if the specified property info is private; otherwise, false. + + + + + Gets the custom attributes. + This version is able to get custom attributes for properties from base types even if the property is none public. + + The member. + Type of the attribute. + if set to true [inherited]. + + + + + Extension methods for type + + + + + + Gets an enumerable containing the given type and all its base types + + The type. + An enumerable containing the given type and all its base types + + + + A reader-writer lock implementation that is intended to be simple, yet very + efficient. In particular only 1 interlocked operation is taken for any lock + operation (we use spin locks to achieve this). The spin lock is never held + for more than a few instructions (in particular, we never call event APIs + or in fact any non-trivial API while holding the spin lock). + + Currently this ReaderWriterLock does not support recurision, however it is + not hard to add + + + By Vance Morrison + Taken from - http://blogs.msdn.com/vancem/archive/2006/03/28/563180.aspx + Code at - http://blogs.msdn.com/vancem/attachment/563180.ashx + + + + + The my lock. + + + + + The number read waiters. + + + + + The number upgrade waiters. + + + + + The number write waiters. + + + + + The owners. + + + + + The read event. + + + + + The upgrade event. + + + + + The write event. + + + + + The acquire reader lock. + + + The milliseconds timeout. + + + + + The acquire writer lock. + + + The milliseconds timeout. + + + + + The downgrade to reader lock. + + The lock cookie. + + + + The release reader lock. + + + + + The release writer lock. + + + + + The upgrade to writer lock. + + + The milliseconds timeout. + + + + + + + The enter my lock. + + + + + The enter my lock spin. + + + + + Determines the appropriate events to set, leaves the locks, and sets the events. + + + + + The exit my lock. + + + + + A routine for lazily creating a event outside the lock (so if errors + happen they are outside the lock and that we don't do much work + while holding a spin lock). If all goes well, reenter the lock and + set 'waitEvent' + + + The wait Event. + + + The make Auto Reset Event. + + + + + Waits on 'waitEvent' with a timeout of 'millisceondsTimeout. + Before the wait 'numWaiters' is incremented and is restored before leaving this routine. + + + The wait Event. + + + The num Waiters. + + + The milliseconds Timeout. + + + + + Gets a value indicating whether MyLockHeld. + + + + + Inheritable weak reference base class for Silverlight + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Gets a value indicating whether this instance is alive. + + true if this instance is alive; otherwise, false. + + + + Gets or sets the target of this weak reference. + + The target of this weak reference. + + + + Represents a future value. + + The type of value. + + + + Initializes a new instance of the Future<T> class. + + The callback that will be triggered to read the value. + + + + Gets the value from the future. + + The future. + The future value. + + + + Gets the value, resolving it if necessary. + + + + + Gets the callback that will be called to resolve the value. + + + + + Indicates the object has a reference to a . + + + + + Gets the binding. + + + + + Indicates that the object has a reference to an . + + + + + Gets the kernel. + + + + + A data structure that contains multiple values for a each key. + + The type of key. + The type of value. + + + + Adds the specified value for the specified key. + + The key. + The value. + + + + Removes the specified value for the specified key. + + The key. + The value. + True if such a value existed and was removed; otherwise false. + + + + Removes all values for the specified key. + + The key. + True if any such values existed; otherwise false. + + + + Removes all values. + + + + + Determines whether the multimap contains any values for the specified key. + + The key. + True if the multimap has one or more values for the specified key; otherwise, false. + + + + Determines whether the multimap contains the specified value for the specified key. + + The key. + The value. + True if the multimap contains such a value; otherwise, false. + + + + Returns an enumerator that iterates through a the multimap. + + An object that can be used to iterate through the multimap. + + + + Gets the collection of values stored under the specified key. + + The key. + + + + Gets the collection of keys. + + + + + Gets the collection of collections of values. + + + + + Weak reference that can be used in collections. It is equal to the + object it references and has the same hash code. + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Scope callbacks for standard scopes. + + + + + Gets the callback for transient scope. + + + + + Gets the callback for singleton scope. + + + + + Gets the callback for thread scope. + + + + + A delegate that can inject values into a constructor. + + + + + Creates injectors for members via s. + + + + + Creates injectors from members. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A delegate that can inject values into a method. + + + + + A delegate that can inject values into a property. + + + + + Creates injectors from members via reflective invocation. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A pluggable unit that can be loaded into an . + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Gets the module's name. + + + + + A loadable unit that defines bindings for your application. + + + + + Provides a path to register bindings. + + + + + Provides a path to register bindings. + + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax. + + + + Declares a binding from the service to itself. + + The services to bind. + The fluent syntax. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The services to re-bind. + The fluent syntax. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The services to bind. + The fluent syntax + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The services to re-bind. + The fluent syntax + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Provides a path to register bindings. + + + + + Gets the kernel. + + The kernel. + + + + Initializes a new instance of the class. + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel that the module is loaded into. + + + + + Gets the module's name. Only a single module with a given name can be loaded at one time. + + + + + Gets the bindings that were registered by the module. + + + + + Gets the kernel. + + The kernel. + + + + Overrides the injected value of a constructor argument. + + + + + Modifies an activation process in some way. + + + + + Modifies an activation process in some way. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Initializes a new instance of the class. + + The name of the parameter. + The value of the parameter. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Defines the interface for constructor arguments. + + + + + Determines if the parameter applies to the given target. + + + Only one parameter may return true. + + The context. + The target. + Tre if the parameter applies in the specified context to the specified target. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + + + + + Overrides the injected value of a property. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Overrides the injected value of a constructor argument. + + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + True if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Overrides the injected value of a constructor argument. + + + + + A weak reference to the constructor argument value. + + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + Keeps a weak reference to the value. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + + + + + Contains logic about which bindings to use for a given service request + when other attempts have failed. + + + + + Returns any bindings from the specified collection that match the specified request. + + The multimap of all registered bindings. + The request in question. + The series of matching bindings. + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains logic about which bindings to use for a given service request. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Resolves bindings for open generic types. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Resolves bindings that have been registered directly for the service. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains information about a service registration. + + + + + Contains information about a service registration. + + + + + The configuration of a binding. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + True if the request satisfies the condition; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Gets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + The binding configuration. + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + + The object that will act as the scope, or if the service is transient. + + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + + True if the request satisfies the condition; otherwise false. + + + + + Gets or sets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Gets the binding's metadata. + + + + + + Gets or sets the type of target for the binding. + + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + + Gets or sets the condition defined for the binding. + + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + + Gets the parameters defined for the binding. + + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + + Provides a root for the fluent syntax associated with an . + + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The type of the returned syntax. + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of the returned fleunt syntax + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Adds the constructor arguments for the specified constructor expression. + + The ctor expression. + The constructor argument syntax parameter expression. + + + + Adds a constructor argument for the specified argument expression. + + The argument. + Name of the argument. + The constructor argument syntax parameter expression. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Gets the names of the services. + + The names of the services. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Initializes a new instance of the class. + + The context. + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Gets the context. + + The context. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + The fourth service type to be bound. + + + + Used to define a basic binding syntax builder. + + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Used to define the target of a binding. + + The service being bound. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Gets the binding being built. + + + + + The configuration of a binding. + + + + + Initializes a new instance of the class. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the conditions defined on this binding. + + The request. + True if the request satisfies the conditions; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + The syntax to define bindings. + + The type of the service. + + + + Used to set the condition, scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to define the conditions under which a binding should be used. + + The service being bound. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified types. + Types that derive from one of the specified types are considered as valid targets. + Should match at lease one of the targets. + + The types to match. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match one of the specified types exactly. Types that derive from one of the specified types + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Used to define the scope in which instances activated via a binding should be re-used. + + The service being bound. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Used to define the name of a binding. + + The service being bound. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Used to add additional information to a binding. + + The service being bound. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Used to add additional actions to be performed during activation or deactivation of instances via a binding. + + The service being bound. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Used to set the scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to set the name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to add additional information or actions to a binding. + + The service being bound. + + + + The names of the services added to the exceptions. + + + + + Initializes a new instance of the BindingBuilder<T> class. + + The binding configuration to build. + The names of the configured services. + The kernel. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Describes the target of a binding. + + + + + Indicates that the binding is from a type to itself. + + + + + Indicates that the binding is from one type to another. + + + + + Indicates that the binding is from a type to a provider. + + + + + Indicates that the binding is from a type to a callback method. + + + + + Indicates that the binding is from a type to a constant value. + + + + + Describes the injection of a constructor. + + + + + Describes the injection of a method or constructor. + + + + + A piece of information used in an . (Just a marker.) + + + + + Initializes a new instance of the MethodInjectionDirectiveBase<TMethod, TInjector> class. + + The method this directive represents. + The injector that will be triggered. + + + + Creates targets for the parameters of the method. + + The method. + The targets for the method's parameters. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the targets for the directive. + + + + + Initializes a new instance of the class. + + The constructor described by the directive. + The injector that will be triggered. + + + + The base .ctor definition. + + + + + Describes the injection of a method. + + + + + Initializes a new instance of the class. + + The method described by the directive. + The injector that will be triggered. + + + + Describes the injection of a property. + + + + + Initializes a new instance of the class. + + The member the directive describes. + The injector that will be triggered. + + + + Creates a target for the property. + + The property. + The target for the property. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the injection target for the directive. + + + + + Adds a directive to plans indicating which constructor should be injected during activation. + + + + + Contributes to the generation of a . + + + + + Contributes to the specified plan. + + The plan that is being generated. + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for the constructor + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which methods should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each method + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which properties should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each property + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Represents a site on a type where a value will be injected. + + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the type of the target. + + + + + Gets the name of the target. + + + + + Gets the member that contains the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Represents a site on a type where a value can be injected. + + The type of site this represents. + + + + Initializes a new instance of the Target<T> class. + + The member that contains the target. + The site represented by the target. + + + + Returns an array of custom attributes of a specified type defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes of the specified type. + + + + Returns an array of custom attributes defined on the target. + + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes. + + + + Returns a value indicating whether an attribute of the specified type is defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + True if such an attribute is defined; otherwise false. + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the value(s) that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + A series of values that are available for injection. + + + + Gets the value that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + The value that is to be injected. + + + + Reads whether the target represents an optional dependency. + + if it is optional; otherwise . + + + + Reads the resolution constraint from target. + + The resolution constraint. + + + + Gets the member that contains the target. + + + + + Gets or sets the site (property, parameter, etc.) represented by the target. + + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Initializes a new instance of the class. + + The method that defines the parameter. + The parameter that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Initializes a new instance of the class. + + The property that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Describes the means by which a type should be activated. + + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Generates plans for how to activate instances. + + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Describes the means by which a type should be activated. + + + + + Initializes a new instance of the class. + + The type the plan describes. + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Gets the directives defined in the plan. + + + + + Generates plans for how to activate instances. + + + + + Initializes a new instance of the class. + + The strategies to execute during planning. + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Creates an empty plan for the specified type. + + The type for which a plan should be created. + The created plan. + + + + Creates a new plan for the specified type. + This method requires an active reader lock! + + The type. + The newly created plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Generates scores for constructors, to determine which is the best one to call during activation. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Determines whether members should be injected during activation. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Constructor selector that selects the constructor matching the one passed to the constructor. + + + + + Initializes a new instance of the class. + + The constructor info of the constructor that shall be selected. + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Scores constructors by either looking for the existence of an injection marker + attribute, or by counting the number of parameters. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Checkes whether a binding exists for a given target. + + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checkes whether a binding exists for a given target on the specified kernel. + + The kernel. + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checks whether any parameters exist for the geiven target.. + + The context. + The target. + Whether a parameter exists for the target in the given context. + + + + Determines whether members should be injected during activation by checking + if they are decorated with an injection marker attribute. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Selects members for injection. + + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets or sets the constructor scorer. + + + + + Gets the heuristics used to determine which members should be injected. + + + + + Selects members for injection. + + + + + Initializes a new instance of the class. + + The constructor scorer. + The injection heuristics. + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets the default binding flags. + + + + + Gets or sets the constructor scorer. + + + + + Gets the property injection heuristics. + + + + + Extension methods that enhance module loading. + + + + + Creates a new instance of the module and loads it into the kernel. + + The type of the module. + The kernel. + + + + Loads the module(s) into the kernel. + + The kernel. + The modules to load. + + + + Extensions that enhance resolution of services. + + + + + Gets an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Evaluates if an instance of the specified service can be resolved. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding with the specified name can be resolved. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding that matches the specified constraint can be resolved. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Indicates that an error occured during activation of an instance. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The exception message. + + + + Initializes a new instance of the class. + + The exception message. + The inner exception. + + + + Allows to register kernel globally to perform some tasks on all kernels. + The registration is done by loading the GlobalKernelRegistrationModule to the kernel. + + + + + Performs an action on all registered kernels. + + The action. + + + + A service that requires initialization after it is activated. + + + + + Initializes the instance. Called during activation. + + + + + A super-factory that can create objects of all kinds, following hints provided by s. + + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets the attribute that indicates that a member should be injected. + + + + + Gets the interval at which the cache should be pruned. + + + + + Gets the default scope callback. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By defuault this is disabled and whenever a provider returns null an exception is thrown. + + true if null is allowed as injected value otherwise false. + + + + A service that is started when activated, and stopped when deactivated. + + + + + Starts this instance. Called during activation. + + + + + Stops this instance. Called during deactivation. + + + + + The base implementation of an . + + + + + Lock used when adding missing bindings. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The component container to use. + The configuration to use. + The modules to load into the kernel. + + + + Releases resources held by the object. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Returns an IComparer that is used to determine resolution precedence. + + An IComparer that is used to determine resolution precedence. + + + + Returns a predicate that can determine if a given IBinding matches the request. + + The request/ + A predicate that can determine if a given IBinding matches the request. + + + + Adds components to the kernel during startup. + + + + + Attempts to handle a missing binding for a service. + + The service. + True if the missing binding can be handled; otherwise false. + + + + Attempts to handle a missing binding for a request. + + The request. + True if the missing binding can be handled; otherwise false. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Creates a context for the specified request and binding. + + The request. + The binding. + The created context. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets or sets the attribute that indicates that a member should be injected. + + + + + Gets or sets the interval at which the GC should be polled. + + + + + Gets or sets the default scope callback. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By default this is disabled and whenever a provider returns null an exception is thrown. + + + true if null is allowed as injected value otherwise false. + + + + + The standard implementation of a kernel. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Adds components to the kernel during startup. + + + + + Gets the kernel. + + The kernel. + + + diff --git a/packages/Ninject.3.2.2.0/lib/sl4-windowsphone71/Ninject.xml b/packages/Ninject.3.2.2.0/lib/sl4-windowsphone71/Ninject.xml new file mode 100644 index 0000000..9dc0574 --- /dev/null +++ b/packages/Ninject.3.2.2.0/lib/sl4-windowsphone71/Ninject.xml @@ -0,0 +1,6478 @@ + + + + Ninject + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + An object that notifies when it is disposed. + + + + + An object that can report whether or not it is disposed. + + + + + Gets a value indicating whether this instance is disposed. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases resources held by the object. + + + + + Releases resources before the object is reclaimed by garbage collection. + + + + + Gets a value indicating whether this instance is disposed. + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Provides a path to resolve instances. + + + + + A hack to hide methods defined on for IntelliSense + on fluent interfaces. Credit to Daniel Cazzulino. + + + + + Gets the type of this instance. + + The type of this instance. + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + An object that fires an event when it is disposed. + + + + + Occurs when the object is disposed. + + + + + Initializes a new instance of the class. + + The parent resolution root. + + + + Releases resources held by the object. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + + Gets or sets the parent resolution root (usually the kernel). + + + + + Occurs when the object is disposed. + + + + + Stores the objects that were activated + + + + + A component that contributes to the internals of Ninject. + + + + + A component that contributes to the internals of Ninject. + + + + + Gets or sets the settings. + + + + + Gets or sets the settings. + + + + + Stores the objects that were activated + + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + An object that is prunealble. + + + + + Removes instances from the cache which should no longer be re-used. + + + + + The objects that were activated as reference equal weak references. + + + + + The objects that were activated as reference equal weak references. + + + + + Initializes a new instance of the class. + + The cache pruner. + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + Prunes this instance. + + + + + Removes all dead objects. + + The objects collection to be freed of dead objects. + + + + Gets the activated object count. + + The activated object count. + + + + Gets the deactivated object count. + + The deactivated object count. + + + + Tracks instances for re-use in certain scopes. + + + + + Tracks instances for re-use in certain scopes. + + + + + Stores the specified instance in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets the number of entries currently stored in the cache. + + + + + Contains all cached instances. + This is a dictionary of scopes to a multimap for bindings to cache entries. + + + + + Initializes a new instance of the class. + + The pipeline component. + The cache pruner component. + + + + Releases resources held by the object. + + + + + + Stores the specified context in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Removes instances from the cache which should no longer be re-used. + + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets all entries for a binding withing the selected scope. + + The bindings. + All bindings of a binding. + + + + Gets all cache entries. + + Returns all cache entries. + + + + Forgets the specified cache entries. + + The cache entries. + + + + Forgets the specified entry. + + The entry. + + + + Gets the pipeline component. + + + + + Gets the number of entries currently stored in the cache. + + + + + An entry in the cache. + + + + + Initializes a new instance of the class. + + The context. + The instance reference. + + + + Gets the context of the instance. + + The context. + + + + Gets the instance reference. + + The instance reference. + + + + Uses a and some magic to poll + the garbage collector to see if it has run. + + + + + Prunes instances from an based on environmental information. + + + + + Starts pruning the specified cache based on the rules of the pruner. + + The cache that will be pruned. + + + + Stops pruning. + + + + + indicator for if GC has been run. + + + + + The caches that are being pruned. + + + + + The timer used to trigger the cache pruning + + + + + Releases resources held by the object. + + + + + Starts pruning the specified pruneable based on the rules of the pruner. + + The pruneable that will be pruned. + + + + Stops pruning. + + + + + Compares ReferenceEqualWeakReferences to objects + + + + + Returns if the specifed objects are equal. + + The first object. + The second object. + True if the objects are equal; otherwise false + + + + Returns the hash code of the specified object. + + The object for which the hash code is calculated. + The hash code of the specified object. + + + + A provider that delegates to a callback method to create instances. + + The type of instances the provider creates. + + + + A simple abstract provider for instances of a specific type. + + The type of instances the provider creates. + + + + Provides instances ot the type T + + The type provides by this implementation. + + + + Creates instances of services. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Initializes a new instance of the CallbackProvider<T> class. + + The callback method that will be called to create instances. + + + + Invokes the callback method to create an instance. + + The context. + The created instance. + + + + Gets the callback method used by the provider. + + + + + A provider that always returns the same constant value. + + The type of value that is returned. + + + + Initializes a new instance of the ConstantProvider<T> class. + + The value that the provider should return. + + + + Creates an instance within the specified context. + + The context. + The constant value this provider returns. + + + + Gets the value that the provider will return. + + + + + The standard provider for types, which activates instances via a . + + + + + Initializes a new instance of the class. + + The type (or prototype) of instances the provider creates. + The planner component. + The constructor scorer component. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the value to inject into the specified target. + + The context. + The target. + The value to inject into the specified target. + + + + Gets the implementation type that the provider will activate an instance of + for the specified service. + + The service in question. + The implementation type that will be activated. + + + + Gets a callback that creates an instance of the + for the specified type. + + The prototype the provider instance will create. + The created callback. + + + + Gets a callback that creates an instance of the + for the specified type and constructor. + + The prototype the provider instance will create. + The constructor. + The created callback. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Gets or sets the planner component. + + + + + Gets or sets the selector component. + + + + + Adds all activated instances to the activation cache. + + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The activation cache. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Gets or sets the settings. + + The ninject settings. + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Executes actions defined on the binding during activation and deactivation. + + + + + Calls the activation actions defined on the binding. + + The context. + A reference to the instance being activated. + + + + Calls the deactivation actions defined on the binding. + + The context. + A reference to the instance being deactivated. + + + + During deactivation, disposes instances that implement . + + + + + Disposes the specified instance. + + The context. + A reference to the instance being deactivated. + + + + During activation, initializes instances that implement . + + + + + Initializes the specified instance. + + The context. + A reference to the instance being activated. + + + + Injects methods on an instance during activation. + + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Injects properties on an instance during activation. + + + + + Initializes a new instance of the class. + + The injector factory component. + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Applies user supplied override values to instance properties. + + The context. + A reference to the instance being activated. + The parameter override value accessors. + + + + Gets the value to inject into the specified target. + + The context. + The target. + all property values of the current request. + The value to inject into the specified target. + + + + Gets the injector factory component. + + + + + Starts instances that implement during activation, + and stops them during deactivation. + + + + + Starts the specified instance. + + The context. + A reference to the instance being activated. + + + + Stops the specified instance. + + The context. + A reference to the instance being deactivated. + + + + Contains information about the activation of a single instance. + + + + + Contains information about the activation of a single instance. + + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Resolves this instance for this context. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Initializes a new instance of the class. + + The kernel managing the resolution. + The context's request. + The context's binding. + The cache component. + The planner component. + The pipeline component. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Resolves the instance associated with this hook. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Gets or sets the cache component. + + + + + Gets or sets the planner component. + + + + + Gets or sets the pipeline component. + + + + + Holds an instance during activation or after it has been cached. + + + + + Returns a value indicating whether the instance is of the specified type. + + The type in question. + if the instance is of the specified type, otherwise . + + + + Returns the instance as the specified type. + + The requested type. + The instance. + + + + Executes the specified action if the instance if of the specified type. + + The type in question. + The action to execute. + + + + Gets or sets the instance. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Determines whether the specified binding satisfies the constraint defined on this request. + + The binding. + True if the binding satisfies the constraint; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request should return a unique result. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The strategies to execute during activation and deactivation. + The activation cache. + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Initializes a new instance of the class. + + The service that was requested. + The constraint that will be applied to filter the bindings used for the request. + The parameters that affect the resolution. + The scope callback, if an external scope was specified. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + + + + Initializes a new instance of the class. + + The parent context. + The service that was requested. + The target that will receive the injection. + The scope callback, if an external scope was specified. + + + + Determines whether the specified binding satisfies the constraints defined on this request. + + The binding. + True if the binding satisfies the constraints; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request is for a single service. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Gets the callback that resolves the scope for the request, if an external scope was provided. + + + + + Defines a constraint on the decorated member. + + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Indicates that the decorated member should be injected. + + + + + Indicates that the decorated member should only be injected using binding(s) registered + with the specified name. + + + + + Initializes a new instance of the class. + + The name of the binding(s) to use. + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Gets the binding name. + + + + + Indicates that the decorated member represents an optional dependency. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes all registrations for the specified component. + + The component's type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Gets or sets the kernel that owns the component container. + + + + + Releases resources held by the object. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets or sets the kernel that owns the component container. + + + + + Provides meaningful exception messages. + + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that a module with the same name is already loaded. + + The new module. + The existing module. + The exception message. + + + + Generates a message saying that no module has been loaded with the specified name. + + The module name. + The exception message. + + + + Generates a message saying that the binding could not be uniquely resolved. + + The request. + The matching bindings, already formatted as strings + The exception message. + + + + Generates a message saying that the binding could not be resolved on the specified request. + + The request. + The exception message. + + + + Generates a message saying that the specified context has cyclic dependencies. + + The context. + The exception message. + + + + Generates a message saying that an invalid attribute type is used in the binding condition. + + The names of the services. + Name of the method. + The type. + The exception message. + + + + Generates a message saying that no constructors are available on the specified context. + + The context. + The exception message. + + + + Generates a message saying that no constructors are available for the given component. + + The component. + The implementation. + The exception message. + + + + Generates a message saying that the specified component is not registered. + + The component. + The exception message. + + + + Generates a message saying that the specified property could not be resolved on the specified request. + + The request. + The property name. + The exception message. + + + + Generates a message saying that the provider on the specified context returned null. + + The context. + The exception message. + + + + Generates a message saying that the constructor is ambiguous. + + The context. + The best constructor directives. + The exception message. + + + + Formats the constructor. + + The constructor. + The string writer. + + + + Formats the attribute. + + The string writer. + The attribute. + + + + Provides extension methods for string formatting + + + + + Formats the activation path into a meaningful string representation. + + The request to be formatted. + The activation path formatted as string. + + + + Formats the given binding into a meaningful string representation. + + The binding to be formatted. + The context. + The binding formatted as string + + + + Formats the specified request into a meaningful string representation. + + The request to be formatted. + The request formatted as string. + + + + Formats the specified target into a meaningful string representation.. + + The target to be formatted. + The target formatted as string. + + + + Formats the specified type into a meaningful string representation.. + + The type to be formatted. + The type formatted as string. + + + + Provides extension methods for see cref="IEnumerable{T}"/> + + + + + Executes the given action for each of the elements in the enumerable. + + + The series. + The action. + + + + Converts the given enumerable type to prevent changed on the type behind. + + The type of the enumerable. + The series. + The input type as real enumerable not castable to the original type. + + + + Extensions for MemberInfo + + + + + Determines whether the specified member has attribute. + + The type of the attribute. + The member. + + true if the specified member has attribute; otherwise, false. + + + + + Determines whether the specified member has attribute. + + The member. + The type of the attribute. + + true if the specified member has attribute; otherwise, false. + + + + + Gets the property info from its declared tpe. + + The member info. + The property definition. + The flags. + The property info from the declared type of the property. + + + + Determines whether the specified property info is private. + + The property info. + + true if the specified property info is private; otherwise, false. + + + + + Gets the custom attributes. + This version is able to get custom attributes for properties from base types even if the property is none public. + + The member. + Type of the attribute. + if set to true [inherited]. + + + + + Extension methods for type + + + + + + Gets an enumerable containing the given type and all its base types + + The type. + An enumerable containing the given type and all its base types + + + + A reader-writer lock implementation that is intended to be simple, yet very + efficient. In particular only 1 interlocked operation is taken for any lock + operation (we use spin locks to achieve this). The spin lock is never held + for more than a few instructions (in particular, we never call event APIs + or in fact any non-trivial API while holding the spin lock). + + Currently this ReaderWriterLock does not support recurision, however it is + not hard to add + + + By Vance Morrison + Taken from - http://blogs.msdn.com/vancem/archive/2006/03/28/563180.aspx + Code at - http://blogs.msdn.com/vancem/attachment/563180.ashx + + + + + The my lock. + + + + + The number read waiters. + + + + + The number upgrade waiters. + + + + + The number write waiters. + + + + + The owners. + + + + + The read event. + + + + + The upgrade event. + + + + + The write event. + + + + + The acquire reader lock. + + + The milliseconds timeout. + + + + + The acquire writer lock. + + + The milliseconds timeout. + + + + + The downgrade to reader lock. + + The lock cookie. + + + + The release reader lock. + + + + + The release writer lock. + + + + + The upgrade to writer lock. + + + The milliseconds timeout. + + + + + + + The enter my lock. + + + + + The enter my lock spin. + + + + + Determines the appropriate events to set, leaves the locks, and sets the events. + + + + + The exit my lock. + + + + + A routine for lazily creating a event outside the lock (so if errors + happen they are outside the lock and that we don't do much work + while holding a spin lock). If all goes well, reenter the lock and + set 'waitEvent' + + + The wait Event. + + + The make Auto Reset Event. + + + + + Waits on 'waitEvent' with a timeout of 'millisceondsTimeout. + Before the wait 'numWaiters' is incremented and is restored before leaving this routine. + + + The wait Event. + + + The num Waiters. + + + The milliseconds Timeout. + + + + + Gets a value indicating whether MyLockHeld. + + + + + Inheritable weak reference base class for Silverlight + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Gets a value indicating whether this instance is alive. + + true if this instance is alive; otherwise, false. + + + + Gets or sets the target of this weak reference. + + The target of this weak reference. + + + + Represents a future value. + + The type of value. + + + + Initializes a new instance of the Future<T> class. + + The callback that will be triggered to read the value. + + + + Gets the value from the future. + + The future. + The future value. + + + + Gets the value, resolving it if necessary. + + + + + Gets the callback that will be called to resolve the value. + + + + + Indicates the object has a reference to a . + + + + + Gets the binding. + + + + + Indicates that the object has a reference to an . + + + + + Gets the kernel. + + + + + A data structure that contains multiple values for a each key. + + The type of key. + The type of value. + + + + Adds the specified value for the specified key. + + The key. + The value. + + + + Removes the specified value for the specified key. + + The key. + The value. + True if such a value existed and was removed; otherwise false. + + + + Removes all values for the specified key. + + The key. + True if any such values existed; otherwise false. + + + + Removes all values. + + + + + Determines whether the multimap contains any values for the specified key. + + The key. + True if the multimap has one or more values for the specified key; otherwise, false. + + + + Determines whether the multimap contains the specified value for the specified key. + + The key. + The value. + True if the multimap contains such a value; otherwise, false. + + + + Returns an enumerator that iterates through a the multimap. + + An object that can be used to iterate through the multimap. + + + + Gets the collection of values stored under the specified key. + + The key. + + + + Gets the collection of keys. + + + + + Gets the collection of collections of values. + + + + + Weak reference that can be used in collections. It is equal to the + object it references and has the same hash code. + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Scope callbacks for standard scopes. + + + + + Gets the callback for transient scope. + + + + + Gets the callback for singleton scope. + + + + + Gets the callback for thread scope. + + + + + A delegate that can inject values into a constructor. + + + + + Creates injectors from members. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A delegate that can inject values into a method. + + + + + A delegate that can inject values into a property. + + + + + Creates injectors from members via reflective invocation. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A pluggable unit that can be loaded into an . + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Gets the module's name. + + + + + A loadable unit that defines bindings for your application. + + + + + Provides a path to register bindings. + + + + + Provides a path to register bindings. + + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax. + + + + Declares a binding from the service to itself. + + The services to bind. + The fluent syntax. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The services to re-bind. + The fluent syntax. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The services to bind. + The fluent syntax + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The services to re-bind. + The fluent syntax + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel. + + The kernel. + + + + Initializes a new instance of the class. + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel that the module is loaded into. + + + + + Gets the module's name. Only a single module with a given name can be loaded at one time. + + + + + Gets the bindings that were registered by the module. + + + + + Gets the kernel. + + The kernel. + + + + Overrides the injected value of a constructor argument. + + + + + Modifies an activation process in some way. + + + + + Modifies an activation process in some way. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Initializes a new instance of the class. + + The name of the parameter. + The value of the parameter. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Defines the interface for constructor arguments. + + + + + Determines if the parameter applies to the given target. + + + Only one parameter may return true. + + The context. + The target. + Tre if the parameter applies in the specified context to the specified target. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + + + + + Overrides the injected value of a property. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Overrides the injected value of a constructor argument. + + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + True if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Overrides the injected value of a constructor argument. + + + + + A weak reference to the constructor argument value. + + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + Keeps a weak reference to the value. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + + + + + Contains logic about which bindings to use for a given service request + when other attempts have failed. + + + + + Returns any bindings from the specified collection that match the specified request. + + The multimap of all registered bindings. + The request in question. + The series of matching bindings. + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains logic about which bindings to use for a given service request. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Resolves bindings for open generic types. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Resolves bindings that have been registered directly for the service. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains information about a service registration. + + + + + Contains information about a service registration. + + + + + The configuration of a binding. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + True if the request satisfies the condition; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Gets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + The binding configuration. + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + + The object that will act as the scope, or if the service is transient. + + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + + True if the request satisfies the condition; otherwise false. + + + + + Gets or sets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Gets the binding's metadata. + + + + + + Gets or sets the type of target for the binding. + + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + + Gets or sets the condition defined for the binding. + + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + + Gets the parameters defined for the binding. + + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + + Provides a root for the fluent syntax associated with an . + + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The type of the returned syntax. + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of the returned fleunt syntax + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Adds the constructor arguments for the specified constructor expression. + + The ctor expression. + The constructor argument syntax parameter expression. + + + + Adds a constructor argument for the specified argument expression. + + The argument. + Name of the argument. + The constructor argument syntax parameter expression. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Gets the names of the services. + + The names of the services. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Initializes a new instance of the class. + + The context. + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + The fourth service type to be bound. + + + + Used to define a basic binding syntax builder. + + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Used to define the target of a binding. + + The service being bound. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Gets the binding being built. + + + + + The configuration of a binding. + + + + + Initializes a new instance of the class. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the conditions defined on this binding. + + The request. + True if the request satisfies the conditions; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + The syntax to define bindings. + + The type of the service. + + + + Used to set the condition, scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to define the conditions under which a binding should be used. + + The service being bound. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified types. + Types that derive from one of the specified types are considered as valid targets. + Should match at lease one of the targets. + + The types to match. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match one of the specified types exactly. Types that derive from one of the specified types + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Used to define the scope in which instances activated via a binding should be re-used. + + The service being bound. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Used to define the name of a binding. + + The service being bound. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Used to add additional information to a binding. + + The service being bound. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Used to add additional actions to be performed during activation or deactivation of instances via a binding. + + The service being bound. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Used to set the scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to set the name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to add additional information or actions to a binding. + + The service being bound. + + + + The names of the services added to the exceptions. + + + + + Initializes a new instance of the BindingBuilder<T> class. + + The binding configuration to build. + The names of the configured services. + The kernel. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Describes the target of a binding. + + + + + Indicates that the binding is from a type to itself. + + + + + Indicates that the binding is from one type to another. + + + + + Indicates that the binding is from a type to a provider. + + + + + Indicates that the binding is from a type to a callback method. + + + + + Indicates that the binding is from a type to a constant value. + + + + + Describes the injection of a constructor. + + + + + Describes the injection of a method or constructor. + + + + + A piece of information used in an . (Just a marker.) + + + + + Initializes a new instance of the MethodInjectionDirectiveBase<TMethod, TInjector> class. + + The method this directive represents. + The injector that will be triggered. + + + + Creates targets for the parameters of the method. + + The method. + The targets for the method's parameters. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the targets for the directive. + + + + + Initializes a new instance of the class. + + The constructor described by the directive. + The injector that will be triggered. + + + + The base .ctor definition. + + + + + Describes the injection of a method. + + + + + Initializes a new instance of the class. + + The method described by the directive. + The injector that will be triggered. + + + + Describes the injection of a property. + + + + + Initializes a new instance of the class. + + The member the directive describes. + The injector that will be triggered. + + + + Creates a target for the property. + + The property. + The target for the property. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the injection target for the directive. + + + + + Adds a directive to plans indicating which constructor should be injected during activation. + + + + + Contributes to the generation of a . + + + + + Contributes to the specified plan. + + The plan that is being generated. + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for the constructor + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which methods should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each method + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which properties should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each property + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Represents a site on a type where a value will be injected. + + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the type of the target. + + + + + Gets the name of the target. + + + + + Gets the member that contains the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Represents a site on a type where a value can be injected. + + The type of site this represents. + + + + Initializes a new instance of the Target<T> class. + + The member that contains the target. + The site represented by the target. + + + + Returns an array of custom attributes of a specified type defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes of the specified type. + + + + Returns an array of custom attributes defined on the target. + + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes. + + + + Returns a value indicating whether an attribute of the specified type is defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + True if such an attribute is defined; otherwise false. + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the value(s) that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + A series of values that are available for injection. + + + + Gets the value that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + The value that is to be injected. + + + + Reads whether the target represents an optional dependency. + + if it is optional; otherwise . + + + + Reads the resolution constraint from target. + + The resolution constraint. + + + + Gets the member that contains the target. + + + + + Gets or sets the site (property, parameter, etc.) represented by the target. + + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Initializes a new instance of the class. + + The method that defines the parameter. + The parameter that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Represents an injection target for a . + + + + + Initializes a new instance of the class. + + The property that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Describes the means by which a type should be activated. + + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Generates plans for how to activate instances. + + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Describes the means by which a type should be activated. + + + + + Initializes a new instance of the class. + + The type the plan describes. + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Gets the directives defined in the plan. + + + + + Generates plans for how to activate instances. + + + + + Initializes a new instance of the class. + + The strategies to execute during planning. + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Creates an empty plan for the specified type. + + The type for which a plan should be created. + The created plan. + + + + Creates a new plan for the specified type. + This method requires an active reader lock! + + The type. + The newly created plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Generates scores for constructors, to determine which is the best one to call during activation. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Determines whether members should be injected during activation. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Constructor selector that selects the constructor matching the one passed to the constructor. + + + + + Initializes a new instance of the class. + + The constructor info of the constructor that shall be selected. + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Scores constructors by either looking for the existence of an injection marker + attribute, or by counting the number of parameters. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Checkes whether a binding exists for a given target. + + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checkes whether a binding exists for a given target on the specified kernel. + + The kernel. + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checks whether any parameters exist for the geiven target.. + + The context. + The target. + Whether a parameter exists for the target in the given context. + + + + Determines whether members should be injected during activation by checking + if they are decorated with an injection marker attribute. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Selects members for injection. + + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets or sets the constructor scorer. + + + + + Gets the heuristics used to determine which members should be injected. + + + + + Selects members for injection. + + + + + Initializes a new instance of the class. + + The constructor scorer. + The injection heuristics. + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets the default binding flags. + + + + + Gets or sets the constructor scorer. + + + + + Gets the property injection heuristics. + + + + + Extension methods that enhance module loading. + + + + + Creates a new instance of the module and loads it into the kernel. + + The type of the module. + The kernel. + + + + Loads the module(s) into the kernel. + + The kernel. + The modules to load. + + + + Extensions that enhance resolution of services. + + + + + Gets an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Evaluates if an instance of the specified service can be resolved. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding with the specified name can be resolved. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding that matches the specified constraint can be resolved. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Indicates that an error occured during activation of an instance. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The exception message. + + + + Initializes a new instance of the class. + + The exception message. + The inner exception. + + + + Allows to register kernel globally to perform some tasks on all kernels. + The registration is done by loading the GlobalKernelRegistrationModule to the kernel. + + + + + Performs an action on all registered kernels. + + The action. + + + + A service that requires initialization after it is activated. + + + + + Initializes the instance. Called during activation. + + + + + A super-factory that can create objects of all kinds, following hints provided by s. + + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets the attribute that indicates that a member should be injected. + + + + + Gets the interval at which the cache should be pruned. + + + + + Gets the default scope callback. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By defuault this is disabled and whenever a provider returns null an exception is thrown. + + true if null is allowed as injected value otherwise false. + + + + A service that is started when activated, and stopped when deactivated. + + + + + Starts this instance. Called during activation. + + + + + Stops this instance. Called during deactivation. + + + + + The base implementation of an . + + + + + Lock used when adding missing bindings. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The component container to use. + The configuration to use. + The modules to load into the kernel. + + + + Releases resources held by the object. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Returns an IComparer that is used to determine resolution precedence. + + An IComparer that is used to determine resolution precedence. + + + + Returns a predicate that can determine if a given IBinding matches the request. + + The request/ + A predicate that can determine if a given IBinding matches the request. + + + + Adds components to the kernel during startup. + + + + + Attempts to handle a missing binding for a service. + + The service. + True if the missing binding can be handled; otherwise false. + + + + Attempts to handle a missing binding for a request. + + The request. + True if the missing binding can be handled; otherwise false. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Creates a context for the specified request and binding. + + The request. + The binding. + The created context. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets or sets the attribute that indicates that a member should be injected. + + + + + Gets or sets the interval at which the GC should be polled. + + + + + Gets or sets the default scope callback. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By default this is disabled and whenever a provider returns null an exception is thrown. + + + true if null is allowed as injected value otherwise false. + + + + + The standard implementation of a kernel. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Adds components to the kernel during startup. + + + + + Gets the kernel. + + The kernel. + + + diff --git a/packages/Ninject.3.2.2.0/lib/sl4/Ninject.xml b/packages/Ninject.3.2.2.0/lib/sl4/Ninject.xml new file mode 100644 index 0000000..a8cf1cf --- /dev/null +++ b/packages/Ninject.3.2.2.0/lib/sl4/Ninject.xml @@ -0,0 +1,6527 @@ + + + + Ninject + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + An object that notifies when it is disposed. + + + + + An object that can report whether or not it is disposed. + + + + + Gets a value indicating whether this instance is disposed. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases resources held by the object. + + + + + Releases resources before the object is reclaimed by garbage collection. + + + + + Gets a value indicating whether this instance is disposed. + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Provides a path to resolve instances. + + + + + A hack to hide methods defined on for IntelliSense + on fluent interfaces. Credit to Daniel Cazzulino. + + + + + Gets the type of this instance. + + The type of this instance. + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + An object that fires an event when it is disposed. + + + + + Occurs when the object is disposed. + + + + + Initializes a new instance of the class. + + The parent resolution root. + + + + Releases resources held by the object. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + + Gets or sets the parent resolution root (usually the kernel). + + + + + Occurs when the object is disposed. + + + + + Stores the objects that were activated + + + + + A component that contributes to the internals of Ninject. + + + + + A component that contributes to the internals of Ninject. + + + + + Gets or sets the settings. + + + + + Gets or sets the settings. + + + + + Stores the objects that were activated + + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + An object that is prunealble. + + + + + Removes instances from the cache which should no longer be re-used. + + + + + The objects that were activated as reference equal weak references. + + + + + The objects that were activated as reference equal weak references. + + + + + Initializes a new instance of the class. + + The cache pruner. + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + Prunes this instance. + + + + + Removes all dead objects. + + The objects collection to be freed of dead objects. + + + + Gets the activated object count. + + The activated object count. + + + + Gets the deactivated object count. + + The deactivated object count. + + + + Tracks instances for re-use in certain scopes. + + + + + Tracks instances for re-use in certain scopes. + + + + + Stores the specified instance in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets the number of entries currently stored in the cache. + + + + + Contains all cached instances. + This is a dictionary of scopes to a multimap for bindings to cache entries. + + + + + Initializes a new instance of the class. + + The pipeline component. + The cache pruner component. + + + + Releases resources held by the object. + + + + + + Stores the specified context in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Removes instances from the cache which should no longer be re-used. + + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets all entries for a binding withing the selected scope. + + The bindings. + All bindings of a binding. + + + + Gets all cache entries. + + Returns all cache entries. + + + + Forgets the specified cache entries. + + The cache entries. + + + + Forgets the specified entry. + + The entry. + + + + Gets the pipeline component. + + + + + Gets the number of entries currently stored in the cache. + + + + + An entry in the cache. + + + + + Initializes a new instance of the class. + + The context. + The instance reference. + + + + Gets the context of the instance. + + The context. + + + + Gets the instance reference. + + The instance reference. + + + + Uses a and some magic to poll + the garbage collector to see if it has run. + + + + + Prunes instances from an based on environmental information. + + + + + Starts pruning the specified cache based on the rules of the pruner. + + The cache that will be pruned. + + + + Stops pruning. + + + + + indicator for if GC has been run. + + + + + The caches that are being pruned. + + + + + The timer used to trigger the cache pruning + + + + + Releases resources held by the object. + + + + + Starts pruning the specified pruneable based on the rules of the pruner. + + The pruneable that will be pruned. + + + + Stops pruning. + + + + + Compares ReferenceEqualWeakReferences to objects + + + + + Returns if the specifed objects are equal. + + The first object. + The second object. + True if the objects are equal; otherwise false + + + + Returns the hash code of the specified object. + + The object for which the hash code is calculated. + The hash code of the specified object. + + + + A provider that delegates to a callback method to create instances. + + The type of instances the provider creates. + + + + A simple abstract provider for instances of a specific type. + + The type of instances the provider creates. + + + + Provides instances ot the type T + + The type provides by this implementation. + + + + Creates instances of services. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Initializes a new instance of the CallbackProvider<T> class. + + The callback method that will be called to create instances. + + + + Invokes the callback method to create an instance. + + The context. + The created instance. + + + + Gets the callback method used by the provider. + + + + + A provider that always returns the same constant value. + + The type of value that is returned. + + + + Initializes a new instance of the ConstantProvider<T> class. + + The value that the provider should return. + + + + Creates an instance within the specified context. + + The context. + The constant value this provider returns. + + + + Gets the value that the provider will return. + + + + + The standard provider for types, which activates instances via a . + + + + + Initializes a new instance of the class. + + The type (or prototype) of instances the provider creates. + The planner component. + The constructor scorer component. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the value to inject into the specified target. + + The context. + The target. + The value to inject into the specified target. + + + + Gets the implementation type that the provider will activate an instance of + for the specified service. + + The service in question. + The implementation type that will be activated. + + + + Gets a callback that creates an instance of the + for the specified type. + + The prototype the provider instance will create. + The created callback. + + + + Gets a callback that creates an instance of the + for the specified type and constructor. + + The prototype the provider instance will create. + The constructor. + The created callback. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Gets or sets the planner component. + + + + + Gets or sets the selector component. + + + + + Adds all activated instances to the activation cache. + + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The activation cache. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Gets or sets the settings. + + The ninject settings. + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Executes actions defined on the binding during activation and deactivation. + + + + + Calls the activation actions defined on the binding. + + The context. + A reference to the instance being activated. + + + + Calls the deactivation actions defined on the binding. + + The context. + A reference to the instance being deactivated. + + + + During deactivation, disposes instances that implement . + + + + + Disposes the specified instance. + + The context. + A reference to the instance being deactivated. + + + + During activation, initializes instances that implement . + + + + + Initializes the specified instance. + + The context. + A reference to the instance being activated. + + + + Injects methods on an instance during activation. + + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Injects properties on an instance during activation. + + + + + Initializes a new instance of the class. + + The injector factory component. + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Applies user supplied override values to instance properties. + + The context. + A reference to the instance being activated. + The parameter override value accessors. + + + + Gets the value to inject into the specified target. + + The context. + The target. + all property values of the current request. + The value to inject into the specified target. + + + + Gets the injector factory component. + + + + + Starts instances that implement during activation, + and stops them during deactivation. + + + + + Starts the specified instance. + + The context. + A reference to the instance being activated. + + + + Stops the specified instance. + + The context. + A reference to the instance being deactivated. + + + + Contains information about the activation of a single instance. + + + + + Contains information about the activation of a single instance. + + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Resolves this instance for this context. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Initializes a new instance of the class. + + The kernel managing the resolution. + The context's request. + The context's binding. + The cache component. + The planner component. + The pipeline component. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Resolves the instance associated with this hook. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Gets or sets the cache component. + + + + + Gets or sets the planner component. + + + + + Gets or sets the pipeline component. + + + + + Holds an instance during activation or after it has been cached. + + + + + Returns a value indicating whether the instance is of the specified type. + + The type in question. + if the instance is of the specified type, otherwise . + + + + Returns the instance as the specified type. + + The requested type. + The instance. + + + + Executes the specified action if the instance if of the specified type. + + The type in question. + The action to execute. + + + + Gets or sets the instance. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Determines whether the specified binding satisfies the constraint defined on this request. + + The binding. + True if the binding satisfies the constraint; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request should return a unique result. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The strategies to execute during activation and deactivation. + The activation cache. + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Initializes a new instance of the class. + + The service that was requested. + The constraint that will be applied to filter the bindings used for the request. + The parameters that affect the resolution. + The scope callback, if an external scope was specified. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + + + + Initializes a new instance of the class. + + The parent context. + The service that was requested. + The target that will receive the injection. + The scope callback, if an external scope was specified. + + + + Determines whether the specified binding satisfies the constraints defined on this request. + + The binding. + True if the binding satisfies the constraints; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request is for a single service. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Gets the callback that resolves the scope for the request, if an external scope was provided. + + + + + Defines a constraint on the decorated member. + + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Indicates that the decorated member should be injected. + + + + + Indicates that the decorated member should only be injected using binding(s) registered + with the specified name. + + + + + Initializes a new instance of the class. + + The name of the binding(s) to use. + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Gets the binding name. + + + + + Indicates that the decorated member represents an optional dependency. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes all registrations for the specified component. + + The component's type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Gets or sets the kernel that owns the component container. + + + + + Releases resources held by the object. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets or sets the kernel that owns the component container. + + + + + Provides meaningful exception messages. + + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that a module with the same name is already loaded. + + The new module. + The existing module. + The exception message. + + + + Generates a message saying that no module has been loaded with the specified name. + + The module name. + The exception message. + + + + Generates a message saying that the binding could not be uniquely resolved. + + The request. + The matching bindings, already formatted as strings + The exception message. + + + + Generates a message saying that the binding could not be resolved on the specified request. + + The request. + The exception message. + + + + Generates a message saying that the specified context has cyclic dependencies. + + The context. + The exception message. + + + + Generates a message saying that an invalid attribute type is used in the binding condition. + + The names of the services. + Name of the method. + The type. + The exception message. + + + + Generates a message saying that no constructors are available on the specified context. + + The context. + The exception message. + + + + Generates a message saying that no constructors are available for the given component. + + The component. + The implementation. + The exception message. + + + + Generates a message saying that the specified component is not registered. + + The component. + The exception message. + + + + Generates a message saying that the specified property could not be resolved on the specified request. + + The request. + The property name. + The exception message. + + + + Generates a message saying that the provider on the specified context returned null. + + The context. + The exception message. + + + + Generates a message saying that the constructor is ambiguous. + + The context. + The best constructor directives. + The exception message. + + + + Formats the constructor. + + The constructor. + The string writer. + + + + Formats the attribute. + + The string writer. + The attribute. + + + + Provides extension methods for string formatting + + + + + Formats the activation path into a meaningful string representation. + + The request to be formatted. + The activation path formatted as string. + + + + Formats the given binding into a meaningful string representation. + + The binding to be formatted. + The context. + The binding formatted as string + + + + Formats the specified request into a meaningful string representation. + + The request to be formatted. + The request formatted as string. + + + + Formats the specified target into a meaningful string representation.. + + The target to be formatted. + The target formatted as string. + + + + Formats the specified type into a meaningful string representation.. + + The type to be formatted. + The type formatted as string. + + + + Provides extension methods for see cref="IEnumerable{T}"/> + + + + + Executes the given action for each of the elements in the enumerable. + + + The series. + The action. + + + + Converts the given enumerable type to prevent changed on the type behind. + + The type of the enumerable. + The series. + The input type as real enumerable not castable to the original type. + + + + Extensions for MemberInfo + + + + + Determines whether the specified member has attribute. + + The type of the attribute. + The member. + + true if the specified member has attribute; otherwise, false. + + + + + Determines whether the specified member has attribute. + + The member. + The type of the attribute. + + true if the specified member has attribute; otherwise, false. + + + + + Gets the property info from its declared tpe. + + The member info. + The property definition. + The flags. + The property info from the declared type of the property. + + + + Determines whether the specified property info is private. + + The property info. + + true if the specified property info is private; otherwise, false. + + + + + Gets the custom attributes. + This version is able to get custom attributes for properties from base types even if the property is none public. + + The member. + Type of the attribute. + if set to true [inherited]. + + + + + Extension methods for type + + + + + + Gets an enumerable containing the given type and all its base types + + The type. + An enumerable containing the given type and all its base types + + + + A reader-writer lock implementation that is intended to be simple, yet very + efficient. In particular only 1 interlocked operation is taken for any lock + operation (we use spin locks to achieve this). The spin lock is never held + for more than a few instructions (in particular, we never call event APIs + or in fact any non-trivial API while holding the spin lock). + + Currently this ReaderWriterLock does not support recurision, however it is + not hard to add + + + By Vance Morrison + Taken from - http://blogs.msdn.com/vancem/archive/2006/03/28/563180.aspx + Code at - http://blogs.msdn.com/vancem/attachment/563180.ashx + + + + + The my lock. + + + + + The number read waiters. + + + + + The number upgrade waiters. + + + + + The number write waiters. + + + + + The owners. + + + + + The read event. + + + + + The upgrade event. + + + + + The write event. + + + + + The acquire reader lock. + + + The milliseconds timeout. + + + + + The acquire writer lock. + + + The milliseconds timeout. + + + + + The downgrade to reader lock. + + The lock cookie. + + + + The release reader lock. + + + + + The release writer lock. + + + + + The upgrade to writer lock. + + + The milliseconds timeout. + + + + + + + The enter my lock. + + + + + The enter my lock spin. + + + + + Determines the appropriate events to set, leaves the locks, and sets the events. + + + + + The exit my lock. + + + + + A routine for lazily creating a event outside the lock (so if errors + happen they are outside the lock and that we don't do much work + while holding a spin lock). If all goes well, reenter the lock and + set 'waitEvent' + + + The wait Event. + + + The make Auto Reset Event. + + + + + Waits on 'waitEvent' with a timeout of 'millisceondsTimeout. + Before the wait 'numWaiters' is incremented and is restored before leaving this routine. + + + The wait Event. + + + The num Waiters. + + + The milliseconds Timeout. + + + + + Gets a value indicating whether MyLockHeld. + + + + + Inheritable weak reference base class for Silverlight + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Gets a value indicating whether this instance is alive. + + true if this instance is alive; otherwise, false. + + + + Gets or sets the target of this weak reference. + + The target of this weak reference. + + + + Represents a future value. + + The type of value. + + + + Initializes a new instance of the Future<T> class. + + The callback that will be triggered to read the value. + + + + Gets the value from the future. + + The future. + The future value. + + + + Gets the value, resolving it if necessary. + + + + + Gets the callback that will be called to resolve the value. + + + + + Indicates the object has a reference to a . + + + + + Gets the binding. + + + + + Indicates that the object has a reference to an . + + + + + Gets the kernel. + + + + + A data structure that contains multiple values for a each key. + + The type of key. + The type of value. + + + + Adds the specified value for the specified key. + + The key. + The value. + + + + Removes the specified value for the specified key. + + The key. + The value. + True if such a value existed and was removed; otherwise false. + + + + Removes all values for the specified key. + + The key. + True if any such values existed; otherwise false. + + + + Removes all values. + + + + + Determines whether the multimap contains any values for the specified key. + + The key. + True if the multimap has one or more values for the specified key; otherwise, false. + + + + Determines whether the multimap contains the specified value for the specified key. + + The key. + The value. + True if the multimap contains such a value; otherwise, false. + + + + Returns an enumerator that iterates through a the multimap. + + An object that can be used to iterate through the multimap. + + + + Gets the collection of values stored under the specified key. + + The key. + + + + Gets the collection of keys. + + + + + Gets the collection of collections of values. + + + + + Weak reference that can be used in collections. It is equal to the + object it references and has the same hash code. + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Scope callbacks for standard scopes. + + + + + Gets the callback for transient scope. + + + + + Gets the callback for singleton scope. + + + + + Gets the callback for thread scope. + + + + + A delegate that can inject values into a constructor. + + + + + Creates injectors for members via s. + + + + + Creates injectors from members. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A delegate that can inject values into a method. + + + + + A delegate that can inject values into a property. + + + + + Creates injectors from members via reflective invocation. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A pluggable unit that can be loaded into an . + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Gets the module's name. + + + + + A loadable unit that defines bindings for your application. + + + + + Provides a path to register bindings. + + + + + Provides a path to register bindings. + + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax. + + + + Declares a binding from the service to itself. + + The services to bind. + The fluent syntax. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The services to re-bind. + The fluent syntax. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The services to bind. + The fluent syntax + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The services to re-bind. + The fluent syntax + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel. + + The kernel. + + + + Initializes a new instance of the class. + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel that the module is loaded into. + + + + + Gets the module's name. Only a single module with a given name can be loaded at one time. + + + + + Gets the bindings that were registered by the module. + + + + + Gets the kernel. + + The kernel. + + + + Overrides the injected value of a constructor argument. + + + + + Modifies an activation process in some way. + + + + + Modifies an activation process in some way. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Initializes a new instance of the class. + + The name of the parameter. + The value of the parameter. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Defines the interface for constructor arguments. + + + + + Determines if the parameter applies to the given target. + + + Only one parameter may return true. + + The context. + The target. + Tre if the parameter applies in the specified context to the specified target. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + + + + + Overrides the injected value of a property. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Overrides the injected value of a constructor argument. + + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + True if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Overrides the injected value of a constructor argument. + + + + + A weak reference to the constructor argument value. + + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + Keeps a weak reference to the value. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + + + + + Contains logic about which bindings to use for a given service request + when other attempts have failed. + + + + + Returns any bindings from the specified collection that match the specified request. + + The multimap of all registered bindings. + The request in question. + The series of matching bindings. + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains logic about which bindings to use for a given service request. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Resolves bindings for open generic types. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Resolves bindings that have been registered directly for the service. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains information about a service registration. + + + + + Contains information about a service registration. + + + + + The configuration of a binding. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + True if the request satisfies the condition; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Gets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + The binding configuration. + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + + The object that will act as the scope, or if the service is transient. + + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + + True if the request satisfies the condition; otherwise false. + + + + + Gets or sets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Gets the binding's metadata. + + + + + + Gets or sets the type of target for the binding. + + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + + Gets or sets the condition defined for the binding. + + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + + Gets the parameters defined for the binding. + + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + + Provides a root for the fluent syntax associated with an . + + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The type of the returned syntax. + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of the returned fleunt syntax + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Adds the constructor arguments for the specified constructor expression. + + The ctor expression. + The constructor argument syntax parameter expression. + + + + Adds a constructor argument for the specified argument expression. + + The argument. + Name of the argument. + The constructor argument syntax parameter expression. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Gets the names of the services. + + The names of the services. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Initializes a new instance of the class. + + The context. + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + The fourth service type to be bound. + + + + Used to define a basic binding syntax builder. + + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Used to define the target of a binding. + + The service being bound. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Gets the binding being built. + + + + + The configuration of a binding. + + + + + Initializes a new instance of the class. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the conditions defined on this binding. + + The request. + True if the request satisfies the conditions; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + The syntax to define bindings. + + The type of the service. + + + + Used to set the condition, scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to define the conditions under which a binding should be used. + + The service being bound. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified types. + Types that derive from one of the specified types are considered as valid targets. + Should match at lease one of the targets. + + The types to match. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match one of the specified types exactly. Types that derive from one of the specified types + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Used to define the scope in which instances activated via a binding should be re-used. + + The service being bound. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Used to define the name of a binding. + + The service being bound. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Used to add additional information to a binding. + + The service being bound. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Used to add additional actions to be performed during activation or deactivation of instances via a binding. + + The service being bound. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Used to set the scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to set the name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to add additional information or actions to a binding. + + The service being bound. + + + + The names of the services added to the exceptions. + + + + + Initializes a new instance of the BindingBuilder<T> class. + + The binding configuration to build. + The names of the configured services. + The kernel. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Describes the target of a binding. + + + + + Indicates that the binding is from a type to itself. + + + + + Indicates that the binding is from one type to another. + + + + + Indicates that the binding is from a type to a provider. + + + + + Indicates that the binding is from a type to a callback method. + + + + + Indicates that the binding is from a type to a constant value. + + + + + Describes the injection of a constructor. + + + + + Describes the injection of a method or constructor. + + + + + A piece of information used in an . (Just a marker.) + + + + + Initializes a new instance of the MethodInjectionDirectiveBase<TMethod, TInjector> class. + + The method this directive represents. + The injector that will be triggered. + + + + Creates targets for the parameters of the method. + + The method. + The targets for the method's parameters. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the targets for the directive. + + + + + Initializes a new instance of the class. + + The constructor described by the directive. + The injector that will be triggered. + + + + The base .ctor definition. + + + + + Describes the injection of a method. + + + + + Initializes a new instance of the class. + + The method described by the directive. + The injector that will be triggered. + + + + Describes the injection of a property. + + + + + Initializes a new instance of the class. + + The member the directive describes. + The injector that will be triggered. + + + + Creates a target for the property. + + The property. + The target for the property. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the injection target for the directive. + + + + + Adds a directive to plans indicating which constructor should be injected during activation. + + + + + Contributes to the generation of a . + + + + + Contributes to the specified plan. + + The plan that is being generated. + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for the constructor + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which methods should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each method + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which properties should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each property + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Represents a site on a type where a value will be injected. + + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the type of the target. + + + + + Gets the name of the target. + + + + + Gets the member that contains the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Represents a site on a type where a value can be injected. + + The type of site this represents. + + + + Initializes a new instance of the Target<T> class. + + The member that contains the target. + The site represented by the target. + + + + Returns an array of custom attributes of a specified type defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes of the specified type. + + + + Returns an array of custom attributes defined on the target. + + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes. + + + + Returns a value indicating whether an attribute of the specified type is defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + True if such an attribute is defined; otherwise false. + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the value(s) that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + A series of values that are available for injection. + + + + Gets the value that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + The value that is to be injected. + + + + Reads whether the target represents an optional dependency. + + if it is optional; otherwise . + + + + Reads the resolution constraint from target. + + The resolution constraint. + + + + Gets the member that contains the target. + + + + + Gets or sets the site (property, parameter, etc.) represented by the target. + + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Initializes a new instance of the class. + + The method that defines the parameter. + The parameter that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Initializes a new instance of the class. + + The property that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Describes the means by which a type should be activated. + + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Generates plans for how to activate instances. + + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Describes the means by which a type should be activated. + + + + + Initializes a new instance of the class. + + The type the plan describes. + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Gets the directives defined in the plan. + + + + + Generates plans for how to activate instances. + + + + + Initializes a new instance of the class. + + The strategies to execute during planning. + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Creates an empty plan for the specified type. + + The type for which a plan should be created. + The created plan. + + + + Creates a new plan for the specified type. + This method requires an active reader lock! + + The type. + The newly created plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Generates scores for constructors, to determine which is the best one to call during activation. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Determines whether members should be injected during activation. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Constructor selector that selects the constructor matching the one passed to the constructor. + + + + + Initializes a new instance of the class. + + The constructor info of the constructor that shall be selected. + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Scores constructors by either looking for the existence of an injection marker + attribute, or by counting the number of parameters. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Checkes whether a binding exists for a given target. + + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checkes whether a binding exists for a given target on the specified kernel. + + The kernel. + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checks whether any parameters exist for the geiven target.. + + The context. + The target. + Whether a parameter exists for the target in the given context. + + + + Determines whether members should be injected during activation by checking + if they are decorated with an injection marker attribute. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Selects members for injection. + + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets or sets the constructor scorer. + + + + + Gets the heuristics used to determine which members should be injected. + + + + + Selects members for injection. + + + + + Initializes a new instance of the class. + + The constructor scorer. + The injection heuristics. + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets the default binding flags. + + + + + Gets or sets the constructor scorer. + + + + + Gets the property injection heuristics. + + + + + Extension methods that enhance module loading. + + + + + Creates a new instance of the module and loads it into the kernel. + + The type of the module. + The kernel. + + + + Loads the module(s) into the kernel. + + The kernel. + The modules to load. + + + + Extensions that enhance resolution of services. + + + + + Gets an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Evaluates if an instance of the specified service can be resolved. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding with the specified name can be resolved. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding that matches the specified constraint can be resolved. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Indicates that an error occured during activation of an instance. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The exception message. + + + + Initializes a new instance of the class. + + The exception message. + The inner exception. + + + + Allows to register kernel globally to perform some tasks on all kernels. + The registration is done by loading the GlobalKernelRegistrationModule to the kernel. + + + + + Performs an action on all registered kernels. + + The action. + + + + A service that requires initialization after it is activated. + + + + + Initializes the instance. Called during activation. + + + + + A super-factory that can create objects of all kinds, following hints provided by s. + + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets the attribute that indicates that a member should be injected. + + + + + Gets the interval at which the cache should be pruned. + + + + + Gets the default scope callback. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By defuault this is disabled and whenever a provider returns null an exception is thrown. + + true if null is allowed as injected value otherwise false. + + + + A service that is started when activated, and stopped when deactivated. + + + + + Starts this instance. Called during activation. + + + + + Stops this instance. Called during deactivation. + + + + + The base implementation of an . + + + + + Lock used when adding missing bindings. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The component container to use. + The configuration to use. + The modules to load into the kernel. + + + + Releases resources held by the object. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Returns an IComparer that is used to determine resolution precedence. + + An IComparer that is used to determine resolution precedence. + + + + Returns a predicate that can determine if a given IBinding matches the request. + + The request/ + A predicate that can determine if a given IBinding matches the request. + + + + Adds components to the kernel during startup. + + + + + Attempts to handle a missing binding for a service. + + The service. + True if the missing binding can be handled; otherwise false. + + + + Attempts to handle a missing binding for a request. + + The request. + True if the missing binding can be handled; otherwise false. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Creates a context for the specified request and binding. + + The request. + The binding. + The created context. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets or sets the attribute that indicates that a member should be injected. + + + + + Gets or sets the interval at which the GC should be polled. + + + + + Gets or sets the default scope callback. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By default this is disabled and whenever a provider returns null an exception is thrown. + + + true if null is allowed as injected value otherwise false. + + + + + The standard implementation of a kernel. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Adds components to the kernel during startup. + + + + + Gets the kernel. + + The kernel. + + + diff --git a/packages/Ninject.3.2.2.0/lib/sl5/Ninject.xml b/packages/Ninject.3.2.2.0/lib/sl5/Ninject.xml new file mode 100644 index 0000000..a8cf1cf --- /dev/null +++ b/packages/Ninject.3.2.2.0/lib/sl5/Ninject.xml @@ -0,0 +1,6527 @@ + + + + Ninject + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + An object that notifies when it is disposed. + + + + + An object that can report whether or not it is disposed. + + + + + Gets a value indicating whether this instance is disposed. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases resources held by the object. + + + + + Releases resources before the object is reclaimed by garbage collection. + + + + + Gets a value indicating whether this instance is disposed. + + + + + A block used for deterministic disposal of activated instances. When the block is + disposed, all instances activated via it will be deactivated. + + + + + Provides a path to resolve instances. + + + + + A hack to hide methods defined on for IntelliSense + on fluent interfaces. Credit to Daniel Cazzulino. + + + + + Gets the type of this instance. + + The type of this instance. + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + An object that fires an event when it is disposed. + + + + + Occurs when the object is disposed. + + + + + Initializes a new instance of the class. + + The parent resolution root. + + + + Releases resources held by the object. + + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + + Gets or sets the parent resolution root (usually the kernel). + + + + + Occurs when the object is disposed. + + + + + Stores the objects that were activated + + + + + A component that contributes to the internals of Ninject. + + + + + A component that contributes to the internals of Ninject. + + + + + Gets or sets the settings. + + + + + Gets or sets the settings. + + + + + Stores the objects that were activated + + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + An object that is prunealble. + + + + + Removes instances from the cache which should no longer be re-used. + + + + + The objects that were activated as reference equal weak references. + + + + + The objects that were activated as reference equal weak references. + + + + + Initializes a new instance of the class. + + The cache pruner. + + + + Clears the cache. + + + + + Adds an activated instance. + + The instance to be added. + + + + Adds an deactivated instance. + + The instance to be added. + + + + Determines whether the specified instance is activated. + + The instance. + + true if the specified instance is activated; otherwise, false. + + + + + Determines whether the specified instance is deactivated. + + The instance. + + true if the specified instance is deactivated; otherwise, false. + + + + + Prunes this instance. + + + + + Removes all dead objects. + + The objects collection to be freed of dead objects. + + + + Gets the activated object count. + + The activated object count. + + + + Gets the deactivated object count. + + The deactivated object count. + + + + Tracks instances for re-use in certain scopes. + + + + + Tracks instances for re-use in certain scopes. + + + + + Stores the specified instance in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets the number of entries currently stored in the cache. + + + + + Contains all cached instances. + This is a dictionary of scopes to a multimap for bindings to cache entries. + + + + + Initializes a new instance of the class. + + The pipeline component. + The cache pruner component. + + + + Releases resources held by the object. + + + + + + Stores the specified context in the cache. + + The context to store. + The instance reference. + + + + Tries to retrieve an instance to re-use in the specified context. + + The context that is being activated. + The instance for re-use, or if none has been stored. + + + + Deactivates and releases the specified instance from the cache. + + The instance to release. + if the instance was found and released; otherwise . + + + + Removes instances from the cache which should no longer be re-used. + + + + + Immediately deactivates and removes all instances in the cache that are owned by + the specified scope. + + The scope whose instances should be deactivated. + + + + Immediately deactivates and removes all instances in the cache, regardless of scope. + + + + + Gets all entries for a binding withing the selected scope. + + The bindings. + All bindings of a binding. + + + + Gets all cache entries. + + Returns all cache entries. + + + + Forgets the specified cache entries. + + The cache entries. + + + + Forgets the specified entry. + + The entry. + + + + Gets the pipeline component. + + + + + Gets the number of entries currently stored in the cache. + + + + + An entry in the cache. + + + + + Initializes a new instance of the class. + + The context. + The instance reference. + + + + Gets the context of the instance. + + The context. + + + + Gets the instance reference. + + The instance reference. + + + + Uses a and some magic to poll + the garbage collector to see if it has run. + + + + + Prunes instances from an based on environmental information. + + + + + Starts pruning the specified cache based on the rules of the pruner. + + The cache that will be pruned. + + + + Stops pruning. + + + + + indicator for if GC has been run. + + + + + The caches that are being pruned. + + + + + The timer used to trigger the cache pruning + + + + + Releases resources held by the object. + + + + + Starts pruning the specified pruneable based on the rules of the pruner. + + The pruneable that will be pruned. + + + + Stops pruning. + + + + + Compares ReferenceEqualWeakReferences to objects + + + + + Returns if the specifed objects are equal. + + The first object. + The second object. + True if the objects are equal; otherwise false + + + + Returns the hash code of the specified object. + + The object for which the hash code is calculated. + The hash code of the specified object. + + + + A provider that delegates to a callback method to create instances. + + The type of instances the provider creates. + + + + A simple abstract provider for instances of a specific type. + + The type of instances the provider creates. + + + + Provides instances ot the type T + + The type provides by this implementation. + + + + Creates instances of services. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Initializes a new instance of the CallbackProvider<T> class. + + The callback method that will be called to create instances. + + + + Invokes the callback method to create an instance. + + The context. + The created instance. + + + + Gets the callback method used by the provider. + + + + + A provider that always returns the same constant value. + + The type of value that is returned. + + + + Initializes a new instance of the ConstantProvider<T> class. + + The value that the provider should return. + + + + Creates an instance within the specified context. + + The context. + The constant value this provider returns. + + + + Gets the value that the provider will return. + + + + + The standard provider for types, which activates instances via a . + + + + + Initializes a new instance of the class. + + The type (or prototype) of instances the provider creates. + The planner component. + The constructor scorer component. + + + + Creates an instance within the specified context. + + The context. + The created instance. + + + + Gets the value to inject into the specified target. + + The context. + The target. + The value to inject into the specified target. + + + + Gets the implementation type that the provider will activate an instance of + for the specified service. + + The service in question. + The implementation type that will be activated. + + + + Gets a callback that creates an instance of the + for the specified type. + + The prototype the provider instance will create. + The created callback. + + + + Gets a callback that creates an instance of the + for the specified type and constructor. + + The prototype the provider instance will create. + The constructor. + The created callback. + + + + Gets the type (or prototype) of instances the provider creates. + + + + + Gets or sets the planner component. + + + + + Gets or sets the selector component. + + + + + Adds all activated instances to the activation cache. + + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The activation cache. + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Gets or sets the settings. + + The ninject settings. + + + + Contributes to a , and is called during the activation + and deactivation of an instance. + + + + + Contributes to the activation of the instance in the specified context. + + The context. + A reference to the instance being activated. + + + + Contributes to the deactivation of the instance in the specified context. + + The context. + A reference to the instance being deactivated. + + + + Executes actions defined on the binding during activation and deactivation. + + + + + Calls the activation actions defined on the binding. + + The context. + A reference to the instance being activated. + + + + Calls the deactivation actions defined on the binding. + + The context. + A reference to the instance being deactivated. + + + + During deactivation, disposes instances that implement . + + + + + Disposes the specified instance. + + The context. + A reference to the instance being deactivated. + + + + During activation, initializes instances that implement . + + + + + Initializes the specified instance. + + The context. + A reference to the instance being activated. + + + + Injects methods on an instance during activation. + + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Injects properties on an instance during activation. + + + + + Initializes a new instance of the class. + + The injector factory component. + + + + Injects values into the properties as described by s + contained in the plan. + + The context. + A reference to the instance being activated. + + + + Applies user supplied override values to instance properties. + + The context. + A reference to the instance being activated. + The parameter override value accessors. + + + + Gets the value to inject into the specified target. + + The context. + The target. + all property values of the current request. + The value to inject into the specified target. + + + + Gets the injector factory component. + + + + + Starts instances that implement during activation, + and stops them during deactivation. + + + + + Starts the specified instance. + + The context. + A reference to the instance being activated. + + + + Stops the specified instance. + + The context. + A reference to the instance being deactivated. + + + + Contains information about the activation of a single instance. + + + + + Contains information about the activation of a single instance. + + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Resolves this instance for this context. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Initializes a new instance of the class. + + The kernel managing the resolution. + The context's request. + The context's binding. + The cache component. + The planner component. + The pipeline component. + + + + Gets the scope for the context that "owns" the instance activated therein. + + The object that acts as the scope. + + + + Gets the provider that should be used to create the instance for this context. + + The provider that should be used. + + + + Resolves the instance associated with this hook. + + The resolved instance. + + + + Gets the kernel that is driving the activation. + + + + + Gets the request. + + + + + Gets the binding. + + + + + Gets or sets the activation plan. + + + + + Gets the parameters that were passed to manipulate the activation process. + + + + + Gets the generic arguments for the request, if any. + + + + + Gets a value indicating whether the request involves inferred generic arguments. + + + + + Gets or sets the cache component. + + + + + Gets or sets the planner component. + + + + + Gets or sets the pipeline component. + + + + + Holds an instance during activation or after it has been cached. + + + + + Returns a value indicating whether the instance is of the specified type. + + The type in question. + if the instance is of the specified type, otherwise . + + + + Returns the instance as the specified type. + + The requested type. + The instance. + + + + Executes the specified action if the instance if of the specified type. + + The type in question. + The action to execute. + + + + Gets or sets the instance. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Determines whether the specified binding satisfies the constraint defined on this request. + + The binding. + True if the binding satisfies the constraint; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request should return a unique result. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Drives the activation (injection, etc.) of an instance. + + + + + The activation cache. + + + + + Initializes a new instance of the class. + + The strategies to execute during activation and deactivation. + The activation cache. + + + + Activates the instance in the specified context. + + The context. + The instance reference. + + + + Deactivates the instance in the specified context. + + The context. + The instance reference. + + + + Gets the strategies that contribute to the activation and deactivation processes. + + + + + Describes the request for a service resolution. + + + + + Initializes a new instance of the class. + + The service that was requested. + The constraint that will be applied to filter the bindings used for the request. + The parameters that affect the resolution. + The scope callback, if an external scope was specified. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + + + + Initializes a new instance of the class. + + The parent context. + The service that was requested. + The target that will receive the injection. + The scope callback, if an external scope was specified. + + + + Determines whether the specified binding satisfies the constraints defined on this request. + + The binding. + True if the binding satisfies the constraints; otherwise false. + + + + Gets the scope if one was specified in the request. + + The object that acts as the scope. + + + + Creates a child request. + + The service that is being requested. + The context in which the request was made. + The target that will receive the injection. + The child request. + + + + Gets the service that was requested. + + + + + Gets the parent request. + + + + + Gets the parent context. + + + + + Gets the target that will receive the injection, if any. + + + + + Gets the constraint that will be applied to filter the bindings used for the request. + + + + + Gets the parameters that affect the resolution. + + + + + Gets the stack of bindings which have been activated by either this request or its ancestors. + + + + + Gets the recursive depth at which this request occurs. + + + + + Gets or sets value indicating whether the request is optional. + + + + + Gets or sets value indicating whether the request is for a single service. + + + + + Gets or sets value indicating whether the request should force to return a unique value even if the request is optional. + If this value is set true the request will throw an ActivationException if there are multiple satisfying bingings rather + than returning null for the request is optional. For none optional requests this parameter does not change anything. + + + + + Gets the callback that resolves the scope for the request, if an external scope was provided. + + + + + Defines a constraint on the decorated member. + + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Indicates that the decorated member should be injected. + + + + + Indicates that the decorated member should only be injected using binding(s) registered + with the specified name. + + + + + Initializes a new instance of the class. + + The name of the binding(s) to use. + + + + Determines whether the specified binding metadata matches the constraint. + + The metadata in question. + True if the metadata matches; otherwise false. + + + + Gets the binding name. + + + + + Indicates that the decorated member represents an optional dependency. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + An internal container that manages and resolves components that contribute to Ninject. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes all registrations for the specified component. + + The component's type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Gets or sets the kernel that owns the component container. + + + + + Releases resources held by the object. + + + + + Registers a component in the container. + + The component type. + The component's implementation type. + + + + Registers a transient component in the container. + + The component type. + The component's implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Removes the specified registration. + + The component type. + The implementation type. + + + + Removes all registrations for the specified component. + + The component type. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets one instance of the specified component. + + The component type. + The instance of the component. + + + + Gets all available instances of the specified component. + + The component type. + A series of instances of the specified component. + + + + Gets or sets the kernel that owns the component container. + + + + + Provides meaningful exception messages. + + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that modules without names are not supported. + + The exception message. + + + + Generates a message saying that a module with the same name is already loaded. + + The new module. + The existing module. + The exception message. + + + + Generates a message saying that no module has been loaded with the specified name. + + The module name. + The exception message. + + + + Generates a message saying that the binding could not be uniquely resolved. + + The request. + The matching bindings, already formatted as strings + The exception message. + + + + Generates a message saying that the binding could not be resolved on the specified request. + + The request. + The exception message. + + + + Generates a message saying that the specified context has cyclic dependencies. + + The context. + The exception message. + + + + Generates a message saying that an invalid attribute type is used in the binding condition. + + The names of the services. + Name of the method. + The type. + The exception message. + + + + Generates a message saying that no constructors are available on the specified context. + + The context. + The exception message. + + + + Generates a message saying that no constructors are available for the given component. + + The component. + The implementation. + The exception message. + + + + Generates a message saying that the specified component is not registered. + + The component. + The exception message. + + + + Generates a message saying that the specified property could not be resolved on the specified request. + + The request. + The property name. + The exception message. + + + + Generates a message saying that the provider on the specified context returned null. + + The context. + The exception message. + + + + Generates a message saying that the constructor is ambiguous. + + The context. + The best constructor directives. + The exception message. + + + + Formats the constructor. + + The constructor. + The string writer. + + + + Formats the attribute. + + The string writer. + The attribute. + + + + Provides extension methods for string formatting + + + + + Formats the activation path into a meaningful string representation. + + The request to be formatted. + The activation path formatted as string. + + + + Formats the given binding into a meaningful string representation. + + The binding to be formatted. + The context. + The binding formatted as string + + + + Formats the specified request into a meaningful string representation. + + The request to be formatted. + The request formatted as string. + + + + Formats the specified target into a meaningful string representation.. + + The target to be formatted. + The target formatted as string. + + + + Formats the specified type into a meaningful string representation.. + + The type to be formatted. + The type formatted as string. + + + + Provides extension methods for see cref="IEnumerable{T}"/> + + + + + Executes the given action for each of the elements in the enumerable. + + + The series. + The action. + + + + Converts the given enumerable type to prevent changed on the type behind. + + The type of the enumerable. + The series. + The input type as real enumerable not castable to the original type. + + + + Extensions for MemberInfo + + + + + Determines whether the specified member has attribute. + + The type of the attribute. + The member. + + true if the specified member has attribute; otherwise, false. + + + + + Determines whether the specified member has attribute. + + The member. + The type of the attribute. + + true if the specified member has attribute; otherwise, false. + + + + + Gets the property info from its declared tpe. + + The member info. + The property definition. + The flags. + The property info from the declared type of the property. + + + + Determines whether the specified property info is private. + + The property info. + + true if the specified property info is private; otherwise, false. + + + + + Gets the custom attributes. + This version is able to get custom attributes for properties from base types even if the property is none public. + + The member. + Type of the attribute. + if set to true [inherited]. + + + + + Extension methods for type + + + + + + Gets an enumerable containing the given type and all its base types + + The type. + An enumerable containing the given type and all its base types + + + + A reader-writer lock implementation that is intended to be simple, yet very + efficient. In particular only 1 interlocked operation is taken for any lock + operation (we use spin locks to achieve this). The spin lock is never held + for more than a few instructions (in particular, we never call event APIs + or in fact any non-trivial API while holding the spin lock). + + Currently this ReaderWriterLock does not support recurision, however it is + not hard to add + + + By Vance Morrison + Taken from - http://blogs.msdn.com/vancem/archive/2006/03/28/563180.aspx + Code at - http://blogs.msdn.com/vancem/attachment/563180.ashx + + + + + The my lock. + + + + + The number read waiters. + + + + + The number upgrade waiters. + + + + + The number write waiters. + + + + + The owners. + + + + + The read event. + + + + + The upgrade event. + + + + + The write event. + + + + + The acquire reader lock. + + + The milliseconds timeout. + + + + + The acquire writer lock. + + + The milliseconds timeout. + + + + + The downgrade to reader lock. + + The lock cookie. + + + + The release reader lock. + + + + + The release writer lock. + + + + + The upgrade to writer lock. + + + The milliseconds timeout. + + + + + + + The enter my lock. + + + + + The enter my lock spin. + + + + + Determines the appropriate events to set, leaves the locks, and sets the events. + + + + + The exit my lock. + + + + + A routine for lazily creating a event outside the lock (so if errors + happen they are outside the lock and that we don't do much work + while holding a spin lock). If all goes well, reenter the lock and + set 'waitEvent' + + + The wait Event. + + + The make Auto Reset Event. + + + + + Waits on 'waitEvent' with a timeout of 'millisceondsTimeout. + Before the wait 'numWaiters' is incremented and is restored before leaving this routine. + + + The wait Event. + + + The num Waiters. + + + The milliseconds Timeout. + + + + + Gets a value indicating whether MyLockHeld. + + + + + Inheritable weak reference base class for Silverlight + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Gets a value indicating whether this instance is alive. + + true if this instance is alive; otherwise, false. + + + + Gets or sets the target of this weak reference. + + The target of this weak reference. + + + + Represents a future value. + + The type of value. + + + + Initializes a new instance of the Future<T> class. + + The callback that will be triggered to read the value. + + + + Gets the value from the future. + + The future. + The future value. + + + + Gets the value, resolving it if necessary. + + + + + Gets the callback that will be called to resolve the value. + + + + + Indicates the object has a reference to a . + + + + + Gets the binding. + + + + + Indicates that the object has a reference to an . + + + + + Gets the kernel. + + + + + A data structure that contains multiple values for a each key. + + The type of key. + The type of value. + + + + Adds the specified value for the specified key. + + The key. + The value. + + + + Removes the specified value for the specified key. + + The key. + The value. + True if such a value existed and was removed; otherwise false. + + + + Removes all values for the specified key. + + The key. + True if any such values existed; otherwise false. + + + + Removes all values. + + + + + Determines whether the multimap contains any values for the specified key. + + The key. + True if the multimap has one or more values for the specified key; otherwise, false. + + + + Determines whether the multimap contains the specified value for the specified key. + + The key. + The value. + True if the multimap contains such a value; otherwise, false. + + + + Returns an enumerator that iterates through a the multimap. + + An object that can be used to iterate through the multimap. + + + + Gets the collection of values stored under the specified key. + + The key. + + + + Gets the collection of keys. + + + + + Gets the collection of collections of values. + + + + + Weak reference that can be used in collections. It is equal to the + object it references and has the same hash code. + + + + + Initializes a new instance of the class. + + The target. + + + + Initializes a new instance of the class. + + The target. + if set to true [track resurrection]. + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + The parameter is null. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Scope callbacks for standard scopes. + + + + + Gets the callback for transient scope. + + + + + Gets the callback for singleton scope. + + + + + Gets the callback for thread scope. + + + + + A delegate that can inject values into a constructor. + + + + + Creates injectors for members via s. + + + + + Creates injectors from members. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A delegate that can inject values into a method. + + + + + A delegate that can inject values into a property. + + + + + Creates injectors from members via reflective invocation. + + + + + Gets or creates an injector for the specified constructor. + + The constructor. + The created injector. + + + + Gets or creates an injector for the specified property. + + The property. + The created injector. + + + + Gets or creates an injector for the specified method. + + The method. + The created injector. + + + + A pluggable unit that can be loaded into an . + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Gets the module's name. + + + + + A loadable unit that defines bindings for your application. + + + + + Provides a path to register bindings. + + + + + Provides a path to register bindings. + + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax. + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax. + + + + Declares a binding from the service to itself. + + The services to bind. + The fluent syntax. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The services to re-bind. + The fluent syntax. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Declares a binding for the specified service. + + The service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The first service to bind. + The second service to bind. + The third service to bind. + The fourth service to bind. + The fluent syntax + + + + Declares a binding for the specified service. + + The services to bind. + The fluent syntax + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The first service to re-bind. + The fluent syntax + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified services, and declares a new one. + + The first service to re-bind. + The second service to re-bind. + The third service to re-bind. + The fourth service to re-bind. + The fluent syntax. + + + + Removes any existing bindings for the specified service, and declares a new one. + + The services to re-bind. + The fluent syntax + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel. + + The kernel. + + + + Initializes a new instance of the class. + + + + + Called when the module is loaded into a kernel. + + The kernel that is loading the module. + + + + Called when the module is unloaded from a kernel. + + The kernel that is unloading the module. + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Loads the module into the kernel. + + + + + Unloads the module from the kernel. + + + + + Called after loading the modules. A module can verify here if all other required modules are loaded. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Gets the kernel that the module is loaded into. + + + + + Gets the module's name. Only a single module with a given name can be loaded at one time. + + + + + Gets the bindings that were registered by the module. + + + + + Gets the kernel. + + The kernel. + + + + Overrides the injected value of a constructor argument. + + + + + Modifies an activation process in some way. + + + + + Modifies an activation process in some way. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Initializes a new instance of the class. + + The name of the parameter. + The value of the parameter. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the parameter. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Defines the interface for constructor arguments. + + + + + Determines if the parameter applies to the given target. + + + Only one parameter may return true. + + The context. + The target. + Tre if the parameter applies in the specified context to the specified target. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The callback to invoke to get the value that should be injected. + if set to true [should inherit]. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + + + + + Overrides the injected value of a property. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Initializes a new instance of the class. + + The name of the property to override. + The callback to invoke to get the value that should be injected. + + + + Overrides the injected value of a constructor argument. + + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + + + + Initializes a new instance of the class. + + The type of the argument to override. + The callback that will be triggered to get the parameter's value. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + True if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Gets the value for the parameter within the specified context. + + The context. + The target. + The value for the parameter. + + + + Indicates whether the current object is equal to another object of the same type. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Determines whether the object equals the specified object. + + An object to compare with this object. + True if the objects are equal; otherwise false + + + + Serves as a hash function for a particular type. + + A hash code for the object. + + + + Gets the name of the parameter. + + + + + Gets a value indicating whether the parameter should be inherited into child requests. + + + + + Gets or sets the callback that will be triggered to get the parameter's value. + + + + + Overrides the injected value of a constructor argument. + + + + + A weak reference to the constructor argument value. + + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + + + + Initializes a new instance of the class. + + The name of the argument to override. + The value to inject into the property. + Whether the parameter should be inherited into child requests. + + + + Determines if the parameter applies to the given target. + + The context. + The target. + + Tre if the parameter applies in the specified context to the specified target. + + + Only one parameter may return true. + + + + + Overrides the injected value of a property. + Keeps a weak reference to the value. + + + + + Initializes a new instance of the class. + + The name of the property to override. + The value to inject into the property. + + + + + + + + Contains logic about which bindings to use for a given service request + when other attempts have failed. + + + + + Returns any bindings from the specified collection that match the specified request. + + The multimap of all registered bindings. + The request in question. + The series of matching bindings. + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains logic about which bindings to use for a given service request. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Resolves bindings for open generic types. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Resolves bindings that have been registered directly for the service. + + + + + Returns any bindings from the specified collection that match the specified service. + + The multimap of all registered bindings. + The service in question. + The series of matching bindings. + + + + Contains information about a service registration. + + + + + Contains information about a service registration. + + + + + The configuration of a binding. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + True if the request satisfies the condition; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Gets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + + + + Initializes a new instance of the class. + + The service that is controlled by the binding. + The binding configuration. + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + + The object that will act as the scope, or if the service is transient. + + + + + Determines whether the specified request satisfies the condition defined on the binding, + if one was defined. + + The request. + + True if the request satisfies the condition; otherwise false. + + + + + Gets or sets the binding configuration. + + The binding configuration. + + + + Gets the service type that is controlled by the binding. + + + + + Gets the binding's metadata. + + + + + + Gets or sets the type of target for the binding. + + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + + Gets or sets the condition defined for the binding. + + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + + Gets the parameters defined for the binding. + + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + + Provides a root for the fluent syntax associated with an . + + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The type of the returned syntax. + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of the returned fleunt syntax + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Adds the constructor arguments for the specified constructor expression. + + The ctor expression. + The constructor argument syntax parameter expression. + + + + Adds a constructor argument for the specified argument expression. + + The argument. + Name of the argument. + The constructor argument syntax parameter expression. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Gets the names of the services. + + The names of the services. + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Passed to ToConstructor to specify that a constructor value is Injected. + + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Initializes a new instance of the class. + + The context. + + + + Specifies that the argument is injected. + + The type of the parameter + Not used. This interface has no implementation. + + + + Gets the context. + + The context. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + The fourth service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + The fourth service type to be bound. + + + + Used to define a basic binding syntax builder. + + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + The third service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + The third service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The first service type. + The second service type. + + + + Used to define the target of a binding. + + The first service type to be bound. + The second service type to be bound. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The type of the implementation. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Provides a root for the fluent syntax associated with an . + + The service type. + + + + Used to define the target of a binding. + + The service being bound. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Initializes a new instance of the class. + + The binding to build. + The kernel. + The names of the services. + + + + Indicates that the service should be self-bound. + + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the specified implementation type. + + The implementation type. + The fluent syntax. + + + + Indicates that the service should be bound to the speecified constructor. + + The type of the implementation. + The expression that specifies the constructor. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to an instance of the specified provider type. + The instance will be activated via the kernel when an instance of the service is activated. + + The type of provider to activate. + The fluent syntax. + + + + Indicates that the service should be bound to the specified provider. + + The type of the implementation. + The provider. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified callback method. + + The type of the implementation. + The method. + The fluent syntax. + + + + Indicates that the service should be bound to the specified constant value. + + The type of the implementation. + The constant value. + The fluent syntax. + + + + Gets the binding being built. + + + + + The configuration of a binding. + + + + + Initializes a new instance of the class. + + + + + Gets the provider for the binding. + + The context. + The provider to use. + + + + Gets the scope for the binding, if any. + + The context. + The object that will act as the scope, or if the service is transient. + + + + Determines whether the specified request satisfies the conditions defined on this binding. + + The request. + True if the request satisfies the conditions; otherwise false. + + + + Gets the binding's metadata. + + + + + Gets or sets a value indicating whether the binding was implicitly registered. + + + + + Gets a value indicating whether the binding has a condition associated with it. + + + + + Gets or sets the type of target for the binding. + + + + + Gets or sets the condition defined for the binding. + + + + + Gets or sets the callback that returns the provider that should be used by the binding. + + + + + Gets or sets the callback that returns the object that will act as the binding's scope. + + + + + Gets the parameters defined for the binding. + + + + + Gets the actions that should be called after instances are activated via the binding. + + + + + Gets the actions that should be called before instances are deactivated via the binding. + + + + + Provides a root for the fluent syntax associated with an . + + The implementation type of the built binding. + + + + The syntax to define bindings. + + The type of the service. + + + + Used to set the condition, scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to define the conditions under which a binding should be used. + + The service being bound. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified types. + Types that derive from one of the specified types are considered as valid targets. + Should match at lease one of the targets. + + The types to match. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match one of the specified types exactly. Types that derive from one of the specified types + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Used to define the scope in which instances activated via a binding should be re-used. + + The service being bound. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Used to define the name of a binding. + + The service being bound. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Used to add additional information to a binding. + + The service being bound. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Used to add additional actions to be performed during activation or deactivation of instances via a binding. + + The service being bound. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Used to set the scope, name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to set the name, or add additional information or actions to a binding. + + The service being bound. + + + + Used to add additional information or actions to a binding. + + The service being bound. + + + + The names of the services added to the exceptions. + + + + + Initializes a new instance of the BindingBuilder<T> class. + + The binding configuration to build. + The names of the configured services. + The kernel. + + + + Indicates that the binding should be used only for requests that support the specified condition. + + The condition. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + Types that derive from the specified type are considered as valid targets. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + + The type. + The fluent syntax. + + + + Indicates that the binding should be used only for injections on the specified type. + The type must match exactly the specified type. Types that derive from the specified type + will not be considered as valid target. + Should match at least one of the specified targets + + The types. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the class being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the member being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the target being injected has + an attribute of the specified type. + + The type of attribute. + The fluent syntax. + + + + Indicates that the binding should be used only when the service is being requested + by a service bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor is bound with the specified name. + + The name to expect. + The fluent syntax. + + + + Indicates that the binding should be used only when any ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be used only when no ancestor matches the specified predicate. + + The predicate to match. + The fluent syntax. + + + + Indicates that the binding should be registered with the specified name. Names are not + necessarily unique; multiple bindings for a given service may be registered with the same name. + + The name to give the binding. + The fluent syntax. + + + + Indicates that only a single instance of the binding should be created, and then + should be re-used for all subsequent requests. + + The fluent syntax. + + + + Indicates that instances activated via the binding should not be re-used, nor have + their lifecycle managed by Ninject. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used within the same thread. + + The fluent syntax. + + + + Indicates that instances activated via the binding should be re-used as long as the object + returned by the provided callback remains alive (that is, has not been garbage collected). + + The callback that returns the scope. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The name of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + Specifies the argument type to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified constructor argument should be overridden with the specified value. + + The type of the argument to override. + The callback to invoke to get the value for the argument. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Indicates that the specified property should be injected with the specified value. + + The name of the property to override. + The callback to invoke to get the value for the property. + The fluent syntax. + + + + Adds a custom parameter to the binding. + + The parameter. + The fluent syntax. + + + + Sets the value of a piece of metadata on the binding. + + The metadata key. + The metadata value. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are activated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The action callback. + The fluent syntax. + + + + Indicates that the specified callback should be invoked when instances are deactivated. + + The type of the implementation. + The action callback. + The fluent syntax. + + + + Gets the binding being built. + + + + + Gets the kernel. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Additional information available about a binding, which can be used in constraints + to select bindings to use in activation. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Determines whether a piece of metadata with the specified key has been defined. + + The metadata key. + True if such a piece of metadata exists; otherwise, false. + + + + Gets the value of metadata defined with the specified key, cast to the specified type. + + The type of value to expect. + The metadata key. + The metadata value. + + + + Gets the value of metadata defined with the specified key. + + The metadata key. + The value to return if the binding has no metadata set with the specified key. + The metadata value, or the default value if none was set. + + + + Sets the value of a piece of metadata. + + The metadata key. + The metadata value. + + + + Gets or sets the binding's name. + + + + + Describes the target of a binding. + + + + + Indicates that the binding is from a type to itself. + + + + + Indicates that the binding is from one type to another. + + + + + Indicates that the binding is from a type to a provider. + + + + + Indicates that the binding is from a type to a callback method. + + + + + Indicates that the binding is from a type to a constant value. + + + + + Describes the injection of a constructor. + + + + + Describes the injection of a method or constructor. + + + + + A piece of information used in an . (Just a marker.) + + + + + Initializes a new instance of the MethodInjectionDirectiveBase<TMethod, TInjector> class. + + The method this directive represents. + The injector that will be triggered. + + + + Creates targets for the parameters of the method. + + The method. + The targets for the method's parameters. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the targets for the directive. + + + + + Initializes a new instance of the class. + + The constructor described by the directive. + The injector that will be triggered. + + + + The base .ctor definition. + + + + + Describes the injection of a method. + + + + + Initializes a new instance of the class. + + The method described by the directive. + The injector that will be triggered. + + + + Describes the injection of a property. + + + + + Initializes a new instance of the class. + + The member the directive describes. + The injector that will be triggered. + + + + Creates a target for the property. + + The property. + The target for the property. + + + + Gets or sets the injector that will be triggered. + + + + + Gets or sets the injection target for the directive. + + + + + Adds a directive to plans indicating which constructor should be injected during activation. + + + + + Contributes to the generation of a . + + + + + Contributes to the specified plan. + + The plan that is being generated. + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for the constructor + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which methods should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each method + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Adds directives to plans indicating which properties should be injected during activation. + + + + + Initializes a new instance of the class. + + The selector component. + The injector factory component. + + + + Adds a to the plan for each property + that should be injected. + + The plan that is being generated. + + + + Gets the selector component. + + + + + Gets the injector factory component. + + + + + Represents a site on a type where a value will be injected. + + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the type of the target. + + + + + Gets the name of the target. + + + + + Gets the member that contains the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Represents a site on a type where a value can be injected. + + The type of site this represents. + + + + Initializes a new instance of the Target<T> class. + + The member that contains the target. + The site represented by the target. + + + + Returns an array of custom attributes of a specified type defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes of the specified type. + + + + Returns an array of custom attributes defined on the target. + + Whether to look up the hierarchy chain for inherited custom attributes. + An array of custom attributes. + + + + Returns a value indicating whether an attribute of the specified type is defined on the target. + + The type of attribute to search for. + Whether to look up the hierarchy chain for inherited custom attributes. + True if such an attribute is defined; otherwise false. + + + + Resolves a value for the target within the specified parent context. + + The parent context. + The resolved value. + + + + Gets the value(s) that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + A series of values that are available for injection. + + + + Gets the value that should be injected into the target. + + The service that the target is requesting. + The parent context in which the target is being injected. + The value that is to be injected. + + + + Reads whether the target represents an optional dependency. + + if it is optional; otherwise . + + + + Reads the resolution constraint from target. + + The resolution constraint. + + + + Gets the member that contains the target. + + + + + Gets or sets the site (property, parameter, etc.) represented by the target. + + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets the constraint defined on the target. + + + + + Gets a value indicating whether the target represents an optional dependency. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Initializes a new instance of the class. + + The method that defines the parameter. + The parameter that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Gets a value indicating whether the target has a default value. + + + + + Gets the default value for the target. + + If the item does not have a default value. + + + + Represents an injection target for a . + + + + + Initializes a new instance of the class. + + The property that this target represents. + + + + Gets the name of the target. + + + + + Gets the type of the target. + + + + + Describes the means by which a type should be activated. + + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Generates plans for how to activate instances. + + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Describes the means by which a type should be activated. + + + + + Initializes a new instance of the class. + + The type the plan describes. + + + + Adds the specified directive to the plan. + + The directive. + + + + Determines whether the plan contains one or more directives of the specified type. + + The type of directive. + True if the plan has one or more directives of the type; otherwise, false. + + + + Gets the first directive of the specified type from the plan. + + The type of directive. + The first directive, or if no matching directives exist. + + + + Gets all directives of the specified type that exist in the plan. + + The type of directive. + A series of directives of the specified type. + + + + Gets the type that the plan describes. + + + + + Gets the directives defined in the plan. + + + + + Generates plans for how to activate instances. + + + + + Initializes a new instance of the class. + + The strategies to execute during planning. + + + + Gets or creates an activation plan for the specified type. + + The type for which a plan should be created. + The type's activation plan. + + + + Creates an empty plan for the specified type. + + The type for which a plan should be created. + The created plan. + + + + Creates a new plan for the specified type. + This method requires an active reader lock! + + The type. + The newly created plan. + + + + Gets the strategies that contribute to the planning process. + + + + + Generates scores for constructors, to determine which is the best one to call during activation. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Determines whether members should be injected during activation. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Constructor selector that selects the constructor matching the one passed to the constructor. + + + + + Initializes a new instance of the class. + + The constructor info of the constructor that shall be selected. + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Scores constructors by either looking for the existence of an injection marker + attribute, or by counting the number of parameters. + + + + + Gets the score for the specified constructor. + + The injection context. + The constructor. + The constructor's score. + + + + Checkes whether a binding exists for a given target. + + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checkes whether a binding exists for a given target on the specified kernel. + + The kernel. + The context. + The target. + Whether a binding exists for the target in the given context. + + + + Checks whether any parameters exist for the geiven target.. + + The context. + The target. + Whether a parameter exists for the target in the given context. + + + + Determines whether members should be injected during activation by checking + if they are decorated with an injection marker attribute. + + + + + Returns a value indicating whether the specified member should be injected. + + The member in question. + True if the member should be injected; otherwise false. + + + + Selects members for injection. + + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets or sets the constructor scorer. + + + + + Gets the heuristics used to determine which members should be injected. + + + + + Selects members for injection. + + + + + Initializes a new instance of the class. + + The constructor scorer. + The injection heuristics. + + + + Selects the constructor to call on the specified type, by using the constructor scorer. + + The type. + The selected constructor, or if none were available. + + + + Selects properties that should be injected. + + The type. + A series of the selected properties. + + + + Selects methods that should be injected. + + The type. + A series of the selected methods. + + + + Gets the default binding flags. + + + + + Gets or sets the constructor scorer. + + + + + Gets the property injection heuristics. + + + + + Extension methods that enhance module loading. + + + + + Creates a new instance of the module and loads it into the kernel. + + The type of the module. + The kernel. + + + + Loads the module(s) into the kernel. + + The kernel. + The modules to load. + + + + Extensions that enhance resolution of services. + + + + + Gets an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The service to resolve. + The resolution root. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Tries to get an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Tries to get an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service, or if no implementation was available. + + + + Gets all available instances of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service using bindings registered with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + A series of instances of the service. + + + + Gets all instances of the specified service by using the bindings that match the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the bindings. + The parameters to pass to the request. + A series of instances of the service. + + + + Evaluates if an instance of the specified service can be resolved. + + The service to resolve. + The resolution root. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding with the specified name can be resolved. + + The service to resolve. + The resolution root. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Evaluates if an instance of the specified service by using the first binding that matches the specified constraint can be resolved. + + The service to resolve. + The resolution root. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service. + + The resolution root. + The service to resolve. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding with the specified name. + + The resolution root. + The service to resolve. + The name of the binding. + The parameters to pass to the request. + An instance of the service. + + + + Gets an instance of the specified service by using the first binding that matches the specified constraint. + + The resolution root. + The service to resolve. + The constraint to apply to the binding. + The parameters to pass to the request. + An instance of the service. + + + + Indicates that an error occured during activation of an instance. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The exception message. + + + + Initializes a new instance of the class. + + The exception message. + The inner exception. + + + + Allows to register kernel globally to perform some tasks on all kernels. + The registration is done by loading the GlobalKernelRegistrationModule to the kernel. + + + + + Performs an action on all registered kernels. + + The action. + + + + A service that requires initialization after it is activated. + + + + + Initializes the instance. Called during activation. + + + + + A super-factory that can create objects of all kinds, following hints provided by s. + + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets the attribute that indicates that a member should be injected. + + + + + Gets the interval at which the cache should be pruned. + + + + + Gets the default scope callback. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By defuault this is disabled and whenever a provider returns null an exception is thrown. + + true if null is allowed as injected value otherwise false. + + + + A service that is started when activated, and stopped when deactivated. + + + + + Starts this instance. Called during activation. + + + + + Stops this instance. Called during deactivation. + + + + + The base implementation of an . + + + + + Lock used when adding missing bindings. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The component container to use. + The configuration to use. + The modules to load into the kernel. + + + + Releases resources held by the object. + + + + + Unregisters all bindings for the specified service. + + The service to unbind. + + + + Registers the specified binding. + + The binding to add. + + + + Unregisters the specified binding. + + The binding to remove. + + + + Determines whether a module with the specified name has been loaded in the kernel. + + The name of the module. + True if the specified module has been loaded; otherwise, false. + + + + Gets the modules that have been loaded into the kernel. + + A series of loaded modules. + + + + Loads the module(s) into the kernel. + + The modules to load. + + + + Unloads the plugin with the specified name. + + The plugin's name. + + + + Injects the specified existing instance, without managing its lifecycle. + + The instance to inject. + The parameters to pass to the request. + + + + Deactivates and releases the specified instance if it is currently managed by Ninject. + + The instance to release. + if the instance was found and released; otherwise . + + + + Determines whether the specified request can be resolved. + + The request. + True if the request can be resolved; otherwise, false. + + + + Determines whether the specified request can be resolved. + + The request. + if set to true implicit bindings are ignored. + + True if the request can be resolved; otherwise, false. + + + + + Resolves instances for the specified request. The instances are not actually resolved + until a consumer iterates over the enumerator. + + The request to resolve. + An enumerator of instances that match the request. + + + + Creates a request for the specified service. + + The service that is being requested. + The constraint to apply to the bindings to determine if they match the request. + The parameters to pass to the resolution. + True if the request is optional; otherwise, false. + True if the request should return a unique result; otherwise, false. + The created request. + + + + Begins a new activation block, which can be used to deterministically dispose resolved instances. + + The new activation block. + + + + Gets the bindings registered for the specified service. + + The service in question. + A series of bindings that are registered for the service. + + + + Returns an IComparer that is used to determine resolution precedence. + + An IComparer that is used to determine resolution precedence. + + + + Returns a predicate that can determine if a given IBinding matches the request. + + The request/ + A predicate that can determine if a given IBinding matches the request. + + + + Adds components to the kernel during startup. + + + + + Attempts to handle a missing binding for a service. + + The service. + True if the missing binding can be handled; otherwise false. + + + + Attempts to handle a missing binding for a request. + + The request. + True if the missing binding can be handled; otherwise false. + + + + Returns a value indicating whether the specified service is self-bindable. + + The service. + if the type is self-bindable; otherwise . + + + + Creates a context for the specified request and binding. + + The request. + The binding. + The created context. + + + + Gets the kernel settings. + + + + + Gets the component container, which holds components that contribute to Ninject. + + + + + Contains configuration options for Ninject. + + + + + Gets the value for the specified key. + + The type of value to return. + The setting's key. + The value to return if no setting is available. + The value, or the default value if none was found. + + + + Sets the value for the specified key. + + The setting's key. + The setting's value. + + + + Gets or sets the attribute that indicates that a member should be injected. + + + + + Gets or sets the interval at which the GC should be polled. + + + + + Gets or sets the default scope callback. + + + + + Gets a value indicating whether Ninject should use reflection-based injection instead of + the (usually faster) lightweight code generation system. + + + + + Gets or sets a value indicating whether the activation cache is disabled. + If the activation cache is disabled less memory is used. But in some cases + instances are activated or deactivated multiple times. e.g. in the following scenario: + Bind{A}().ToSelf(); + Bind{IA}().ToMethod(ctx => kernel.Get{IA}(); + + + true if activation cache is disabled; otherwise, false. + + + + + Gets or sets a value indicating whether Null is a valid value for injection. + By default this is disabled and whenever a provider returns null an exception is thrown. + + + true if null is allowed as injected value otherwise false. + + + + + The standard implementation of a kernel. + + + + + Initializes a new instance of the class. + + The modules to load into the kernel. + + + + Initializes a new instance of the class. + + The configuration to use. + The modules to load into the kernel. + + + + Adds components to the kernel during startup. + + + + + Gets the kernel. + + The kernel. + + + diff --git a/packages/Selenium.WebDriver.3.0.1/Selenium.WebDriver.3.0.1.nupkg b/packages/Selenium.WebDriver.3.0.1/Selenium.WebDriver.3.0.1.nupkg new file mode 100644 index 0000000000000000000000000000000000000000..abbbc82ff6acf9d1e5f8627a5394e8f499b024d7 GIT binary patch literal 2233300 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⪚()f0<<#+NKH)*tQ9@&Jwl zLhP)C;OV-mAH`Hp+Z-SawUw&litOYyvA55HJ7H29napSR!(sn}loMGO8URqso9W>nl)ty}}1>`vNoAEULt zpK^+Gc?ZM+v4>=c^xNHt`2tse(`E%JW(2z0s$vguUmxTU4LQoh*>wEgkHcQNPVe>8 zM(OD7)`6pG)U0SW{iz<9mJc-H1IBy9chBm5 z@e$j@(&pRkNnM%B;rMj$Y3_&*)16m1L$880@Jw7F{yOQXG@p_B{EdRdxUIMP^y?OU z!-8*G@IQ^F{hHCVonV)=^{M%DqqqFr>N3ADxL;V@FAeUO7WXTI`<2E0+Tea|asOp- z|7CH%F}UAY+;0u;w-)z1gZrJuy=8E3S=`$O_qN6T-r#<3aqk%1I~Ml`gZqQU{n6n5 zXmNisxIbCk>jw9_#l2~8Z(7`c8r*+c+#3e>hShV|C-q#SdDqaqt7*o~o(vy;>Mw5m z{eqx3ZLWGNB3Jf>*abE`4?EYMv!N{CUC4(gt=i5^H_lqk9^Ch8LS1RcG9LjlJ&w0Hb=cUu$Y187L; zVw3GG*je5JMf{e09KR*!L+I#_lwo&N+@Jm`yLU{dRf%PoNF2R)T$r|dN0D%g(sg^s zQE6?bE&4Wz^pCfH*)}~~-`*}=vw!KLx<>Q%xBHj%cK<@*R1+9pAfLySU+5gV=^ban0~@ba8}3{avTmWMO?e}yNAp1 z0_T6dnU{_7zn(2Ud&O2Kl@^0@V=n;@U(KAy_9>l5#pdxr!nU%Ypi8%)PxZXcyIikl zn@sD1%TQyOB?$)<^!J9V7=rP!=4;(fC7juJ``tRb8MWE5JmPQW3C}DCw?wDlZ_T&7 zJ%#Ttv{U`+#1t+AVHWH8ETm{B&ms!llV!2gl;dysWu07m_*vY(np?o9q@R`tTNBk9 z@LaTJe{(AF8cWk#MtlJJ=Ng54-0UX)KI#~%V{oE;d;8BuU6YT-wx(EJD?*dLK~yxW zT&HT(wN$;jruDT}HEY}2Z)X2Fp>5T^kxQw^v|bQ>e}8;v5KVj?&|d-l5zyZNsRIc5 zJD{n6{sCwQK>q}EIG}$4f^X(E*g-_+1NT0lF9O2X52J?w;k9e@A|Sl|jJyL0!pqGl z0F(l>9UuqL$$(ry4*^O8`VF8AppJfmJV$AtJ`4HH)B#w@_5z!KUAI5yB+O}j3W$-6 zlaZM8VAe7EBw}%nnAN`^=*B$3v(yRc*mp5UXhRWzdSg(G5y4OM)<+cc?biLZzJLmR zuiQy_jyJnN_J{-D7QxD)fTID)Hg*QaW1FAA9?m#EX8kM}O??XA~2c(&^x!v^Ic?m;8q~`)qKll25A0 z*QMG#w*=;X*efn!Z-PaymVXP@!?$Cr?TPat8 znX@(;WHXD{?`ehaU1nLHs5nWNL@mmRzT0oM{qo^UjB4+S7?cm7_8h_pj3$l(1`-+7&ZVgt_ivR64xM+IL`IH9y|7 z@H8&jX*>i$gGWYZAa)~TS?fJ=@ z8`k7u;$5bIUu?Udxl*QNgKv;G;DF`RcBj|Er}6 zOv3fvgpHb}m8(BjaxcX3uIW=##@2~4{`Mhdv}ylCq_4qFe(3M@^t`%T`Xxf*iholn znB)+~sCyavuH%xWiq#`Hei>_#jqtB8)%Z#+-dWZdKXF;3e9&%8HBtvl4N3A|B|IK) z^YxpzXtp65TbuvFhIo_z4#L<||FS4*Snho3SC^$rx7DL|((=GY z_KKr(K~#8vncoX;VoI>%OS!v}*Bfss`P#LyS;tNHu9SD0nJsU8N^!0pK0@i4!_1PC z)SdKMLrK=6HvW#{Coq45qtbdeQSRXbWk!SrRIsztTjm7E))O3S2>La}(e)HZ*Hav4 zDd2}2AB8n-Dk;c;-P6Wr)f(#Ov9Zr8t_?5g$bvZ-@1yE*h~} zXYkFCJ<(Qov6vUS`a|Kd`()(ph4{O`ptxK3j4%Y)&IYCIIYZ(EE#B!(nxh#XS4}o* zCh}OD;j#4@9?J=jt;?_yuNNuhr?sBB=|QBkwL*K_6HptVLjd9P(oq%AXh5F@R0i}I zpbDTT0pY{Z(N6%40kj^_SU_(98V6_tpz(l49Zb*!KvMus1k?+t6VUE}x&R#uXcC|c z08Iw;Wk6E^Jq&0nmj-APK&e9rng(bRpiKcS02Bb)AJB9_rvd5)bSa?C0Nnv-b3i`@ zGy~9kfMx<3b0|Tx0Bs3qHun&qEdYH6&>TS50-6ix8-V5k`XQh#0sRWld_aZ62-*tJ zbU;1aazMR+J_V=`&=r6d0Qx4NtpU9OXd6H?4ku_Kpicl=1n77`i+QvFZOe55v>l*7 z0ooo=(-8#iz@q?YM?gCR+6mCnfOZCS7NA`KeF@O6-1mT%a9sd>0+4$oLA!C^1KJ(X z_JH=_z5=u-pjCkO;=Tv8H}^fDeE_`xXkV@=p#1=~eUhO4xvu~n!2AN}K;~FL{oHGS zmI68l&@w=u19T9ey8s=``~v6@Kz{~wD4^0&1RVxw6F`UaNCP?o(5`@v1at(TPx6=p zIttKrfQ|-qAE0A+RscE{&@TWT$J_+yc%A`A6SN%AW`Irrv@f6&0Sy2;3DAvzRsebq zPzdO+fK~#Ua1248;`#xKxOV|nd8Pn5nfnybDy{*bQvhvxEJ2?Jv^Str9kXA<{az(l z!|Tww@doWQ-iL(vm~1*zy@X;1SIeGcjxzu#@$LF7f752~bnUn64?A{*Z`X^HL==KA zy?T%cd&#|ak7`}Q>X2He56e$?;&bys3l1f;Psqd3Y7YwR3z`1W zlDWO&wCg)LwbHJ}I?Ve3b_SV1@RGv$%9gH~RgtCYNcP3x_$Evg8sYB$pvh z^4X3IIF~RIg==R%{!m@lNm>Y#GhhN;13^ z@k^O%p0=^!7l}6B9KPuI;dR)~3^?(-4EU0B^qKeRPJC8AXmEoTH)L=_7B^sUI!n!` zmuNjLtFDOmC1a>QgXh>$lD(wth9*!$qg{`)*YVe<;A1*t_Pl)1E;~-f$^%v$Ew!ZJ z*v;XiiL)Gj<9@aSYt=6yhubL2awWKd;C4A7gI+Q^_;M=ojtX@mJ*ktw!MLn$ethRR zyBRx&xgQ)K9?Dv#GjJxOma%^BoQ?|cTjAsRgUx>A9!~?f4##B90IJ2GboRp=3Dfl~ zwIRF-apBFVD=xoe67_Op_oGaUZ1I|9Q`aUxT7c|s;Ur&4$(zhvIj5~kOZvSLZS!$0 zkQp|c^%tE}8SRYOskWOTN%}x8@^_1lzaKk%s=nF2v#|(7Ox2xFMtT>g_78{a#AMRPA&6lf{`jK`iGseEquF27>NF~;u z&Y5`~S^mqz8-MM4QHu=|Z>vSC>%tRk7_X1FW+Ro(rchBa>`yxp zxoArp{wu!!EyOt??qXGT1GL)F$xO0|fET`peKEE=Ctr|QpBFcjQ{ z-a?RD>htHx6Ml8Gsx(GDjBkif6bIYg#vhRN6LhX4=Q2L~omc^$9RO|!icCA6{@{x^ z@0s%>&69g*qCH}wY2605X99&jbxtJ317%N}G*F4e4tFVS zJkTSS70_FB{q?$N*AsCMANQy*Iv@7=I`ut7do%KE z%5~S*=X^)|b-GFJ+C2r+$ToqCe(BTx@bXw*lNZXl8FPwBdJUBlDu;mQq>8{$cE za0BYFhbEtt7r z$8l`+0ZP9bx+W0eZ?qk=3ID1t{5u`C`CO>^GmF;`YOS4Tr&3j-@1A6Chs-F~%`0aB z84Mkq7-}QwsivMPQw*43B_KVNE%XxkRH?*=|e%VQB zeI?-i|CNb30JlzN4sb3f#03-MA{Xr{&94!O@p%&-U|f|pexGz6C&o3=d1&5at{bDd zj)i<%hFFfxB9mP9rWe~+B<0)n4eKpEm`=9gq(<{!+J3`GZC~-x+rEcR5+-DT9iz2+ zj9S@8=8Zf?zzrQ!KSn(73V!c?SW2VwS0puj8NaVXcZ;ssXw2OkiK)KjXy0e%9SgoU za*O3hbX)ZJirRI_<2tzE+mx8~BHhQ=F!uL#*t;3~P7RjxDfrRvRzT`Y?{eF*h4#&; z)bjMj@tT8gF5Q;kC&UbWdL#VQ+a1d?!&Smi?B;u;TxIxS4W;=i%K8Rmr>Xb*D=b%V z>8Hl^CY>`by(!lVe$wAgMMd!K)N7y^iY)a@zLuqa@FHaCgZu_2@sZT0z3`hUeGX~+ z;*watf#<);=aRv9s8};VUI_QHWz*lz08$Jc*kJ9_QT??#3*(kHz%8rMWAf~)?qSO> z?Nn~m71|Bgr(AQ#X8I2P8ogw#4yqq>>=l+%ZjZ+E(B*61L~aF-^YN2v5D@K}>5il- zq;31XC?Z5=Sce=`(;-PY@f;$e1tWJ%dc*H&3SI5 zwx9g5)*McVeiYs0;FdqA;S&>a3 zPe=Yv*ZEsApAUafX)I}$mKFihP_0B$*nc4`7=-3@xm0!Y7W9LdyOP9H)#u#^favmR zDw$NgP|}e?(RGQ>FaM~^Rfd>eSB!EGrOkLx(Em9`&nwRFQKx$J89`knUen^dvg^KO zz(y+v9c-ZI!^yn^vcj*c?qme7t3t!{IU(!GmMpl_MI6#L-N6lN0Z3a*IbFKhb$bvC zTKn8n|2V3dVxH@}qHDI1(_D7cJsQ(E+&JiNUMm^KM5A}mSTPN%1EP)Kne|s=ZKQ4N z=Am^nP!6wCA4rs22YnzzY+Oc_=a*+mqF{4Dva4Mg8$T|mIQq@%RVWtkr3Be86#f%i zqW;^%c=R!_J^iLgPm@U-i5Y2Q|9%W7Vufi)J^gooI>H>ssopQxg{E)j5E8QNpwPe_ zou6DG`x%}eyz`0Y2jH{p@cQ{dir%1mFH|;X_eAm&5XF3SSh_|eA0LMD0d7`&LRFuSqwDj*b>O4_ zyE<@8eH~!F8~*S39y?myGLu2xA3P(L_qAt?l=tK6^WIE45{cyhRv9|g7erDTM^4Kq z>!>T$ybq4rH-mW{`Jbqp*IgysGSA7KkX+snaaR*nv9#ovLAh*Re6F(Cra2b11lFq3 z)4zO*nnMiQnh?{l+MPy7pR&<7Sj3$lHEwQaO%2|U8`Q%fL2DD>pG3eirF+(w7w55Q zV|mq#e#*YHFHdO?W>9!w+|sbGc=Ey*7~wA6rrl|{2>4&^cx0YEi;H4#8} zg$c$n0Rf_N9=;aIGK<4siSq2P(98mi*j#h9t*W@mL=iwoSK$?%jCz_TmPfwRs*w$r zA`ZZ=RrBRuj)=}PuQv4==QRp;O#r)A!LAKpNIL01Z!Y|u$+2~cYailxFQx9XK?Ays z`8x93lT`Xq{nhZBe%{AQKME%?D+Q@Z`ceOm=|Kg3!dFe+ZyzGZ4E`l$Ek0YfXg*O& zLf6n*@>8B3w~)v|=`el9U=2m^R%iFunfm1Y`oMXE89lpiGm^qHF{#h)Hx|t5dzwml zVKrJ67gl3cabct&iJ4VBB^K(Gc&JmNp>Cj1=ju>6R1kt-h$d?>yq`75y?xUjUQL1U z1Z+4e@`t0+0FLUq(EMMN$91ayTo=@z>lN(!0Jd7eRtK;f6zm2wuzdjK=goD!xuzP{ zt0T_z4CD>u=-~LFLq`$t%_#j8q`cGP9Y$KwNAf@eUE|j2zcpUS$Ub8k>7~()&4;S; z#->O2GtFhBsP?jeR^N)F+H|Oo;wVy9``8nx###*3sY6xbs2Mu0I#ibqb#ffltx>Dv zsBs$ghd62*9aqcZ7-}nx+C7dc>U`Cqrs=rqP*XL-<#E*BI@BX^)Lt4@SQ10+t{EN~ zNA00Q)uBG6QETF;>4Bi)sEHai?#vi!GmTmhM{TWBcv&1Zpi$4pQGFUUU{yJvvk!YJ#q!b*PdKbyplUUWckf9i&6OA4e?+5%6-Vu_QK!XGJ8Opb$5Fdz)JJjD=9=NI z%VMZW8ugVps$DaDH;yW3R9)XYQ=<}R$54|sYIYnoMJHo<95q{qdNPihqfy@S7-}bt zx;T!S7vw9B+EXW^4)w|U!!bJ8T{Xl0b7H97bf`Mi0UEV5jyh1Io{FOm)~NEiG1S5! z@p06mpfiu74$-I=ad_QkE0IPs1cTkcm>{k=>R65HIzNUwPNR;Eqdu)sx5iP&2ZK}`b%G96hdNP*DqIjloupC6#!)Bh zzW0GR>J%NS>x(hesX>7Or6&Jj0cF6E0Axde3k9GU^4|f1o)F+g0CFKf;|c*7 z9|BAlfN>%J0uZ<%z~@%Pc-{p-cL?x^0E7u%6aL? z0M`J}9s=ABKxYW>BmntvtSbeeE1XjR(jmaUD`P=UiBq7!Bt?0Ybxr|g_^>hie{Y@h z$%f%ER!70wW5vo*R}pLDs4*5!V=TAESU8Qb+!|v|6-;wGR*gE%-9L`{WYeZkwwM`X zk@i16+a6;|J;pq2jCJY%#Y&7&bt|z?HuW51rZ~o=e~jhU81u_9CjDb9(#BXtjIqKT zWBoS9lJ%3#fVbDEYvRozShBtnM~$%t9%D*9#-2qmZ{GLfQRmHds9=u%?Kmo!qt~H= z*>=Yz|0A>QVAZ!g&M;W@{UVMER(+W-kGkrsLyfWO8)JF=|JMWm&#VVNtERwW7(yC6}R$!C#<1I#VY!Q%NgK{oDX~s2{|8_F4H>vdedrj|jK~~0D zz(mvXHj^~lC;M>WA!#N2{jzk9RW!aM08^8Ef8sXE)j@)~IJi63MRbB*;R~b-lJa0Z zXZc47_hcs}S<@*e14;FTS(NfKA9FI512mvx5clP3U%(k|h4hV7`13~$-#GJyw10u2 z-p#fO{=Ndt2?^|KsJzZFYugEgH#w>7r+G6#?oCN*o0vop_iveu*~ly>m5t1qNwSf- zRWf2Dle}Tu@Sg&kPhuN>d$K_JBU9OW@1EXeybav}I_EQS&SO{a6qT8+1J(LSp&_sa zluH%pqGD?Ng{_7`R~b`O`N=#`D!9FuPY1Wr1`DL*6}#C+79a|lG+pjmheLZ*+~Bq! z-B{hxpo@w6F4~~HsTkwc-x{L3LeQ;mU;`7ZSnSdz-Y~6wrd8;db?(QIIBA| zL3(DO_}{W?)@u&^%9Q7Yzmj=ScC3nCf0AArf7DcW#^LgR#mi&u|F!h*DCDyI4=}#!W2$?j$aO(ydF^@qgREkINBpDwN0;sdW7$?ibizSF=c5S|%>diE~qwFxM`g zjOSP!PT(DMiOXdpK>|2Z5`T*%W@M}xl0=|^L5WpFQqFERMD#n{)O;#Ll#@ic5YeZ> z>A#rhNf6~tHy_AcxFK)x1Nn3%;Z4&ZqcAE%`yBQ5^ zK9vEt0MP21ULTD$)I?l<@zbrelcq}_jTmXh^b*E(3*G}wqIjAsn}v9t4PGrRE#4nQ z^y23kB=sjmC)3!h#PK_%tkrGhjBbk?BW;qV?c$S2veMh?{{&^dHh{GG&xW$s?zV@R z6eLYS(L4p3qUjd>pGE4j0#Ie{koBcQ)|aCH^EmO(HF2jT?&MOaHeQNdgiGbqsNAAg z{vMJ$RMf@VbC?JOI=Mr}@qcEWT+^7?aOAlSsD#GjO_uk3gS2qOSrCwQ4YHEKs^Shv zS-5sWrwfk|FQj?UDHQNAfu@np98a&+iN@0~3}Ax%b6_87*(2y)3l^D^;~)h*+7A1z zU@t)l|Br};sp&esl)ufQr7^$7DlSxdF-ZC$A}#y^Sdj)AF&(oOhVHeCHLY=2eZL3O ze+{zVTOz(Ah5In^T_nCk#CN##Uo5`IW8c3G{{2||RvvB8{a#m&JGwkg?$XrJwI+%f zK21Cahz5wRd7*+l8iJ(Up9K<@ke`PkO`>}s7ER1zlUkN)SEm@e zepj`tmyO-G;&wHoQ2R4Z6do~ycTh~WJNb+n?xCU-W&sS@YB#1pf2?y#ywh+2oHJ!o(A#+>1fCS3Vw2eWDP%MMs%Zo zE%Wpn{2tH0@*)j;{FfS}{WZ2-d^+^YhW-G|%ha-IqVIi9{Ne6n>2C#Y=x|H&5wqx` zYR5?XawH2pLUgEL{5m-cxqG0O`XsnZ=>b=JI@z`t&vR|M#mH$XuKFkG(-khkuQ>$X z=fLTBA`w$6wx-Obyq9fxr)9o5^rQeyq6AE)szNeqaEEFNzh(SiD0vv#7Kw%1 ztX`(t53^W_v5VS|_uY(PpB31dgB`ffN9#pl`yGiZl9n-5$~C&Uh(yRK9|8F~Qr8;d zKyq2%PNf^l={7p2Sx#im5i@w?lUsxt&L`;<7ASKq2FX~~%NZfDqukXR9C@1|!VV*E zQIecxPZ#H`cd{2H99pK4ajoy@?9ul(K^v$_7V~5|H%Z63v%7>3o_OL?o?JmeZ8r0B)k3Ha#)4 z+T+pgT9V#d4bnJ`NQs*a;&zi9rCEJnmpa7}DsZRNNKb&b*pj=*a`nK=B)PNl)&|+X zGP!E=MZ*^|JRdUb2+J@X$goYyE@O93`?Kl!*hT21Y#vKRO93XECD)am=S)oKApfp0>Tsp54)+X@5!Bwn zIYCW67p5slwY)c+&-YM~&y7`N_-pUSD{@6w-AIJ$M)$Pm*dc}qSEqufkQhAoE|(c-uH2_ zw}gw`;!x>wDm(-vybl_rBE9IUyuDGhKg2>ife|6G($+O0A(K*FaOG$R_aKtR?F?lCjbaD!cM~)o^zd?g~_HCpmWA`lD zB`cFL(&vOe1*>qaE~t6CNp~J9f?cS6-%AF#& z?$r_L*R}nLX3-zwYHl3QtGk{7I#{Fa64PJG$V1E?u2KcA|7}$N>7LbVYK{C_utt7W z!CnnuuPfN=rnZ||=`2-tlAxnD57PYZ`tJphS6ry2Y8^tkizpAdEJpK$(}TOs(H zNoM(&3U^cxZX-cxJ&nq9FXV4}Yee|rmqFlNn~a@}ot&gMguTzm-&5r8sq*(U`Fm25 z&bSJpL8wgc$>L1#2edx>3l>xME@@eEZs_Y7;j3&;ZS-P z|I8tXS6aY@)Bjh4x(DYP&xqgqL;3Amw2P|LU9$UID!v=wzLVN+^{Yre&AYmX5lHm@ z-q(21Ay!adK_5=oaT>d;@b=QSw+Mcl3NA23%8jVDpzN%zX~qi1@vg+gf|(Bg+GZXQ zY%bN;W~fC*DbIsPF9l9fS4-RqGTz#M^VXGYlX<#V`T+G&yHdUBShNe;EeeG!0QC-F zidcD=(|M21W{1iM$*5zH_HH71Rk+SUo>sV`JMwN0VXHsA8n1W-#l07%vD~*xuI(Ic z&owIA&PcSKJo|}fa!k&Qquj3iX%xpYX*X&@CJ%;WvP)i;{(SLa(168XOxo1%dXkb93^W@8brGmDCrTK3NKtv`%`}yFI#S++vS|*XjeA#1@xCHFIHQ%e z?A^o=Q7*#6bVI+fakw>`o~26+{Yv<{Sf1V&sbWTXbun0$jSfC|Fon2E55Cn&*XW6q zcLk(Qso+OdWCFaKX#PiWcG3c-)JUU2DKFNpV&!^+geLy`GuHAyrcE%3!G2zmk}kW1^?cUh8M8&& zALDUL9vh%C!2Al{wONdwMtrbt^G)&nTzr2L-;SbS_Y~id_*OJ9{k7uvcJbXWzsh5% zAl?m0+JM65UU87t9K8-%1{rB}T-L~{oLz+)o$5Zg-^iIMsz<3%JrZ*)qUaj6rj^lF zy=wxNqTQaM9B9Cp>$`43VySX?8?Z5v6tfnw8k`y=&bu*5&m-F2gH7}jqIV7eDL18u zf6TVfgH@1m*C}|0DOjZ|kaLT}=YHu*f{?9gtTNKUDx<8HD`g(|S~K!DOSY$7HbL!X z$#_v~P6*4*MFb_*D5_n>2@B zg2QhxY1_#uE|d*~z^+|0O)T-!#YNtAkh&8IF32McQZ~ItMF)a4%fv->#VO?{gnzOt z5>;F@8`B0i={k#wi*n42c@f)`mlUKGXTydKGW9g}sI*DbU4>lbFY7mK&}%F#SpO1| zyUiI94chxEw>~YS$xg_A#6*$S*T~jL=#(KOd&^lwiAXJ)gKkK8$*O^b<(Vy~JeBrs zleNJ}4%H2!qSPD{_ITaI!mOJ}kySKna7w%&5)nD7VsVpF{%%4QfNfLlu~@tj9(JrW z94&lD3f~4F7JkCDL&CS?!l&^j=U8(;7BY_5YsNeudSmZVe_6;@aPVt#X!}y{daCWT zUn4}HsgPOh;y_;c(ai0_ryh4KdlBuRSY@@IvW(;8m|!h?9zErybL6Wr%hn-jmy&67 z_DEcZz`YR0y%69!1@4bw+#ds6S2?skPf*YOcbX3(7xI)F1EBFn$5<&Y~wvQAVf?!QriCPnU^$opE0&5l+OS3aFUBnAG-vzH7G_SiQuNLrnJH%@NJMgM9uj2k{ zs&@zhz}e|v-D>u>T17eV||;#LBXJdd_%M_&*k9xh!vq ziK3VTOv#Y5aMMmO$V=`Xa_83Gs$OpO{w5|5ewzuc(a#uAhG-Y=TYzs(*nYu;Ny$0; zQOAW-mW}LggqN*)w}MtXDZfZ#3)~L5r9#B2dQ||4Kz6?j(e26hq~1&!zK8Vyur?PJ zL3DVA+q-HfQbsA1GOHeJpfl!DdbLx;pAP)##Gfww>BgUN_|t zAz+#Urq|e=G9bO-FmAON8t?~!-9#t-?E;`1f5zcY5B~HLhIqJ%HFlR`A_}EYTrCE7 zAd($$cH&PL`Mc@wIQrW|e~C|$`6Soa-HH!X=|niYqeJ}Z>=b`QCS1F_Tl^Wb-L!;s2*CsZ=%e8+%ILuBH2`76oewV66()8o=7%>=!UNO#gZ61a0oe+ZBC#KwnU> zf~D4$Lq%%@U6G>1|3vD5NaYWt-z*F_^A8eic2au8@c#rNzf1}>w9gHH-9GnyA>p&p zFOm(*Eusa|WbwXY);Iw|r#b~#CR7y*+Yj(`j(KRf(#L4h;3$&xF>*SUtcanND5MUB zPNy6*{*8Q2Hj71X78N7*e7$YhX-qadIs$k{2;SKlz&kY@cObS6-2S^srAN-K%lnW4 zWz!N7{)5Nv$c}76foXpN>M0#I^a-)=Mw9OLOa(@%7~=gmz;tOrY0}WJV#xy>3%3eB z2<9oR(+3SPLo~WHPtlgKCR|{0Tg9vsCqQ`QJ0;$1}}^6AmRRu_%3K*P44T& zcboXWE509#50Cm(wllFy_=ezI*_E8Qx>CWrilK`g*+zc-*{ObBbOT*pr>QK)THZfF zpGDA60RJ68@d`}@3h`F{7(l7ow^jHt;(%-_uE6}DK>?S15r?j9{*8|`0a%GY{#GDe z6>tnGI%j~YYA(4HsTpu>Pmvmd-v*L>1W9VitPqZ@ujYZ9Nx1DoIJo^Ba7DzL3Moxf zh=zEc9YEhSVkw+}6gC0{^UkJk!AaYxege+>$oVGZ^(}JZHc#bda{d+0YqiXlK;1^# zEDLmf`~uk2;_-HglJnbvT4-#n7;vGevUNa4sw{pPPweKTr zfh2hXQ5>{&d*iXcIM^FZF9uq)yK8_cH$XgY(qB(vdR1;*V$w**wp$v(>VXcoVD4Rv z%3x6;Wr1#XZyj=DK#=1&8N)ZLZ;Rx+cAX5BNql?mr#7hefqEDIAmg_LlNmzB%P^O; zXraWpxFQ3^ju{k3>vfUCQ)=X)DIMF>#7VZQ=7j4U=+H9h9>{5T54|sDbxScBA%PyE ziIlh-2+J(C3yHWKup0=9VH_2M)ioGQ{Q5$LVUys>tk+P=dKGSqld%yk-C~}w9bAW) z-pdFgFeZ{<`AH(c0i2?pX!a=QCc1k^bPJxDjq%*Hcq2TUL-`B4(<8YrXkr~)-YlkC zUN!}cZf>Lknr^e6W*mlwbU@QH0!^af+iQxY&HVT=B6A| zCC#J}XeOI-7?txc=&EdEOC9zt5I|nCBb73zA{E-jnjk|OX*sFO8|S+v_%?<6c;;PE zyvw8Vp0Y9CTY-0TJ@46y_ta5&Pum#pPl2~v&wEhuo<1t?tvAMd26(sB^WItUo;fP- zZ8pYxTkviTc%!_x8=<^sfvzp66HP`vjcdp$j-;uKz^4y<3IR?32s8trDF!sNN1&Ml znhvHp#EM``u56T5^_ENotDCHGUnHExvt2s8v^>$Li+SFe?zIIT8k-+KxI*a((;Wr19uakYUKycq$S`tMGCd ztu*U*$}re;=jN)z094ya$K$MT-v?nFe=`}TiZJO&7=UU!>oBSH?YkjN%I}h4Ftz3( zL5BgTRxnhU^!oNB-G24EWtfW)CL0L@P;D0-PiB4l?g*3d$H_2y;T41dsJ5#PlU?7w z2f}3i9vMb2XJA4lVq3^5T+Oj15j;uouB6Q?fW52v+v0;DTL{W zgaN3whYsVeZ{HtbTz^X$Cc3^30s>T_xh z3Ub~nh6Wm5)Yh2V3R7EO)q4f2+Fm$hmU@$x_p#jj+Mkzc7OB{pT{Lk99Df$b`LxB; z>4f(e4%8okmyKmsA65;PcSN&ZYCm|rUZIJxt6TG(VGea-Q?O6(y^-JY`x$Vt>AjSU z>rd{D8O4AA4}-RRmZIre9nb`59mi}L#~mW2yr7$BtJN>7))SpM)CKD8iF!M;>aEsE zNBXL##r*e=<)3GI*i$oW_h2!)2jyD8-XPew0~qXzyvv7z(j?53j?nMin;ckSTXPQHB__sj@1R^^oHJtqsCBGSTrNRH0x^D;VT!K5xeI@Ou zJIvJyjZ87y%X2?vv1JVK+va|z8aXqH+e{4s072L7jb^?xnQE6ZUn3Wr%B;5mk4U@WRk0-k61tT?=p;g}lrDmc>A z#PBc0)7s4N6=68^m!KVToK5dIVxHEPX_886`>?JXRd&lEwW%z|*IMUk2 z@N>g?xJee@^9xg_ds6DJB={1LX)LB!HY)g-;M`B{J)6lZRjj=1;-U;B7X)Dva5%>b#3!8Sj z1cA$1X_j2nB)qEl%~&>%@w)w{=uNbfXg?QYYjp^D_^e1lA035w2^{#_{z<$5T7@P~ z+BdhrnQdwC_Q#oe_0AjXhv-@&tM?l7h6STDNS8OOS#CM=m5_vY0BWM8Za{5Lus<9)e7p1U};gP>^wOxddbX{59p>itO3SdBA; zOz84yhBPHCb(fI$cA>ls4MaKwE;SBdE>l4tYln{xf?KCpJKA*VR75^_)0jEr-S(-g zEWT^SNz?o0gL3?_LUNGmTd{2SV~^Wfd!Vwu#9>cQemFgPUr zNh01QM?=%1wp7{PS6l4D9Y4S*SLBAq?hmhvA zmqc?;b8qhw;iTMDFzu`@LUpFR$ODbZmHnw$kRvO&#OEJkqEfce!Fk@X)?TKVry3Lf zXGD0)Z7xlD<=`p*P*d4mo6N=9HSHF)H?wPyK8tPOg=Ih9=n`#kIm!OAxa`?5p6wr| zq@Jrln=HjrzXCO%3nuM<8YG7+y4FPHR4xjlyozL-^v7j!s}Hl3w2<%-IF;Nr2Pcg9* zv*x6Y^0AGO`Ns0cjSiZB8Iz2sKT>s}(YRRreo4qMxrAhB_e1wH5tLnB#kfpYjH82o zu8TS+J6s!%i5G0gV3(l|;U=>=J=+_`kQ$~cHO_o3*!P=iEQK)~>d%j*0bT~5hr`bx zwyddmpdcOpII4>Mbdu{W6LI97bnSSP3+|a!($1v()~e+Dh0+EL{V4kT&gURB~uJw(pzr zoiL28I6%JKR`*14pRi-mE|3R0v=d`rSZ83e{Oyj>;H0X88=Pw^stn3&X9doD;G7yb zZS9OCzeu-ugVHQ>$>&o3=`^Nac9T(e54!fWEywg-gMf8?&9v&jMA+IHSj1vZ0^N(N zwVs5&&TS_AD(a}c@*t5_R^?v+9n^r*88-=7uF~BBg&{N^AKJ0sLdOC%SasvH2>{#Ltjvgj~wtS_@=niM(88k_R4cpG#o7Nx{ng?PP- zZPmZ=?5i#B_{$CI5~c}u`xURbU&8j)gRt0>uoAD z4YerS;iS>uWm`hp^4(?1$RZf3a=4pG;Q~vcHNy!`yP2ELM7&v74A7RF^;couwO3YI zLnV%Grns;*<7QmEmHsOk%cP+2TXSx%kY3~Fif)SfA>pK$QJ-k;aey&+IgdTq2f%pq zEm00@w~02lKE6U`75yb>LxrrJE95IU!A+&VLUur3q8mO!vS$i{YW5a&*_~~ecw!-D z7qhf8mo6^Mr&A)m4>|H?+Omm3F+a{HA%!GqeP8{rT}Ll=Tii!KZG9K27Ze;epVFkQIo6g6pFxRdYdDdM9De$R+Suw zu}<~QD5J?bBBy!}P{TkGi!B4aQj8O7u5D6nQC0=WYERIBtZq{7;yV85t!io?s^ipl z59dCfd(-4?sy8hM{Zz@w;SOoMpMv?~DOtzA%#NrXF@P#lF4_T2x=nW}aE3Y{$Nw_I zg!`YV0rAu*af)p?%P83f=rU8PXQ|+`g5a|v!DZ;a={l*Y7Ry`ND6cvXv29Pm>Z0me6e+H}aGd{m*h!UXMZwXhHnza8~qMeOQn@ z0p91JyR94^;@!o$L(X=iNb&!c+Ulebf8|J=INd?k_^IsdWNel;>t zshj_F8$S@VPoaKM(-kw*^Qa3h_+LOBafeb>$de594SMF`hFdYuXA&jUy_&IWC#pSYQNNLhNc|4dY8zV!)^Afk^J7cW`)i~QfF0wc48dw9r9~-BmWAM|r>v0jz z(6E{abet9Os{!$=w?~^Gr*Gx;m{5DAs>FPYfYpEM z)(HK_2L$f#R4?@AL&h$B%Ksu-rd@Q3i~P@{bF`h}LVu}nM$&}%CVTMQ`t!hY)rQ_BrIQ)z!Yx<29H7A&5%`L z6~z~I6t>fvXi0b%nR3omplc2SvJwZklvkNJZ^MQS;l!!2XJ<QEju=9Ga=lHf9EQ zYqn9aZ6xe?v$jgaGdzRV2?%Nyy?bqWp5J1?E=9M}D$PRuS&Dr8zIx@s4Z8O?rfNotw!Bc(O>gqTPg8Q{7qJVGFz# z;@wV5N=q#JoKQQ*TKg_BA8&N@7&pQY7CRl8wTY)AqHW$En}nq3G8eA|=@vIlw%YRR zwrrp~SrAfdB30VT7h=k^4`8<`#WJHyfkJAcagf;TLaW2AODu6hVoSj<#F6su6UuGHj{Q39sBh zgy@cG;BC8J2x@xL!06lM;M}#v@V|^2WKW{S^<*of#?9{OO~zCaZXD=_&>BE|DXlC7 zxR7Pwq+CmbcNumcBQ#WSB5!zo#JgMo=uhnm-etbhR2BP1Rk3fBi+S1*fMM{pt5r)b z`WK;vhzdPr*|u27qwi^3Z~s`xyLPo8Uk)gtybSspF^o)^M21`@D~2iCO|_&cuXH7; z`lynjo3e<6WL!G|$C#)gDgP_9IU6*Vxd+1VDd*DmzbdeFjo0C)A-wBMdWj>AwzC86 z)3ZS~2QqBnUKjsxPXb2|TR3CQmrifia|6@A9{t{f(GF+H6dZTvxhK)1X}LP-PPLLV z_{|X*jos3z+bh#;aJy(nURzBG$gYECr&z8Xb!UA|PN|A`%boQVQPLfztD~cAXpJ*E zwlR892SqDA+CmY*z)_HGu7=V7poB9&Ccnou^Vg9>g8Q7K63I zc{@q?ZZPHD>jb~!19i{gL1v)Be~QBIu<7Ac^>@V6lRPL{L{;9UR-_w%oq3jLgVcmaPB4y>VnXX~}~0)y|8dIuZKb246S zSjZl7FJkwuaQ{UFY&H|L^B#&zl*7TQ91af3W}$*DwDfy4l%}G$j>p+QGM^QK=5SK! z@m>;;VcbhK+vysr*~T^;Y5x(&4%?DkK&>ww;j-8k@)H&PH7r24=c&fuo5lEinE*_- z%povhkC++GnH|C)CjVA+jAD+V5j4;0H#-KfS73IE344)k+TjdgmPkkK9-2`5w_#YM z!zIVR-6Z{W+k4T5835WUem&H4INAV!5!z?X8xy9f`~P{enP<@8`VH*rejSC6%Q*=e z(?kJqz6g#$?57DlkXwd5+uRk|5t4AT58B+Oe~u#t-KoT4o+32;a|M(%mQ4RV<&-Tv z6u&?N)=;NZx`*$g-oco0;(M zM80s`lwbw-gyp@0T_RSEx4n1O+U!izyNiaRV*-UYIQ?&Mw@mpyn@##jbEtj+CEJ@y9Rux_2LIb?4qlanw1q^euYCti@fca(XIP65#FeQt za@^hyH_ZewOHhW;qP}ZNU74L_nU9v_$+0B!y=?`#8zb8HI4A1&|Lu9{PyAN22rpLS!ZTpGxQ#F!`4LX%UJ@tPy0_=W* zK|kbAg2ygYZwIASUZTiY^pmw|&cVkN#WF8!9skE7ctP|P4*6~EXBXoKxN6z{PtaRb z4mIexfS+PV$Z4^>2ZW=A6HHNvnbW$1Kx277!@1CbY|SFU4xAQObJ*IaAAg-_vN~8V zvwlznn|d9;C1$QKoT}dvE0*14nfst4jMILj-V*bE4k1kQ9>R1BMN04X{7B&DLmo@^ z!}8x;G9T(1cHb<@=-p!UPt1XRV~eg~SKn7XN`iZk;Lx_MENX#=R^jx`CaKj0-tilw z2X+|dzvW<&Pfeq`I!bTSGAlIGlR?#96X~dlG3r<~Mjfl?4}9--KatPU`q~||2r`GC zw?)mhhF`!>V)#$^(Y*dG=P}1AUdP3F?a#cvCwaZjyxwG9Z;#09c*X1ZU_3oR!A=NZ zCo0&9u{aOlIDaDJ{D9;97svTw5a*7`z9h{m*C)#2k16K`Djg>&{wKxwAISWFDf!zD z@lQF#KjVy)r;`=0lViLNVqU+MyxN#ofq8Y*^V+rgdr{gZ{iRneX)ZE!n&N+&|&sP5ZwAU0i>A0xRx7fkTa4#(#9SA$#asnfOp;`*-c6L|46rUlX*O?KCQ1_q zy4kV)fZU>7I>0IrrOA9VKVO+bGh1Y@dhs{0w^UbuM~FV08M2DiciG2SY{zix8}LjZ z3%oXpzzeh;^^)S=e*52C;ACw5D28d}}wW`zGGbP0^!B_M+Bws&5{ondT|oxNj*ra>TZ1 zwyF)WGVvoQ)ojYm`j28e$&w8vDD%28?nW0ab3EF>3Q;lR&~jQ^TUtk!TC0*;o7)zTHAU62_84Z5Dg|wvg7%c#9wdR}7Hff_;X+r93M>GL zRFwx07-1yaSdFy?sQvFQ(&swy_D?cEj{66{PB|{L6h_W*LFKsU77N?&8!FHu=dHu- z2uZgy&DY2iZYP%~+G|kAosmLjAC!wWMH-(rXfyqD82M?Ob4pXk%A*#b{()m92xYk~U!R062d0l$xJ#u`l{kDd4FH|3(p-$UnL~E9 z<58L3cn4Ox*}!9e#ZU8|mY3kssNaj6s;%NJiVw*Br zDfv-}5txo2U=~{r)+j%G0@q2?r%7usgX#UVNQblmM{StKr^X{P>Tz2vZ=4~IdD3)2 zuw30&XDijiL<#TLrqY&8&{f4S)yV0sm)YD68#a*LF}t*wmEEdm9;6Bm-C>b#B9`sa z@e+NqMq|xWQ0UXxE_(GsUF>`o5=xUQk38v)-Vp5RMrHc1kz|^6N{0>JsmHMB6#er0 zVRVFfUL)ml3zkb|uMr#jVUp@FNkzTYW#9gfd#ehb+H^#u?R80$o6#|#Ba5r9fZks( zD)l3EGE9*@(KW%m)55|E1?HqEeR(@9q3&ROCv19<4SP$=U4_;JJ=B6ni&GAdV&6Ay zN*dmn2Wt3 znHE6#v_q?(^a!2vR)bsB*I7yipIFvTqke>$SN?+;L0$dn*btrSkSs=^V`KEZO##~h z*#EE+-WIgl>6YgT-w?7Zu4>1Aq+PIXh69gw{)RSIadO;ZdXHmcHSHw)|Hc-z06c;1 z&{yd3v&4rBA#YAZ!&gopoR)#5S6Q`@G+S9zop|Ov=1?_e3H}!Ex+tYOQD7Qx-%H{JLKZ|b<&nn zVM%CHH^fP*8i~#stT5~|vp!zHuiKoF#OzsSmIyN|$ajCzWqBXXGo~$I*_cMnn0}L% z(^4girCLry!wNPmVcpXU#_mFTKO|X9N0An&NHezo6lEM5;g0`bl(-wm7O;OG)<2jaq_Zu)*dFfL zipSY89zSCqe~~=4Vjj~*;;~%uSRUem(dj`)*-c3p(dXT?J;@GwGQQMYuD+U%*d~Gg z3f^;k2t0VZw)T7IHkg*TBf3=YX{?9;K>Y#^vgCEryGQ}ce+FkQTl2V+p46HYEdp9D zX}fxg=(L?e!haSTAiXrTk(YH@2P8(~J%=d}n|goV#63ki0=_hS;WK_&h{iH1!?{N3 zaI(H_z*^|%ujRX*s=qm2?Pst2POzVS4hyk+dWK#G{xyxi=LsO)2r#`vnlO5R$`|wO zDZ}ScFN?oc!hZpoLS@WU*L+7mqDI7Ln)(Jk4p8h`lJ648_t9p~H1NDm1LDPU`EiQ( z+!5o=Bi?fUybj09`&+TNMP0f~)uqdVKId`;yF7qhpuAwW@1Z2lek71-nM~jalQY2E~_~|Bm0)&EMP8 zp`WVo4PRi94$WtpmGyA1CY;(7{_sl1!=A=7u&Ns0phDjmr*-F^5i^>t{VeYjV{PX7&bYNQ2Z`)^_<>+-ir8v-8@}tP)^xvX5 z(4Ds!-rM0wg#R5(MPKEqsIk6qj-HCDF#z#w*3a`!j6b;Pw2tCIr`Si&43N|RtB%L^ z-<8oM{Ud_Ryf#v1R2&oglunjOk9YnF`vb4a8O}DC+N`%hu6zsYHcD;gKAHY^C*y>P!1bvm4S)c0!>fK&yL_W#-g6%(I!&DdD zgd|&O4DntU(_F8H9>gZKN^c3fq4(&0mfg@{^gizdy0AlEQ}KVzQu_MxtqX4{EwkQ3 zCv}4*btf|h=I5`7v~{oI>m3DeKK5!_8mdQrS57p%iQ>;1yGV+1q!Mm-SS!VfprLv@ zXrRx};LZ?9SAu`N%?vtqL7e{kBKGmGS%xu}OfSAgg1mZH@QWnFGDw%eWC z%RBsDu#o7Dw7`czYX1!(-o%|berkS3bmnWQ9^!A&|1Vs@nZa1i8}$}DZtqar13$W~ zk>NlLDHMFXd=WaI<6B6k zx9DojZp;5O?xDOG0{k9;r$c~00`R900M_IDXF`B=0KA~?h|b_>b^AD1k&#ilp_>CY z+o_AtG=^x{;GWkQr)de%uwgu}B~G(hh-NdU*(^@uhG<--apN@Q5Dgo@^U86W_7F`w z)3nEF3LzRcuIClvH2Dw>8zJUlP#kOk(aXit zQ4G-(nWh-0Nrhr=J08Z+EdnHX{T~L4ILbEt58UCON;-b;+6GE z)IS}6Ylw;sC3>y#G&Y53*pQ>w6sK`QG!D}^ahi@0O$XC-#A(tY8a8n0rQ7rkNV6lVq@!>l``Bf@`Qw zz8&Dn=}Eg@I*xaeK^)|^ymyk(IQ|;&AgA}&7>{>DJlHU-r{1SpA!!o+djXO3C@K}t z8$mqeB+Ij*yu2CU$?3frOGh#!uO!PW8JDRYqOqCAj>+`(ARe}B`#Q&SxWvB};Nc`2 zBL9-@sb^Jz4l^%ThndTNEa<9tiAf!uC@lX8y!UGFPvLz~dmn)JN$vd^yf16-gYbT+ zy+4Py=LXYeuP2KBAVg*;VyU&V$&bH=H@cwrF5Y82q1Jux(wOzejc2Ph2F4D8TVBG1H*pCOzzf9wqzy%%;9SWchfNc9r{a=eJExF>rJTMD;ooc!%*u(2rh4lKg^RB z=ce=2qnP)Ejo{r}{;thYPWA>R8YTmMkD24r;!lNYcVNT*bI_T~c6#mle*#na5 z7vZ3jCGeLV^j;m5?>5{^LFY>2N|WX-Lq%D5pa@Z##tfE&t}y(40WW0ejgQEp8GXixfbBME$!r{PG@GdT#lshnG4xz5h#_qe_GvjW%XErvx z)l|%!L}8bqQT5o1t~i7k6wA7vKta|PGPES0a)VBg(n2^yY9XA(ul5v&?*q2Du(_e~ z5k|z0g);2%T=0*wXnvqYGoLaEf9aSxs2z6JDNSMBVywGSZ|QX`dOfLw`7c8wLL79! z+ZhF_)GnnMRoOtFkkVxpRgw;sP2h(*F?&#Ae#nWL&FL4h%;2yx*yeS?TEfASDws@% zsIThX6zI#PAnbBEQBlGf=~qg?qRb_vLql>B(y1Z&f<0#sDv8W&NU`9|>8EOv znT^yJQgfi#n-X5EMhodVxMG|ZUf4QG*i?VSpA`P27amwFCkh9K`V5=aw~a`F{dkK1$XBMUd_#V7JpDeDoHg+hMNAlSz4z5hC5EH;9r{6_JJG& zEvNTC;-NSMdxz*2$EWBl^?kW}*vB_uqBIkj=0i!d{YW$unZ|UPW~VUCY1P$ttAjT$ zu#-(GJ+1oUs5q?Gu{XRKjg@o-D`R`2;Y}%T0^iYbUCRs$tL8&Y|2@HT}6vM{Cpu{TwyfErnCGnaZwokX0fp9IqWg~OX_c=$V}=ak>_BiA!F12Le{Z( zTfs^AA3$4%HS6m4l~Yo;Bx_8Zs`iyFsxw*d z(*`ctmH^-Qwf(bG>cv(z4Fx|v(cmRS zaeGOWIYWb&P_@Lu`+eyBKuuK5O>PBUXX7akyTW`$iZ&T7cdVP!)SYN2Xf=Vhg0i?p^ zqm?06N$Fv!`rM$VGD_7|tlqYdI}z z>=VVEjmOllSb2ebR@0&Y)V>3Zwq6k z6>Wi@(~PHepSrZ7l`v_L)~^cc<0EO^cT>_jdfOQ*t!O*+l4(4x`;M5_6PQ+~6+62p zZ+u=p`n)YXFK>&^%kjQbYNVNWtXxlx$SS!hvKoC(JC>|4r={mhdM&z{H zrpRgjCz4YeGQaZ(a@wsviwzm@qn;zwhlvP`O zS>XZENP*{~1zsK_0l}H-N)c#Py*!_em*vLtGE$YRbp`TVa)OAnf27RTx&tbDAX?jv z`>CM5B+`%VH&Q?LbiB_UHLbB8YQOOQ24x`V+=2|yd)11Ha?z!!V!4p7gXo-a&`90A zyk6FSh{^iGjmbJSnkc#cqS9Gl)zcM1r{YR4JA7Zi`JuNX=?jM$AYBVWP z0>e_$k9&vrESC%SwWGJQXX1V1M&uRk8(T-MhuZ{=j$Q?q^)NyD3}3A;xBrTjoB6}B z)8Spx6t<6(G>#DN>qq8W{15nY88q&yZ=@KgQFS@cp82x`tXt zJ;6EG*HBOBND6j%$LVotqCEVPytaig!*0>n!0`VXgsJZSLwPJ?RrgZP+MYRj`qreE z4Qzi8;my_`6*=k-!Z@RCI-eEIFuk2b5N}UiK9+VLVy^wNzHPG)n)jFKfjYFI^F<@P z1?N`xW<-rW&BVo?FE!~G0HJ~cT^f3gz~GZv=!-xn0N0Fhr614i;K>;n@5XZ#i^PX( ztUnYVuFL*bd=HE7b@9PmenW#{{6qZWiO)vy?J2&w(k%JG;)ALU9_Kn&d}rcmH}PGG zE5YLXhWIWPpD(`31JEDw*5mAIPr7#ReFQg|cQCz#$mq)X3{Sz`$nYk(_honn?h6^- z2=_h=Ps6=8!*g)&#c&($FEKnXX#jWNUcvAz+%p-TOiA;&!rcbJ}aghE6mtcl74CBxZor*j zcr)BK!yDl4WBA8N(b){|Kz%a39-#MQ^fOpuW}n_s#b z;3r+C-KR3-jBys7Gq#??^6E9c{Zph*nKmX#xmkQOkaYW{1x$-n_bpP&_ZEc8^mx;v z?aSfc;w(ME?k8FCd1JKn_-yPd(CzdP4{ppmvBbuORReun~tzu?dF^B7M z$vcY2Gyi#q%E>bB6lHRs;5Ba5L2UnG+-kenv)b9WGO+G5@absmI7G{WT|nb#?`6im@bvFM2r_q za;wwDajVlEJ*(55y{pq*-K*2xB1C$e2$Aj)A=162rq$_Ey5x$#nNsuW^m44WyNLsI zh6=r_-9)il{OJ$@-9)FLcN1MAsGC@h#YPvC;^_}TngnT*NRyp{sheE>hkytVMG7Jt zL^cuGogz-xUj9rFspCQzE~Mc?94_SHl0aN%`Lh8xJclK6=%$K-DAgf|Qk@`5Eq^ZH zmUe|0L}Jq*N`oj(MCmROM|%15)EH3C3rz17hc2(YK#gU19k-MDqP#JOv{*Ca7?gLv zY0-c&j=cu_=-zumehhrQA^$}&`dKmh?Lz+Tg&)I0DaQc#&yM*q;Fi+t7xh_1MPV^E zl$scFrfFGi-gr@W$x=y)pN}gwhv_j`lw5{jj)k81;S|43vcCOltc@&hX-Z{Z>obiP zbiYKqk?Jq%dXTA1bKBl|DcO!P1=dr+8v9WZrb*0sFfI2cSWw&PlaJahfgH&)xpfPi z*+OliMb`Tr$J-36rp@tZ68=m^gS3`FlBB3(ErAgG=vlvDhbzCC>^Tj*Ym`oVTZmwb zJP#bUq}8@u+qlLamSH@B{E%fYWo({x`x4TmxWrL<+sh);-HUcXr;=~riP}@r{VDPN z$mH*U28KP0cSwYPFY#R@zRJC(zHma%h|qpU!dn8NB^VCv!UVxBf*&VxjJnhhjm!i) z3zYeDl^hZ*#8My!Y~N;E1ZVA2!rLxjwOzn!R=^6*K7K99`z+FB1^efsR1$&DD>KXg zG&@ngSbgRbfx9)4b`#zdVjU>Tv?dcFkKK}VZEq`%9u22&kfMjP)k*N#MS)_5ldPiR z+@dv2@5v{EgNxR5i{qxfslm+w=L zDp&+<%`vt$@8a(d$%14X$f&o< zB8e>0hS`0|(-#lp9z|zg+{zir>on7Cbx5nMlC$z+C#B8z{y9MmV5;U3r8k zcOgs9snQ+;uozUiTL6R#DWOGwE_8`^j z$~Of#iRM2GxjI+o5`fL)fJz+D7XoZ*H}~Wifz;U zTaoiifvi_3Stpno%X;sP$r__cYdSQvv}R1$Xjih%N?B)>tg}ki(kEq|RkF^8WsT-a zvfhVLQr1}|Yf^^CYwinal1K6szC{t=Arar9+DDfVtQ=p*r%VIAC1)SBTD(xUz zOT4h>i(${KAnFBSr{_C{sT-S1_5T6^2}IsBvyH z<7AQO|HfVmnPpF0d{SZi9dt~6$YCNBt9MYAHp}TsnD2|lFug%!TTDaSJpRdiSsBq~ z9XVY^lf#}NOdPg}YB;NbpDM&M08l`$zkI%M!^p`OVGcL+RlYC&SfdGn<`Q%pcWe^6 zTq>W?v*_M{k@C;uHYT-F8K> zU7P{{x|tr09Q{8B96PU0T}aGV$&`SK^6Yq&0MMoUXh2Ld={~;#)1e%{vb+h2sGfH% z?1G{W@TBePYhlH-Ib`=VX<+pIC|b`8VRl)A%%W%}1h9{y_0tQcH871xfwt)HV7CS^ z2a7XwW{NCe(dC65t>8_s^K{>sp#84(v=)=AFuBI;lkY5if%fYxv5X7$l#Z7PmkfhM zm+3CE&Xl}d709SeZ}xd}uqIr=iI{A*S;`IBU{o;D5!r;}Pjg$v*G#K?7G*xA%`fU{7Xv_h5Sg$nZ4x8#Jy!)DMb<1+i_CEvx;P_Z z3ia8|k@lz<2VKrwD>z4^&41BX(q=z?Gx9ere{K2e$ls*=?UcV8WcV%~D|vIB$4cH$ zm-}q3lD?VgEILwAXD-J|x2O-LyxgPcp6<{npGc2*Kgjg|mQ?qGYBz`wxpj0#8+i{f zx;tw~dyp+gN168#ac^j=S!%Dgwwlv8^cQu>eps~6m__VkCq zIpOb0BQKr=&DfT|y9IM!%ho4F#S|4Q!!tieO`KGEG0HW?`Mpg1_F#VVh+op*GsY0T zis}obVZK{63v2jQOWLGL(jBiBiUZfX_)KsycQMq~)~?Z~chvvxC1Sc|4ISa>d}HO= z7UQvm%^s84>gxR>ZoWR2H|SCu5@7rD1pfq`n{YdNFv6gq?u&(5eshB*$AP`2{t@bZ zE8Xy8cU#Ea9#?qbN@5ps8i++87ecgQ_1<#9lWO6!E3S| zY_FoUv=MbpVulTS~*p9?{m#o>#HYDBxNZ&(q#tOe@N z-?Ef_)MY6fy(g&HF6&#=o8s@Nc3Fw|KeWr*LGivhV!ULR^-YQwe@C^;I#RqFvCI0l zlH=P!zx0lRy<_S3VE3`;joL>c&V=_XH6B`R-oBQ6*KP5>qGpzPPd8~mA*&nhztNOe$`^A98 zW+LhA1%q!1vi0_-ZX$d(1-+FCNaK>vqkYj+w2R@)&?_$1lBEE<1cuXp4)*hC1g^eu zzdC6WZMQM3w_+QZx^0#wyL->0S+^Me0TwL6>3$+b`UjH&nv9@o@DIcag&vTZH1t=C z%)8^qT>4i%=NsaUv4nq+pq1~aY_B3p5|rL4MNxavG#se(D?@hC|DnqIAG-Yc{o#K8 z)tKme#6$lE@G5>MSX2Ts$VqZJ{KxuYtTp^^)wV1HW(vww4wnep#m|X6X4Z934L<9~ zT7TzIsbgdUtgj!b^nRqrO!X^LZVVw2yB25C9;)-;8mB*QO?r16kg8V^MpCq={0r0|=|@P|dh ze>xWaaD?AH8h%>}znKhwL?rx?vG7MB{ASVcvnc!o8UE-<_+w(>k45+i2`S^Da^nBc z_8xFj6lwo>Z+B1k#ND0UWoFq029eMVf{2QUkj2L4>#A@|Mu`O{&>P4DDe*t<$p+7{sY2-PMdOpo_&pkN#Lu#pNj(ua*wuu(p2Lj~I~(8f6H*__HaOqOvr z%1C>aG|~x(TUO2^P|jhdyzA^5AVNb3V`%YeF;}r3cLOLE)||=faX(YqM}^$C1$b&) zUhZecgRjbae>QO3MuN}*=Y$0zqq`r|>~DIulDLg0Q~4WZ`R9b%xL8*963X5f?xU>< zze(cH4dKr#!=DfQrZE1tgx^QvAF1&B0{^Ho{G);2Cyc)x;b$cNF$zBm{H`+m1;EdQ z@pmBnti#p&z3SCunW;|mGp;%=I~Wza~QATyIYySp2uPY_w*U8$>-FIC=2-ZAltL0 zld*aKjrcia0VvSzMtNGET-;sok|h@fYp2SFle(-hxsLz?qz9o?yYBzkBD(M1#~;%3jB&gw0C*Tw>N z9los65`#`XJOXXx*U0~N&+_=uSd)x>Q&dwLTXN6A1cWfCHf@P3^2vILfD~d10~iBg_X5ze$edK#axXOKA}Bz{b}qs|yco1d8A(7cfjmqErG@K9SJV-H$m2wm zTW1Jo_77y-m&1QeO8a9``9Z{D?1QBLYUzU{COurp;|gkx#%Q298e@g$Ku|VFJRNuM z7R2b{K!k5WF1Pw&Do$ns9y_L^5|(i|F;aY|FH`NMh*$hL`4AiPIZdKV3>1dwE8l8X^x4+-pL3u;ZzqKyCSwp@{ z9GvaMYbNhlBmI8dseN%}jXd*tsAkpmI>F&H4tnbcVs6CQ-mW~kg9vOCk5{>|bzRa* zW#hT*KpmSlx`$5ac9Twgfm3p#(s`nmj*!GWog3z%2M2f)HHi>qOJAc!zK7DIq3%S^ zWxLWwK-JRd1~<`5mto>>d?jYb#$prIhPybun0!Dr(c;H&;(~54oUx%g z!{FaxRA-Mhl1G|^WEkj}wz5BP9^?S+AJh?kWC}1Sm8++s6iW$LK+UcUF!)uj`kI?PWVcda;x~5vQ5sr}AfBmrN`QNVAv0{fx`bW5plr_=wG~_L=zokNDeC z4804*A8y)F?rlWeV)6Tq_}j$bZ~PT@fOI!3$onb`%JpGoO^6pGl6p28 zC=PQ_XR8=#T8EH#sYFic&9OBj_igGeKJXD_+a~!;6Re-uc0^A{93iDy0ziw&hbxZN zeGf<`vpvpBWyuAWgg5mFTTIwu!nU5ao$X`fIa3lIs#mO1Yo-`wiczK*)6+3$YK**t zN{TO&egjjCt_#IDQ;ajkgq}_~+r`N1r=*A%3u*R(DS+!hkzLTGlT0zCr&G=pP)sU{ zqd_sr6qD;hv6d;;GQ~PQUFU2IinWU3N{VKRwUS~lon6ng>X}wrPp6%&L91TTqBX9b zY1OOJZ5)F+wccnpFwF+0*{G)*oozs~Aw;u*X*R5hrU&!dL3*Og*Zc`< zxYt0&E#!3CbuOjb09w4 z$Xg@Y;flt;scW=iX}+vuvwvjAPcNRR>YC=eJF2B%h+_i`aS4y-Fhdl><3@&2=9_5bukU)%1JEK`PuJM#o5pY)Y-}n5n~T3%3CErbcG4~m$UiJrHj;Tq zvQ%s>Y!5Ws-e|U)&}@KGlq0sABNlc9677RTe?}reDay&Ci$ph!5Ci;r9EVRJOU1<} zRD%>ZAEq5)yEmdyZc;6yBq_DG?W?^d!k1N)7vm;wxHsYHn{u2E^(ZUJz*Mxspc5Xl z1}egV10FiVE^hFkC&yv*F&aI|A}N;(Vz@UX;WV;AzB_@oiPad9V9}2a7UeRIa-}zXZy42bxf|)*)8TjmT|^Wi_G`p2ULp|yk>~DpMYH(Xe%RInKZEFrvWKi z@zRP`B%9w!j#*Pv4x&ox52;ErMrA8rT-l101)B2WwKgT^vS%Qdi>u~xGbZc4G@TK2 zFD0$V0yKHkwtE@AqGD;My>5G7B6^=kRKR^&Y4(>n@(G@qHqT5u?As|-GfD2Z8b=S; zu%yRz1hYqA?sR+j# z;zX%*3&iGIf#xLyM+=zeIZUD?8WM!EkF!&Z6o>GtM>2#jy-GW;#Z?{4Yp(cT>*zij zT+QC=on^H>sCmarEH>Qk0fz8uI^B(>L*i7tFo!1Gxg>40{fSmd9Hg|(pdbz{+NV;G z&PMwCS@7~~`==rknTc=pNcdC&=>m&5RYD5or&Mu{#`C8`JK=uy&T=CyE9TF?g7c?& zjq@j{l^>o-x5;JTYQ?*56XiZ^3(35YB*dXVc*N_FC#gf$Fu!&o_HS|;As?7x&=K`c zq8_QFzUiauMEy!NW~l~uQZ}{(N7Hsgl(X5KvWZq^^I&;4YnYQ*!kTNP+M?%EX7djkHW5Xu5wz=2DxE4{)bYES=xp zh2ur6WN~^@YSB8DFl|1u#k!PDuINWGfhVP*`IgB?)tc3=Z7`GP+!Rj-&&Um=sg@7H z>LmLPl}eXPp6np6mAvlUZP2^BUdjKDp&Zp0e^bNAbVk=JTPY?qgbdqN zKBKsw8?>WDtFAzu$>(gG&#_Hb%ptF{34`{ixkTq+f{|-l($+4~fc`^q_#42sJI4KxU%{3{~i{4tl~+yzvQdQk1>Sr|b-01W!gC!Fu^BhaZ$R z!c5KCCq>t7i#>hwB7^xT`@v;#zb{$7ZU(yo~bRZR^#p$a{ z4Jo5I?a9i{X9RhN!b1QD*F!l;e>rU4sDfEBY_7+%8qtUk*O90bAd{<;bf!MFMmkpc z_`>2J4GiiiceB!)K2_==(cQJty^SgTl2Bj_|GM`{-l)F+CBLtf-}gg=-aykv=snhn zI5T(vfRQ*U7zLF}+?~LK%xAPtf?C|lcF=m3OLyR~p#ZHcW9|w}z-zER8FN=6{AUW6 zj*5ADz8}gwS8MXdz9}DoI2&>)PC_XjL@7plrC^<2ta)G1Is&A52jC$Qvp6F15N;Ix z@41L~AEpwk+$^U%Aj_*ZsgX7%#`3q}{+k;~tzBQC?sG?D+2Rxy<2@ph4K?y1T8|pO zZmr5I7>4d0nnZNiw&{ zeZ~WO_|F1F{TWF2oCm~R5ZdM&>JLVFUQvk)3F^2Qc{x@0Mi7U-_0yW}GCy%dCPvyN zoWOm-2#gUA!g&YUa0=fcMl?L?`##uDQ%K-DS|sCv@FF@($r%)DxG!;M1?X)j=MH|| zm;Jdz->(?nIN6TyUuA%bUtS*n8Uy?}y1kmC+sl0L>%K1W;!Sz2rSt}UA*}vdN^cst zQ&zu#2^u>n*<}Y)=|ML+w^Kcwf1;ggb7_%>b1!zCZ+Ug$?-gEI>DzEus=9Fe+vV}^ zc=30jO+O}1#AEw*IiB9ooqq%OU6FL*)WBinlbF))K{f-FqMVKV$-PA4y&vdvAL2aD z5wK!*ZD`% zfqgVa*Q`&0#s`Lc4rpZpkkWk!eJDcGXRT5C2w>GW;``&W?@!heANp<=+@tiV$|$dm zHO$gy`22tqY-Ko~`yBSU z{%Zw(B$!NNzQJwrb#M%M5Y7sE)KG%|opiVhyuHD$k5gJMjr?z@4MkTxq54qu)8|#j zyoh@PSpV_o%Nx|+-!fo{j1P@%4-y^+UsR|6Hd24*(|?=jfA7(MyMq4P)#-m$o&GAM z{=w%D^!=ls-zv)Qr||s$vO29#fcvwL`w8Lx!ho%0{IA$Q|5gR|yH}@AD(dt}^*Vi0 zb?(?S?pD)!uoP0s&|FDlM=bK z&t9$W3iY1M>;7FKzXLo_+xsC+-ce81E`OJ=1#w;mTiS^@WNws^43rpwf>Ck%5HMT^ z8onk&-C9!~8#cu)-dvJZ?cy#XHB)ou;(&w0o}FO9=d={%Jv%1Vq(BuXU{IkcLevm{ z3*{e9FSiVQtG}bf-(i7oxc)30?U#8EuOgsc{EJ^GsI%pZw+n!7n2r(mKz9j{7)SVD z#pH|cSEl=j(tSh!ulEf8A4&gDeg=7sX;`=Gl@bc`pi8d zhRgFt3}ihTam1{!QdX?Nbek}c>eWnWG_9BzWqnMHz$j0O?DT}q1l)}H9`jer&C(bz zT&K|~c(X}1jx47y0&u9NeT?D%mZy6Wdc^af`eiVAw1tJ?r}Hh&ak6pDio%?X3>(vtX2JI3 zacM#$wb2qRG0nVa)I`bXrmwNsJd~j)gO;kR(-_UX!N_tv*eqg_}p(A1PZ%~LOu9CWl3KIiZ>;i zlFL3&r*5YEIM#ctW#+O^y|Xy7zcP@3pM-&Q`nlt?>h!ZT2s1NAyU~Q5T(*B1;f;vK zK2>PE=F|9D;~8B#m#MHhfhesx#qFQdjxYli=bB~7r)Tlv=M)j$`NeDAK0MH)46~d# z7&yIA3gIXPhP8O$>wjcjl#j=zuJfyIM;PgL2>5AphH*|b84?K zr}Y|hdLTxgzoXW*W`;diPwXVGtA<$%hF=%=?i89kYh{Fpia1GH3OHGW+BmP)`%&6M zqFqK)yYQs~^;YhAueXfah*JyUTqJPBE;mtYlJMi2=!HF~JXv=E>;HIVPemy)#tM@q z>w?jkdsa;Luodr)--LAd3~I@zibLYzlPLwpqJ2K zJALs5gNH3R_@_)`=@@5Ss#7`@1(@+8W2O>lNcZEaV*X6nVP%k{7qs0s7;&d?W-5FugPg{7~p8!V-j2w?65X+Qbsg70} zZnWT1U#2aZ7`2MMYl_d@p&dD_M#}1qbk{e|=QA<7wGZ@^%%Fd#e_s_ac{#-NQVgg_ z0c{FrsGlMiuSf!OK+dp0l6ty32_|VFvn36h<3P&$2Miqy4ypWX{wU z_xrMT8OZ+P+9o28iin4Y?E8BmUb5DSo`7N2XS_+NOwC8Q2v5a zVs^R%TjXYOifH(BoK+98G7_U1xx5127_*AI0v4l9B4>p1n&}vSpp2II!1h=)3bw|w zO5~wFn)tKO`v25p)KEu18>tD(7)+^_DrkIn= z@d~F^%dk)i54FZfLCQU%OJo{Zpl$sE)or}8&`xELG8H+hc2D-!*#cy#eDUNLdz&JL ze6vs#^FmIMgGA8ls|5K-Aihl7*cP`Fy*!r60Bz;gP8e)4X;Ta1pRFvmwbSvTY4qb% z{bsmFa{^P@h`Q2PxL4pPC+i*M07_9#JI;6?_O}NHOYy9ZyJynL?{j+BVW=C8 zEs8A}P+tPDKzCIXpK)u*Di*@|1N0$Xpq8D^M2+l>?nAtD+PI}15oC!mrY$r#?%@=Vpc%&Z$hBFdFSI-IY zs~Dm8+92GwbA1oFCvySp>kz-vb1|FJiDr3D$BXdtBuTyNRT0s)JyjjFTFIM7Hbwe- z4C+Uq<`i)iMo2|ty0Zfgr%dOOIyuGlT)kKuxLmndG?cTHkEZBG^PXm;dCyw2c~57Q zsqFL}C*luA8+M_emK+inO@>ySahP@3`j=jUfA>t>bJ9LkfP>Jy9G$Q;6G%6n@EFM9 zj1ZjB@y#FxTw(v@{(lRMrf!Oq40cnBqWS^x9g{wY63>&{|6l;iApR&Jg^w>%g*R6zkb&I${;%=sPmK zn}5kkf|#6#Ry4fWGt;{g&f1vH@QE>Iwa$9ziY$*6*qSO<_C*kHMs~UoB6YFI&Y)gQ zMoBuhqtg?%HRdDR8pl|kj^}()O$>G2Js6ypvduViB1#cd@U2-9){i_?{vIZO50}5Q z*ayV=kKd&Hiv-|}W#8B<78cRMwh3*dozeWWq4?S0 zx@=z0WSoIHG7d_?pKr(W$5%A0-s1)bC zgqeiG&f>!o ztvaAFS~yCEb20I8sQSPQ;(gUeQhZEPA1U#%rTW-ge86I{s8|$$LSDwGwsAI~+mLkB zIS5V#Fop;IzFPEtwD1th7{&x(&#+csB&D(ZS8S6POw|D0WWw7k@^K$b#4<{;( zak->6Pp_6QJXInEaBu5`3mjk~eR7jV%LDvK4RYm^wLj#|+fZUkaZ z%#DkmOw84w!t4L5y{7ywn^FPE!^oWl@;4wR?fYmzFu`iON)_tYLM6Xyd`1hwi*ww z33jIAZ}`cLm@yfg=1|eYhpON5@Y?>6wzt1ta0)Xi_vsz`iVr*YhZ&P`Y&~9lRQt1Y zM|ErptkIqXAbPr!+?|2FS!(Ej%e5y&%Dgvd0wGP=C?OfPtwOYAL9h=5L6&2a8s1i) z;mKffio!foZut1Es0yj^!?`^Vq0iWi$ylbaDNG35jQm>-W`vHha|1ixrj)}wt^x2j z`q*%MANt*(;}-tzxEzt3a-WX<=(n3(dK8{26N6}1DONeE{4SWPxnwt%SFu2a#P7mb zM202uT#8ooY`z>`+Y7u-!PRP6CgIN``JgQ0e~De1C?RHc;ZB5UCKqnN`G&KJ7~-r~ z6-GK035%D!?7hD&TXNJ{99nQm)jsn2W@4~!@b(ZVBbUiPysax-sBzzP$>!fxwm9s! zkQPFy#S?yuk36-awk7HVZrE^CpxI<=Y`xlRjd2ydQy9K_O%0SF+>PR%E=H}Uiy?MS zWm|}4mpu>+>l{=;$4bb3nN9n$!q&9nJ7ePVkyA#+I~ya~A>K3Sm30x3s_d;iX)L(r zwRbSpW7dsoc*wQLU6oC{D%}|sXIn97li7x|DQmZe++~A%XA;CiL3rp`pbvsh6ssX9Nl9lt2d!=4Pz6C7kgpKiMR8wI6?U38i! zeDpO!hZeD>Jwj;1W=zH&0TNAG0H3enU;I5P!fo=~B`&ya$8a2vnM7{p_&iaV+L5Hl zy_o!;#K+s>uZw^)JK!#+@FIQ8mh5&eAGhJmGDi_z9r!KWQd8D%wE-Uatzaw_lXfMz zjpelR>~to`-_7|qE0^tkD@C(pR0wCp5S)o>`b2XFN>BlyO=xg`^y)ed?qcLdHKtI2 zEoDKr2p43%Dl+1>GS5kIY2R3P+TtNz?Q~Y-+1cu>zIkmcLoT_tH9|7EyUm zFu6bdz9uHO6~!*mrB0KT8!1`YD7k5qRrH&;Vxf?8VRl(Dx#66axO|@gg*C0B0D9Ko z79Uh0smFO#^-fjIK}-9WNO*;qgBj>=T~|&i8BN79W4rPR6aa-Ng!H(3aT_zWuD# zFu#_9rxf>DE}DHD8tCkr;AXoTKW*<^6FYrTFCMtuW2d|kDJvJQIBeqR)!64bf|GIk zNMzni6kK8z@y>=o6t~B2M335`B@h|TbTpwmok>4Mfi211vs{_MshGu*Ye$0&yJ9s= zRbLGqxf*)p|C`m2mOs63OrALw*MChlDfiumnka;JBl?b4_0X!I4knzDh>}|<1_t+0 zmUEP*rmKGto9(HQrjD%K=+60NkrNK|0cD4|U|yp-Ca*F6z>XnnjGs);eL4RWpV4MJ zBe;`kW4or~*utDYssk+v27?)Zu}ck*-kBVSY9US7J;GV$)ZB8! zD+^MauC1t8ZLngsvSI;x*_w6f_B!VhbbEceKHEt~(dq&u;JYYN66;b|mAp zo6^T3V_jJ_b%WluoJKtvLTw1NYh$2Y8&$jR9&XokL!coA_D3Fe6FhN9>?U&YC$LFd zw|Hh%Y|#yp4W(o1^21v@Qrc#)6H<9Ml;ty9>52W_*Zq|s$Q$!??~;iZ{QCs|6xZhU zkh$l`H~tsgli6P;S(sB(Mm{B$=JB{s5G(Z{xl&_8Uw~YT<@!|u<~yK-Rv26^e@^rl zy7oReI;^Z`uiQ49EWB5_#6MpFvfBSi%f1v5Z>!QmmumjWn93*{T%y9;)g+lylZI2* zP(HQNcC1@!UVJNsr)b-0kiuIl=QwTfXiTZQ{uudFc^Kn}Z*8+P@*Y9nG$^YZq4svhBPLzm z4H?>f`m*8UBEe(O2NV1B;p6FiRc*n}l7HvOzq2TEV8~V;?CqcX#f{<;-S+ZB@3B5Ie&>?Ue1@hE!I*+>rWm@*_sfESrZ5O%kBI z8*S9(f4?ciK-@p?z$KcHLWRqB3)Dc_?}K=W-+ zKS^g7v(0t(D>B;*`4@Pa@LhAA{ff9@{AUUO2y>nNvK$e{f1dE?nCt9UWlk9X1;Q_y z>+FN17{-5z@Jr@8`#&g!@n0eQxe^~%{e1lQYQp%?vFn~2#$QhO^UQVjoioo=HouQi zW8#>yG4VRlJaXOpKQOL;MpODZ0|S?7$1@DL(G;bvG{Ixlxk*`A?}{y}%%AYDe1d>78NG_(6S zlg`IMAU8-x9Oy?Z{F4{vciPa&dY9%NGIDOk>i{a01M9{-G4_lX29vZCcP8TYRFx7# z&n|VE62-D-#I4Ne*Vs?0EcphqXXEIM_Oyuq5OWJB9T-l!^BNSl@2P_~P~CYuA|Hv70a6}888PKC zQb@gk$I%rMV!(yP&TwHNTE?L{`YI?qQAcitE3tT%0-mwl&3%4Y!C&fRVRYx+h%|2( zV9sE4@`3<=$Bg__lJ!NwNbq67N%T zovappyjpK!8eY?VMrY-h(TJEek>2m*Vzb6Kcne@|^ekig3*1Ub!v1(54;lx?1z=pt zPdbv@-ePv>`Rjzgr!V|`1pP_9(05v3*d~*Zy>4fx4@t~Gid=lwzSCd00>69L*NAL4 zek(K%Y#s+{P3}5D$#o}qvYzuQ`UAF6mP=cWL!oH;8h=pubq-Hba6RH&CHtvecVC1s zXgW9WTGb>7ePFRGVZC%+ob8jGsPaA0moZOLu#eUv0lr!vn|;{ddB&uEF1E~{o#)y zPnj1qNQkPXtGu2Od3jJ)t*^9OYx{Xcwfq=qx0Zd)(;-csj*0TH1+)d!-Cm6=+d#z( zX7Egn=V^PLCiC5r=WM?}R?rARE z68*5=VhuCmJi&5~;k`vMvmLa7ake+*&4TXiV9Fh%kvE&^&a&2|h9luEUmPH4=Oc7j zZSapX6$Qh%IY19(zGI+h+R1t^kzUDozvB64=aOvdmoHEJZImnWjQ8p6M_-fW7i-ZR z$X^{?e4{uNx!Ib>TZ+0urzE=A#RQWC+Ipw5wx34dQ@!tY-vQNlQ(h&%Us! z`i0(PiRxy&>h6NK1gx8E8G&Y#?-vA(m*gC;(|R&dJU_z775qfD-)vp3Pkvtj3o8=r z3h!zL5)(ZcrhPV1zr9EVRs_(2Yzj_^YqChPML za2U^joM$;)MEGG2ERo;^Nzol z5#=%zLGUOH)d*-gTf%ud%%i`n*2KI>Yf5C48}|uz0&goRt;i#vAnRX@BJCIO8@!lE zH&Cm=Q!-L(W-mLtkuo#6*hxlBcep@zUlEI}8PyGUNAX1~NR&-j$Q6X2#Pb?5Kx--R z8Y0%nCTCTkeOIYEnHp|TQX>D-AaaSLckgavJJP)ee$4LacyYcvR;?aueY||!11AC< zY&X{HyDt@O(OzE$@{!>|f=`TN6s+Up5ga5IXa(C>U-l7R64Q%6M@V+o_4v*U_{TmR z#IDD8UX6>ob?sNttzQPlMeAsr*g!)9Iyo?!M$Q*yw_5H*@k3i5E9*``ua)}4&SA44 zk+5vT-Cn@fEGvxGY9}aJp~;yb>xuTp3-=7#dvAKlrFZXx#x=V41^1Q>y&r6-?2m?? zNSIzb|0mpU&7d<>_S;_EZ+mmU?Gxy?Vd%F%fLv#=-$eg>r{pG^Y}vI0#&%hiw@$!* z7Clm>kRoPSo5-=)sBJh&`M%(?_ea?sS@wOo?E7)q_YahPILdwi%Kk@R z9*6w(qbFxZG{}@W(CZVYX_+ODR0%s{U59|}ycIm3uxULU8JiHJ z5|Q(4a(;<>a&*S|RrN)TY&Z|~=^5^?pl7-dx4=(fY z|3#U#M1WpRB2?y)y_WgYHJABQzs#^5yS0>$$fm<0$f(6x2tj5oo_dD}VF@X2__he) zfUdX&Lb&5A?uHO<5{ri*bSBBSQr=(Z{R@rdXrk(VBqr-W#ovUOky0eVe42epj|Ly; z`imLzLw&cH7fF2qpi$e|yf;788Iy;m$TP5w;UfOd) zY5P`5dybd(+)&!)DrwL4(w?{0GMwk7yt>r!6OMB5;%Wx5= zov(LYjB^vZjw$_J%%JXz>8RmikJcp!?W`Nh@5Rq>%6f_4mzS&lz1$4n?Tw-Fccsa9 zYjZ;Pg~hV_!V>NauTM(wR@UM~h$0+E*RiRyNfxz6{t zH*vwn=nD`c3^i5{m1~4F*PfwyFMiJBp9}csLjF0Qf6n2bi}(l3N?({3|I;MU7iJ?O zco_xJG}J75aOR+FEu~J$>vi%uEu@>YvpI=4?0rXfCMU?6zOO4XP=vQay1V0^tCgk# zpVa(`q;h9cLR0UEnC`Ynzr~v9P7*?_rfr8la(@+asWS-{9Pwf~6K54^cQ7zG)^ZPo z)H4%e5G!5*>K>;8*~Ru$v}uA^=9%t)t>JqBwK>qILm5EZA7kgt)nZH~@&f8VmX$?#MtK z0K__t1sTL06Nm$V*rL&u6aTldZP=~>024c5IPnx?K^ExU0dxR}s~HQL5w|E12LN$Q zV?kfUoe+ovfVi2_)ncj_q8z5FXms@tl%^lRH*jeHXKurDqh0V1>@-YgYnrQ&?c8k= z-d+b5>2|=pAv-O+S1Z=MBZGQrYAuPdrn_TpVDBzu!tI%cPoDw%>c+CK)y9%w*W)u! z`R<_d-Aa2@aJwDD`8LIwC%2I&FbW#(o-plWKogqXoZ&leaICu*Y@F2e^tnmopf9-E z>)5H36c$jDynd4NJ}jA?P{R{pBvV@YSvojxs9_8TE2$x=9SlA(l`N_B^!YR8a*a1c zrco|CMqmMoms#n1w9CuLqLgJBnT+Ht;EagiA;@SaWMudB`3q%qtv6seqiM(}%Ik4s zEFEo#(IU(l#VBQ2Mm8fk$8$zRa27J!85v3IWO^4yOWSUg$1cbt!AoCbvLQjMT|<(7 z=#{eoy~QB>_%9u@WNlm$K>vV(yDRSV+9IN<*)NN16D*k~?FOBMQ62|6B`X^T62mF+ zI3Q|=qDDCKYA|~G+(@}xoUI|(~Z!`V%(aTcA$&4rv#&7Wbfn>tIM3BjBXv!stcn;!t^EP}3R^3H!uQrtT- za1O$r{e&ds`e$}a^x_OQ40^Zg*^@N|vZ9FP`Hnyic8^RgWw(^V?@NNCG>M87}P1o>!G@Tdw z+0X04-Zp9Df9yL-Rn&5}^UqmT&Vm4roBkgK8}cb`;NF)FXnJJ%Dz~u(OSt;J@|Hw_^|Q}oQID#ybNE45J^VM z9#N-&Y)v~Kjy)k9OX45Vx*lm1-AoOR58I(iSNzvI@)`*DiHN1!pkU_pdz}6J`H|JfPBd1mDL}&kfMs&k>jkxCQt(BHiM} zK!zQ_TWJE)38ScYP4}&GFYm{lRyFQ6AFl>+w^hWQRyFQ+A5TZz?G%PP8WvD{bSfmFBMB?-?H_NP@mVXOO*W^JIno4Qi( zx)Z#O>;PLpq`$p>qXvlX`1gbdVNT^+N+(JkUFJ6@5x==D%x_Ne`Aw@xhq|0X>2Bq8 zw9C$RBSR!VStMUU@8UBA^UK$yrPk9Bd=-ghF&ME6aXM*m|!6Nm$j%8KP<6Su1 zOq>CEO7D~}q9{$=pq~UMw&{QQ1}l>+&~wzNdpDx^$6aB2FGix->B%S~j(J_Zn;OG( zot-3KQ{U6V-=)({<)@0{clPeBn9rQWd}bSYYjYH?YZRY(*qFD8QtUP6;g*}74-k(e zJq}~urlL8UdJH`2$}nAl!wdif|&#hUbjD;l7Tlp~{9%Pqc(20M#KfRp`7a zf(98jFxCGCP zi8*s|?I+~m;}WNXtDj0n-?nygJhiRF`C>^|Xyd z!7us0v}3RZ#SUyS1Xy<2E(csj4me$m5saAsADUSWI&NBTfYG1}wSC#3I~!6&)s6@> zeoJNJ(;LEOQ?&j$fuSgQas%0ux`Ngde@w}hq@TZ%*qpJ=8QYw(Tvy(zTvsHSbIXQC zrcXubNJ?obo#z#e`E-Les#D!h+ZrB3T#bHaH*3U%^bYPQIc#(>Z%;MsEOoTg6&;j@SgYh$hnIK4pNvi z_@XKGzKYGn1I?HqtJgL)W73G4)^zs*d4_Cr`@LV~mR_w_bF^U>t9FRc`-dCQS0u%W zb&np)x+`t+l|Xz~Ue<`R8EkG@y*F-Ce7(5MJ)Xn>%ocJ%RBT!0c|*WbFBkm1J;fkj zevN5Ol9nDA@{x`*;SVgzExBq1N*SG(rdR%DPU-~Va}#vzW~3t#_XIT$sGa+1Lno1n zkT#Q7NInXhi(ua1MG$gWX-ZOqA8PkhQXV4lieyZDlMFFS;N4Dl3e)M-kqv#bPwXkH zLgJJ=Uk_WwFr15MSOGI(TN4=T>@{O~>&j4VlIZ-u(s|IQt5hG;?R#8^{PT82waDw> zTm;=>Qob;@b#@J6)5P*D#7~9}_q8Gh2B4rhhi76V#rG59_XP2aDHZ&Krd@3f`^Xz8 z{>}}=6&6CBsx=884VJr`XiqyvtrtraK&z|_1=!gty_;Z{FA_oYBrwuuqOemHlyPBS z52a_Rx6`n*&*%|Gk0jWZVHx`GnnI`UhJ_TBuSJN3H?>d(&N0=K!8B!4E?)X$_2>&I zI?-G7{BR~PL|ZyG$(C1S(z!dqhgB>cOWW=j334vOnz?p5%0$?hiTL{7h6AbunTjrc z=}+;n!xI+iF zub;xJ0>hU`xSFqkogPek27kmeO!FieccCHoqLsX%IQ;{~_VFH06z~Q#5^~~2B0Iz9 z5A9w&=jwgST20ao!KDDmc>D=v!QTWA7o{4S@2$=gJQ`f{V7TBGK?eITC64d@8OTDZ-CHPw8TuZU`}LKJ73sf%Y}+85e(0WzPtWp<_4| zZ$Q9@il3^a%K+mehw|jq%xWiV^Ekj8ef8H;y3}NU;rxp_p{&7g@-3dtdu=&D@4Cz6 zx5$4rpgYjdz$C8oCvjAak{=-2@f`l7at<5rR}oJ>Yt_~p$Mg7?pg=JX zTF^WUW__rbjWZN$m9Ju~8>B2PM{G|o`0IbP7JNCgr^@;zXvAGCK!2ch7T;kNC z!7oe%bPlE(#g9H#XNaUM7SE3%owB%lx!mgy(48v~+?U~ovnvi7aT361R_7Y?VmJ>Y zmr|VMdH|S;6#6uJlTMI?e77*k*$srQ!g=h~US3^yo20M8x^vIdnacl|A-%hV;KoUP z0iaRa*}XTtyJcm#r~MbWFA(lO!uci{_aBVAM{l?;RRrTnC5OLeZlir7~Bw9D;JXYg; zk?_nuHRUZ5{qz2Q4tGxP@EHsz!t0%8u@MOXp7!+tU|eb1^T$L+nz2o?KZM zN8PImXeTQVH==S4OlljA=QR-T|FAOukWf1C7CmqJnA>!_D7EPZn%b;qJ4hb?;xlh* z0lIiMPafxME0Xhr`)=&vKc&4TdG?L7UqLx@uf2+j@f9WH)C#^4 zBH7}(O4*_*AM^L(qqT8|al1~9K&V1Nr$u&Z;=`Qw&^RR97BsotPb?|pasj`yR9~2M z-}g;$d`sqRx!<8T^6D%S$0^^2(qY?6ZnR8pg=wB0*_P7ZaZIGmg6V_@b$a3ckoXCf zO|0b?@VP*gbf&%sZJE5hB%m%y^eA0^^bH)2{PEza3RLIH=3RXt7;baCTu&h)OHth z+v)Vq>sRbSOS{Rdj^pU618sB+3mt40hJw0L`ZLy#n~7N;!@_}#{|Cqa1@X5~{2;x_ zy;aIX>b>%BBCn>>ZM4C0qDh<%v`~e_VkP#w4LTLI^eogP??8EF?N?Ua`D)(YcY}7d z_q~&Hqy+^+!^;b%REjB&byX?Kk=WAX7n&kp;?dNM= z0C1et+X4{e|7NnB|F4()f5HC;Cw=}8`5>AM@PFd*&CL0ye6beJKaDtlknhLQ{_f{N zzJD+A{l8c6eZbwjCEx!d!1sIGtNrzh|Jz<|#+U21S6jo`%v#TNz@M>SP13ju?qj{P zq5t*yj^Z`POCN;AyRYzfY5$~2)BP|1F8;st8^&X>7Ud?hf^BS03k2uw!1IYcz1@fY z?2vP75{X`%%$X4U*fOcstoD$PvpmURhY9rhB<=fA@=o>^G!X<0_g$M-bsF&o-HsZ3 zo8o>g{_Dh{jJ)Cvpy>>9wxAD-TB5QnLp|?mIRBtnu8~;H&<20dpsk=?n|;fe>YF^U=xc+oUUAS@o^7Sf5=CQ5hfrICM5ki z*Eo8(c8Azv^$piOU8U|Y)eh5iux$*>wGhi-Hx+i{@nZd1@%N7S`%dF?cD&pujEAk> zth6NBEPwmT-xl5h@@9`MX0{r0ad|`vI1<#q5;UL^l#5k?#jC&)Rba^~u=+|^zbeVn z)rz7Afs>Q}mzav7H0mogl+b?@yt7|^%Z>X;T!^%K^I1tSu(8j&XFU9+LV^;aVPeI* zk7FAB|63ZzSJKG+w=_=hY0T8S?uTr|UO*8PTjd9t(H$?1BNq4m%IAgm^FV*V=Y>d< z=RG;uJj_qg9c)f?+MPK&(oDEb?*a-NjbRH|SWpyS zTS_aF;l#-QbIKpWfy^KFlj!`@pffrNr84h?AmYE~_+yiSc<5&1F35CtPcnavX)r;o zc|{>V?5Y~HF%Fh+Xw?$pQ6XA`+d>k>RJ7!e6alI3V5GN zJ9Wll82!lAt7KHq4C5agjM)l~hzXuc2iv5X)57qF*Li?v8GcX@4jLnvhS$$xFY%DP z8+jPN$MZMIlbP}AJPn`>iJmN*Mag;P`bnin5+36501Z+I)idgbON4yA4Ry!zQ0R^Y zi&r<5WvW4Pc0YEpT1p+tf61wySQ*&5&5Ijlg+3#>sGxcR%c383C0zUZ%hfr~u#_Z6BBK zlZLNhPy5?fYu?kg$UW`Uuh;oL>DV=FZ@sf)*r6C9%2nEfjz+TGC)$`iR*y9uraHbu z1D-1Wv$_!B>)pY%?MUFwAiUCSQKasZ6z-lOT+`}8%rtW+_g<4;p(q^%j0&xgIQVDI~|RSLGs zhkc-6ANa5j73@PF_K|{p~jVC+=qRkU|;yK zFBR-dANG}kePycq_yp-5Qs47C`P{M2Md{u_2H5ls0gr(*OH|kjXV|Q_L^jJs(^PKBWxz!4z*# z$sPbRGGIuX0Q_FeMfn8Ug;+w|rvyf#p~kt~kj8*>$C9m90TLUA_euTv5tnSx zE9#{O>vb)oUFV~{A<$9{Mg^J?M7y5RZlFTE{k^kh#`+Tw=`(*z`W%w?o++w)*d%HSXQQZfCO;Aqe zyoN)XJ;iD;R1kfT;6J3GK-XY$Pjh2XN1N2q`@0WOvS*MB`5kg^_H)6C;Qobjx!FtR z?1c>S{uv7nvpVQ}^?Ar?U(p%D^JqQ8d8$LAx#Ce7mHf3{dxOTLt@_4N2 zZEe&HFJjGcA2Ow17Q8zED0^m!M460v9RilKH(p-7i=*5Eo}h4iGAiSv9Hn=mOt$-P zQ@-R=fJY#`^0kUtS}BrJ(+KI|oh00RQ>vKzD0G-j_ft{#nENtT#K)7Q+4ChqUR4l* zmXc?CnMRZCN5s-5gVUz_7|x5HOd_0}4y8tpaUaJy?JK6c3fNS<7=JiV6V=ayaC|sV z5&RdxC!y>VBp%ZkDL@!WM~KTbTA~0Jbwo;lq=sxAC1B0i2s4|&-P@#^p$FF>3F%DZ zE@U$G%OvWTCrn>0{7LXM-4rb2DG?GsPosiQB-f-C?&p)zMs+B@7Na)++aMpaL35wM zg^FS7R)mV~KI^|Bf-P*AiJU@bX|EynIcQ)@OLMFo{u(vU^Q@i5G!mi2DKDArE~7EP zIJWzO>Dy4**$`WgH)sn%#duTh#|ZwG4__hSt)n;5t`g&T2h4>ojCSZ7yr{;oCC9My zZ(0&Kf#tr0!+RQ5?#r}DjAu6d3at|EZE7}JrB^ZMZ>Q!3RB*xN7@6YtH8eb?l>0jO zgb*>}Bkx^NOQd=->*3LxRN;D6<&-K+V5W$i8pW32j$GX#t8jhIaKF_MH#=UctWiVLvF?4?gTi1^dy5{iI+&`LLfA z>}OAQsng(EbvN3RlkDR0PlNeq>1}l9OKA4eI|#nw2bWXuT?AjJWy+z^3y$i%;P1zB z+7gk+9)2Ec;?(;FuO{ zf3&}p<%-+ir5&L!{KfQDe%?bytDy1&C`CE@it;Y}HIV3iB>Dh}0HrAB5!~hPhwAN* z|8CNxo#O$ztHJt7Tqk|g-&FtnCi`cKY_QVDsNDxiK3}vn_z|4}*>Nx0ml@qBV^8L+ z!pQBh_Qt;K6JY#7MzY!6 zZ}9WLMv?M#SJ6!V6lX?huOt%s85mNa5V92O*W)N3Svy}QeQ@d?L)mDC?5GuS+gU7i*r%(JZiA`(61T-$2p%6-4Dy?UQ3vyEh-uLhMYX!fLHoF+pCMd`#$zM^`&(vGnt_XUyr37HP_GksHK%25?$ z%eEnH18Jat_8)(sQ+z}$_kod4^6gbL)_zfPa%RF3Kil8^Y`p~8PST8ENQPx@3`BMp z8*CF_X0{6C*Vba0+1ArGp`@i4`yorre0!F*D%vB+-fH?memKw=aki0SS>hOT@Rg>N zr_;n=4@^S*-jjD4Tzqh_h!n2Z^Mz|e%GTVWO2Yocm#~*tO4tECKa#Usw2gOQIlFaq zU+pFFdoan)*m|_Hyo{}EyVL<@Zuza(uoSlyC8OQVU@s{9qmi5Yop5vKE7k|e{)0V0 z1lxRq|1^E;1^3bB!VXrpiuHm(FR1rLmuds=RrPHklkbO$`YtZQNLc@iI0sFxXu-Q=IpFb@0~Y{FbB>H$6pVj&tGz^e%+h z<$)ccE9{u0GfT$NzJ3u$8r>WV-AZ_(J_7Th$vGP%g0v#B0<(r?gT~tKhO;TMbRt-f zZE9j$Y{1;_(Cd5i3>bjJs!VEOR1hB`c%9*#OYXE7hc3NJLe!7by@p--!DMgkqLY7w zD3gvjmPkn(otS*K>Rhf%Bj()CQ?xCY@E)agbXF4u(~e}h8&ZT}IiJ>Ir<)t+Y$G~# zVO_)@z8i=XrJpc-0i`JCKn&lRxH~BQjFD$IcZ|gYO6OzPW-<-k`4!SM(W(#78tKsj zl%jlEjghGP3p3TrG%{uPD>GH+cWn89ns)rV-H$u zH^OiZ612k+OEFW)!nags<1cBOR9B@JS8^7xYqG>eBL#9iJV9$nw*-5WI5@C zt0QMFO`J;;qtc9ggo_dj79}R;Ijt)fX?Jc@BloCh)@=0>ha06$m=o!)Z$3R5XmSkX zwh^()Gx1*IuzLBPgTLLAplZ8N{8v00Y=Eu;S$)L!?VQuL5Ch_5&@F9UOKoGOlhZW zFQx6Jv|X{V#2cfQ^J6Wf2Qk@4be{$-a0y5PaJmPGx`zXBh6hMT-3TCy0qL<0B0mP` zvDmVARkdUZ#KiSV5cf(Dr?O%)yJGE%JF~&>l9G6miJ!^D4+im>AfB?_m3T@;*X-$- zyG1RQ{kMEj%AM@nNX1;nFm8HU@frGi0D1Sa+;q%<*H;(24)2(Qy<>BF0SqlN09urtdtDwgVQXUhT2<$%8B0Jkwh z54Y95Jtp%~s#g=$D^%oA*%VGaDL!6D@@i8AHg4QL;-_>saUZeR7T}jK8oM@E!{#2` zOhn#tG|`oh0=f6dnMp>i#MnKVkL0rvWh)IHZ<~;UWMYX%sm01HKI>EbR-ZZzPxb$S z!~g8`R4lsWkcmf&HN-n>X&k+s)*@KxEtq?MPqA+Zyg0 zk#Wz$Pu4vr1xqup)_{q*T`8Pr1BdJ{%9|oUr3GvR-37q3+*8GmRJ}3i!##~7P7g-l z!#x8LU7Z+RWXOqv%$N=Le5AO5P`f4yIPT%d_ci5CAUbXrU^u~M&)0zBDR}S#j!O#= zr{`NZvQF+^%0;_O?GE?zG9VZunB*m$T%)^}Gr|>WyLf<)aD|5uA-Cw{3*Ehv5w4={ z6HETpevz*75G?Y!O^&wRs~O=MAlMBy`#WcZYdi#-9G{c7b9X5tTnmJ#kQc7?bGX(+ zh>}-sa>ealm-62y3^EMoi&`mTOFnkE_l_~Ey(fO}#`xz2=6y1&Ov*`y=sB#NJ7QTI zPJKd2AiN0?m0iO0jmSq>MwS~KsSTZzx@mOrG(Z-L^~#h4V2RS*g?8=R<873)v0&-s z?ScW$Jg|5eg}^-sK^i~^>#Gq+(w^~AHi4aHrzN7y-n%nlzsHa{Hl+gmuU0!xq__v` zquHP})HLV~u(8_*jV6u%?16_4&K%K9wuJ1Cck2X+O2}?F%^*mOq#%<8Alx&VB>OB| zucpFSqT%i;&|-v^=GVD~I~@izOsDAi{b?QDti2(s@qj3!*)%QEG_6+r)Z*7_nkH9u zw-x-VaA6Hy!}k*(iKb*zs;SWwT&AhfvU6kI{#Z@yOk=e0ry2;U>FBkWVD*WKWnusr z+152+N^$Yo#0yU>ome(Vl{?xHcLt@TRA-tyNv+M&JEC^e%$?FP=Wyut=LBjxmL%Nu z6>cnu8;OK*BW1WL!X2z|)22ekb$hK@Tb6ZgdESCEgTN4vKqN#UQd^dPZFvC%Uj~5_ zJmJF%5wL14kHEV`zyg8UATW>#h{ZoU9R^g=wqV!i^sHVjdSyMd@xDDu{MULi<2{*M zjK|GM=GHVE%ibb-;%V_m0=LF`S9ss~40!w?TAEnBL#*xVi%;8`O)f5*cyQq!%3fxK z%yW)>S;)qbkX=wqgRQ>jN#35H^5tzyAJSvzQ}XJ;Jv1m!vJbQu2xpHVPCgj_62(6f z?JfQlihrm|d_seOy`177493&k&27@u?1>EPmx~O8!+<7t2+4XE)F9kM| zpq4;_iuG8tAVLkr68S(hP~QakEq{y3b5pd}HoBf1HY|;T&13?55RcDry;l;QcWW!_ z-AIos-a))ms3!qBmr_ET;r0d3vS>4-Kye0r5CAnZ=)(XgOQ3+c69`}J*rf)5?l84~ z5Ev~?q_)0{$g)jT^I9Z}mu0$MptSt~(w)`Vg5#aZvY|CqQCo@b1J&vFW4Z%9x)!&B zs=BhRi>2p1I+r-D&VNdt<@2XZ-W%&X$+@&_vC2=U{78#OXEU;+!trD~mJ5ZAwBKNi z$r&j6$BPuJs2mq^Ip7q_nm0^Ty?q=79RzugOlEJ>;UytUosv?yyG}&zk+XSy*|3oG zOdS{iatCtSj5p>Qv|0iBkk+;gpM3C^TkIHz0|6?T#XY{0`k^gn8nl_u=u53^WU1Ax zleFlpFIs!4)z@5VIs1AVzk=&ZW`h&e;#*-NVtR@MOYN+=)DDrc`|3;W02$rQqab){ zQ9Sf}rKlRfFr9q@iI2fbIy~HLWHdti!BcYeP<1vML8zwB&3XHAF&5i4=$jZz4r%V} zL?A=RxZ?dwxn8Vxjx zLA*+oE8976&E;x?Gr{8KKUS%HAmu)RUNfip=Phya+x97q*~9CV8kRGwUOmU71DiaN zE`I$ZHq2^-xFbYHVwmV;98QdkjWzWy61ISZT%mnVXAW+Zb|n0kT>DA+2{h!UijJ|8 zbO|9Odz@mWpmsD=o{Grrk4f7fk$}#uUgh;u51v`s3!4JF){VfIH^8nHP>OO&*tO23 zBg1sWzpogkZL*gp&$SHFyZx5h0v;t<}g>B~(oRyI$_NJss zXP_xQ8#c1;dDwswPR!jaE>*-h*l1D*MkzMxj*7@bRSt?+>~q{Zm(3q|DU z2)r<}ixYMulD0_Yo})^y;$V`ph`Jl0(3I5f>2n*B+O*rv`ujSOx#`S<%cg!L;m=2q z3?Dd0ieOW~&q!mmHj?ciPoIr3(>cnEZj2e}C{3<(OzK^piEbrJ$sz{F_UVX6hawHr zpaTTjxzYAI3^{|?v}t$KMNL9(aM z0Z5RP364O5s{;vAJ$>#(f|N`!2MLx264dte`6Ck4$^=CuxGs>OuBQ*~!P9jzK?w;i z4J4?S3F>8n`ABd(C7^w1%-uGQ%^h)NK6y!aVCNGUNVqjXE-kB+mgJ5Exw`@h8f1wZ zWP+oR;7*aC*2?V6R}#5_`{f39;_Yy)mEAekrb4xmW)B*r^Ie4GRLOfh7IsFHDZwKS zrE^i5^~D2z!o@ln)`Xw$h20jOheXKmtuqFLn(aT(f;TeE^QBE45@Kx@V$b4Zz{4QJ zZXEG-3ZavAmk8G(|HF~L$y|rBE*}4r^fT^uvCUm)6HJ5ukGD4glcOyD$9wypbGLUk zGn>sZ0g})R5+FdB-3`ft9C9a|8}1ttjt(;k*Ro4Qg zo6A&6ZT$zIvYNE(U4#|!63F6s+dY1(={Q24Lw6Ry^KodCb*o*2?A6n!BCea`uNrEV zZV{qPZh6j2>9kGOY4arteoC)h@Y8B-JCl;}ShmFE5A2jU{?(3Hnrqzp_emCap`1j# zkr-p+f7KP0b1vx<2;hBaU$m|u)<3uui5oGkrmhN1=w+I513i=M9aNe)5nYFa*X9)# zy0du)l@-;oiEQ4NJmUUX^>{%7y(D>Dmpnd@JU*B_K9W3MA3v^xl88e?uEQB;P3-F` z@j2~mD?FV#fbUGCo`Gpu8F;6dBX|{OtC6yPWZ$Y)*4on$3{s7t^#I<&I_LO^eAn5* zKO!ZvwE^cr;Ianm*!3A>9QB~S>NG}fBm&RU?@jbeiz{ZG8}_RW=m4e_gw1dnxbmO_ zbC{A%YhQhP9{j+0&nk6l5iLgR6KA=AmgFKY3zcDxE^BXCx$s*$Q)s;!EB~RRdx%dS zi&(xFU1&-?S9RKqdEI!w#`SzINvMdw2)vpXUS=wL!b8lFUaX^bGom>g?E$uO3@tnd zqXqbKxnr?_xEwKWNb2f`)U^Z)E3LoTQG9HML(Gj9G#7)Ga9?9>5+4^U+#6JFhx-=9 z$!V_w`#ilx@AGDxBh&Sn{q*DdUR>QVUV4;SE32ZwJ+s@Ipk&BJXNNU=)z~^?CKz-RedW{8-h7c;w zXcZX1GT!AJiXHNK=uI;`0P4@BaPB(@X_e7y@y+-`&2TELJ%I!t9!LnRD3LR<(K%Fh zC10n>`{J>sQFH4qm;KnibboQ!mWF16WVvc`Y~rRx(oTdI&HdT=NjEYXAS z(K@)Zq(V%6W?9I!%uS$?I%?7i;AA&lffW5}f|pJ(!y}nU_JYvDA*#!|e@rhtqR>W0 z65c@?0Bz7{)k*wUiyUlxN6g2Ot+Cbo64&irdd=R##M%lKW132u!UV}Ni50a?);FMr zgz73<@tG>YljH2V7iW|=M^Ii&IldyA67R%JIXt#SYTTMDhQB=(-r4imTKChCHW7;L zo|c$U;4q80{oA1ZhcSaVxDcxiP^mihFNxwg+dg)DjeM%&X8P!S8?FxiMsKFXHDCiZ z?H@kUuX$vD!Z!yrY#@ORYS>@`TdZM=6WAUawnqY6qG3y7K0L!XpJviPiVx3VK5Qjo zpLywSF#}o61F>5x|H!5wA_V5tgljWoIGbsz&60t*hhiKRubqL^`(rkZ!>e$pE1t`{ zO~yp`?MO3GP565otO(%ex=aGBG2?r+R)nZYu^?3u#fo^cuVtN6T&P;5l$JDXvT7nc zS7u(sGw-|!Gw-~3=IyHbU(4tS?7x(0Z+Fn%N^Z=3tyUB~_s)suUPbatPsBw`V2k4E zfw{yZlQJNPNs?#C?)=5>$qb=Bu8fKw?9FwoqmGEH)IOB2Tg9BI_CP!# z>Rfs~o)Ek7gi!NgZ%wOvC-l1)9tQ}v7t3Cw1@ZB4*baC zEU_4=1{WH9yV`Ep@UUK|dg5Rg{|*hNzsGGDo*P|2=nKE5$BgQ-kFMW7N&WWKuzeHQ zej2u40(*;wy(NL|uVMQqumd#gfCP4+h8>u|4$`oL64=2Sc5nhaM8ghAV25hhp$TkH zJT9T0g9QU6@%!VZ*f#Kr7G9B1cRmJ$M|H7L@}43G%N^?n^0+`{g}vEPE%(PC-FAO` ztlbjZ*=4$J%aXb+*RbUY>@W>GEP)-aVTUKMBQ)%Y1a_o`9htz6(y*fv*wGqxbOIaJ zu;CaM!gvIJYb$ixiUj`{4Lc@*9jjr-Ca~i)>^KFx(;NXYiZQa3QI1}L$+CK5`(%#s z$)0qVnBqo7b0=%D0j@SoKAv-&E%q)o*hGAr@;sRNKf}U(u7@Kyv!bl$`>?DT>Q&)VpY0E=PaL6E-Yq*ifHRyyJn&RX zBk?M*`-Vg)CmQ}tLERtf)_Ulh16dfGgC!?A$l)uB#NtRo`0_|6~yH-Vj}Vdo{VNW-E8wpznhC$RH1 z?ED1Q(6B}VYid|CfvwT7H3@93hOJFt7iic83G6}*yD))Wq+u5&u!}Y9;skbyhFy}t zMl@_BfnBO$mnN`L4I52hV;VM=z%J9U%M#c+4O^GM-l}15O<C2e1&)Y;R}Vt=W(Ig{0$82y`uI@wG13J ztthm_PPZCA{il9x7WkOUjDq6Cd@@Dte{OLshGRLO1I9HEO^3a;xYXQ4Pa03p--=O~ zEAtoY8yAo(8afUz90X4&z*jSNB(+oZw3{#HrJ^q-KDe;`gtOR5^c{1;=0EthJ-*mH z=T-R5W|Bg)Y+~ITpIhFP_KzLC4!znu7-Hk~vdC|U$0N_Nj0|RQqcw`LXTjtyZ`U#}R*^E^U0rF;+*jiKH5T#p^%+sa|Us z>$ec6H;l88f7Ai{lEeA(s}3fVMzzaWJtG=2a5$hNe08&x3-^XN^5*>kXeGSoo)Ll9O2H^@dW;|_4~$P08(WU}`yfAKt%IQ(n-kLAqS)piu;IY(j?i*>|&=`Myx;jL5B zyF1zG(4^mQ#ATBZnI*hoocDi6&ijj-$_J;SF}#$N@=|LlT~bPyloCjKcc4lM+Dqwb zDW$8ml$X;DeK~IE@6k}qLAKdjYz|&%DnFU~&B2YPvM1;D5%VJh;%UL13p*rwK0UVrUsnZSE2Zh764UOBoZ zzZNnfZAr3hdCo`~KHDqsELP9Lv@+dxw8By5>H+N)xdzY@Wunamb~Y)pFHJZNKVfGv zj!AW=aSI8GmovXWK>KW+W;ljS^tR~6+*?BCJ zm&0TE8BX>U^$gGYUiA!j`swN!9^ZW$=P$&K)HB@AXR2qojL%Zfa0Q>Op5cFA&8U~h zX;i9N^#YghYEHet2fUhBFL3&<7Ss#8ysJg^0@v+or+R^pceP8sz&X1bs26x~SG&~< zT(hes^#VubYL9w>uXA;pdV#}#Rrd-a15|alz<;}{`vqRxRoyZ0(5~v9feUk0cg;9j zDt)u5v<^d{M#As5!s9UPpQLfm?1N1zgnk%lA%+WFiE(Kl45#5R@k#psb^4FXl|356 zZRr0#^#4rye--_Ikp4eK|9?mS^TgP8p#O)`|8wa7RrLQs`u`LR)l4j?#8EBy3>Zco z{M8J*isFoniz>pIn0?=11$UgN(|A^V9%-A+Nz=Z7v|ml0_I0Fv)tpdZ9}4^(5+6dM z2G1aH{q{7Z7mzE`km-P|nIg+SBFm#E)aBnanZ)V2ndgE0pTY=xMc!@gP4nKTJtmznp;5l4iFC80>X1Z*m(;G z8-dWZrFMQ77=JJ(r=-`A__WdXd2}*5`5)Z=_Ow*{zryX`0>YQL{Sy#)2>-+5KY7}> zkcR6V;>uQv%IhMAlmV$sT6px^f_7pbxb~l$H%}54OWT@bw@rI4gZ4TigtJ`V#rJ7k z2|EhN!fJi$9U9=(R<7g3dZe%8G<}wDSlab;*e`I4mQ6dt5*J~8Eg?8FjIQ1K^Knbu z=wGsVk^RARWByX@U*BU~Nx$n0I<9^1V0t-yam&l8#ywA)K`(l}~ug88S`zhYcdte?&P-gUtg1(@R?>I2kN`;wH zUlVs3%dWbYcuU6Ma`daD6D$0pn>;(A?sOIt>HNnVcWrNg?%l=z*<$aic$=phJKe0? zST84{;_VmAG@umGDY- zhIvjniv>F!xKZ0oJ}EYn{3;O~1LveB%GWnwzinc$2(M-(c`|ZM_sOO$S4WNecE*(- z)$_?VKo9SxJ{kKscCy_@bON-HZ1>XG6yN-sBDr`T*?b?zeV7AHb&b=_o?&xF?k0B) zOwmrn3Dy`~m5GI( z`&dWuSo~#ln#0P8)6q4PC7i(-0}@`we&BM(=OtB;GwU9Hj&)1}N(WR9Ypev~yLr^J zPP5hfw^NGylv2pFM;~Q{jnkjl1^1T21x429+pJT1ko6?Wy^;McqAwHe$iB#n-*F9e ztS86n_rZzZJ=yjh-f04?lU94o7tVC#N@g>}#3g zb6^f^8zzQWv>80hiT#;p?6lgb5!S~*!ryc?*hdZ#2NZu;^miMGO z_hGD4{k3mT!Smq#(Vkl0Up;U*2p|Di% z^zX*`Ar>0@&%$?C%(7i}?~N^^`BW`aNo3_rP3Vm#_6R2SN=)pxB1{J_QO0I%BFD{3 z2fYushS;Rar`jM&q>lFt>V*TdwM&7uN7I@g6Ce~^)lF%>PJ^Y*xTF%=)q z!|q%i{mtbA<>=R%L zPL$#+N3|?zkWq{nFRriA#Bf2Rkunq|}MoP+Vjp5y-nN*+C)5 zPh(Sok%9M)n5L3A!X@YN>aLDVg!ZdE&ot3fx5s)VgB zMcfV^zFiX6r%RS)qGGlVT-2rG`&ML#R0o$Nzo3*Ns9zdepbV*YcTe{;wmS)W)R26L zKflbdRsMjaL86d)iXw8Dj=LV)s;|`-kxIo~w zaDe&95KB|M@A!nZ=c^XSQ5zsGhbd$cr>a>v8@5lx9b+?gnrBR-uKPO6q&%XKv{_kT zOT-qOb!O{dU|x>1&YZ{R!UG@TRRJLf5as~k1}Z};xWS1rRShhX6%&C55ZwSl1}foB zV6k#K`T(*D`0@QXLQeai*!1BQypOpJ~LZ^ex~v4pY$1zus)3dIScmp<7`7MONH`y%vw1W zsB%ELd-3Ao*Ts37=c0Ea4{*Wa_*X2R+CwVpLoz)%5QpSy^$p=VC6m{dWMT5u!sJQj zE@#y%nRAc@ejiey6;cyldt7RH6RNKtQ(MYeTdtI}WV%6Gtqx@^@iO%}0luYO9Tt17 z=DfVWPfhV^hZ|_Hpi)%7<^RXuzP8`lZND16b=z+_^{)TpOhdv3R!*w9m=*49`j3}B z`roUb>3`#UdcJw<@92P)Z{o6`??pckM{JM9XP6w@?aNy3{ctPu20U;HWvdI=!xE{!I9R^H^qL0=k~$IEx*uvwVVOx zX8hB(k`-;Uj+KX9KEuHxhfhubdlZv1<|jFtmK>99-=S#7l&~Esel392j=CE?V+`qX zRoLP8eJ-)+`3~;}qOKfmJjNZa4SQdYv^WHhejCHfbudT1g*_G<=i*w!Y;%lOhQ_m0 zpT?Waj@8WuNcLO2=lPZp#U^v)oA`#UEG^q9+RY`@w$X1g68=Ve(tFV!WIxz@k;|C| zE{)>En)($l**+^y?cp4193S8%N_(E|bey77bi)ISe7=e%^fBx*UoT{XNm`pzGl{pquk(a0S(PMrTPVfgv( zBz9qyOOgcAJB094A}RL{;TlYD&6&_`nSQjqpiG)=wm{~6s&7ZbP!IVe4Yzh=2lerQ}K!EuD!QxIU^ki<2`bxUk^(3o{Q&aBw%Y5N3UFjBsasZRqrN)E&m6b@m^!?dU>OKCpW-;YzN(d|wf@qHT!`PpNBE+lK7P z+Sa&JgRSZQ>vA33QeWK`4~oTuB0O}OQJ``BLm|Fr9EKX&$2jJ>gLRIUJ)vh={jemb$>1D}VdXv}1cFzY%g94M&gLWARN|7S2!+ z)92u#F3KX&_ae|nej{5;ga^^fraoWGOolPt_}ur5MYKG35N~+e(RW#z&7TtH=+n$s zo@U;#!5n$UQNHiQ+YW;u`axXt_zWZAZw+?@;n?o4Y)cc{{MZu9hkIze(i$Lv=S+An zWmIb(n3o&0{^Ic5%ui*~qt=AFQ94lTGz(nrYpvy~3^`n{o*a-g;2J-S`Lm)@iT>uq z0mpv##>x$hfdlng)N6d2=7o~|D00vehIl>U@$xE@nkm$=!xN=8@l9+w z(YvszhMl;J%Kj>3U~6l~g2YWCSM$)C|StQ@{HOO@~@DWCaF-n9IdG<*EE zR(}GHetVM1*=)Hjd>bh7l#kPlO!JL{ke6bbe68Jin>KH@8l5gpT*Xcd9peS+i%p;* z9z`B7PYoF6U!VrgN&RP+`o^i0Tdnay{`(yNJ=~+ea$}p0o9{xx=~CsNt#ok344Uhw#$(7G@L6bfP?FIpnii^LXY(M^J0$ z!!y^>QG``*B&l3kA^ z&?fILl}5~|nSsNJ9S3ts5 zPY+EuaO;w%G6*~>nU_bu=y7~AsCJf2U&a!%bStFy9+ufFwMxEz z8BI;M@o+LBf8Wt2n~Eq}wBx<#sj?UKggJMM zMny}CuAuq~)fZGZ`Y3YE(9~tru9%08Tu+i^9h)^uL)1%-ZckbAGv7Vu@G}QT!Rnmp z&UNR*gZbVU&fzY~A;<^0=mMx(3mY*QrJ~hXraLUdLlG21pQmg=3Aii07!}4Crean{1#n2@36_5=Yv?dSWk2;-v|6Awy~EaxgQ#Frl%R&W^x160(=^ zPih+3L1DRLQehCam#g8W(SIwJjr7iB*JLgfGg~6;R3;qmtnn$Tgvw;QBopG*%baD9 zg^HPFEDeDtNdA7%xx7*<=i{iFe2wjq|K7a0TvKxKpgH3xa|YyM*m>jhX+H4)MPGsXCFHsgfdQ!^L6=R8G;BwUS@NFsaC?KrMlh&5O(uPss~WWDfM>|luQ zKgE*=_Bp5Xc^Z2T6^ z<-h>Gg@aOiZX!LI7hSr99)n%7pnu3PQaOA>Z}+ZwFb+8iq5^3GWAoYel>uG!&E9JZ$D2s?lkrp+qzqMhCe(Azukb`z(t zIF=*Wm4F?DZ`MLsSMn|^*leEG6>Fa7Uy*( z@?zD`19+s$-9Y&HjhL{u`oakhvhW4gE9{O$t9LWwp>qmWW8OoCp3mENq2GC~W`qyh zwbXujcjJ-Y8gqm%Y-{X7eYJ>X6Q=cNJ{_ zS<3nP+o8U5qkTPSx+p^lz~!;Npk&ukUsFSUi^|ko5_(r9mD(bQ2evnOi;|wh(@>i$ zQbh!Iv=2u^ey|WQ?)j1;u5VEeKnB^2GtdIWEZ zeg^0CS{%1(JL79q^TnVylC6qf`7oBVvgN~++oK$PP>H;SwxWx*IuDle?Cgq_CAx&m zM=0xDcZXVUZ^3Og7qgnXckmocsNO*~c&H4Wkn}q=bVa|V=c)Y4VI;h;pJXv(#&QfV zV!Wb^ApQf#=Aaj0VQVEqlxV=I`p|x}4z%d)t4^CF{&%5U=_yCvi5gx4Qa9Q>0cv@sbW-w|}32$3~t%gc(7ba9;0H)C!HS?$wKR=Z9iqPWxb zy6H?RJf~vj&Sx~I z6nS2H;h9Aom_W^%ccRsrYdfYBofC8I^I2Alyj0?OapGzZiBNRSW2N(aQ&4*}vnfcv zYawH(;GCG}0%ggA{X7l<1xvWp@+Q9ALR1mn;!XR8o>Z>|HJm8NcW!cp}4$nsq zGltkj&l54ljt(Y_Za@5TrxM5m$Z^XBcc%VmR{EpfDL&$GRd%4%qg-v(J14TNw-K7& zQpRr7lkq#siIKn<10|$@6{2%8=`#xmly+)ckzv_4BXS62K{I1ZkIR8XDO>O3DhV*@ zZaJJNWv##qveBh9VK&0Fu#_`BC-7`0HCv7!a&r8@vbtUI`S^iDy>9B;h}8(8RXOlu zW51altL;hkY_!kf!zI}q?YU|5W`anLjwkIoTa(#Y&~ZRM+jCc$8^5RjP^wpdq$qWlhI!Io@+q(@UT3>3%_ewOH24WQ?69-v!1- z>frO3hu<@ihu<|R54WPXIVv)w9j(TtjVhL`9)KT(nUuZo;Jgqx31+Dun zv@YDO+ZIwEWNIm8)yJh=cUEXUC$yfOg4TUS>$du^h1M~Wfz$s~8xKqqREh`6*k5Vf z+}Clp>`}Keo}&UsSat+|%ZlZTsIk5>Ym(#l|5moReXA|Y77R7R!*O2xb_kH=ylC7C z8MPEc{eKUJl~!WJ+h&)Vl*X@QD>WHMuWoG81qSvc77?>~X7u#**iH|hiIyA>aZjUn zP}z0p0O(a>7YGRJbR}O`$N4j-I{Wd} zCzczYgjuwnDFV!q_1V%K-fi>YLZV}1PHQ0!fGZaGz4D03lxq-{ddLYYy6O+*o}wgc4z~ueT(WYm-NnAZJI^V zbs$qC%o)eNtL;&GHn|srzg$V=xeicH8hbXCehJdALi)2hDSR7l>J!3MW@Y{RwzIw6 zreJ$d&21t4qCG)RK})^YZHDJ#@hjSV*VWkfQZ*VujjlnB0Oh2y@2Ao)Mf$Z!|GrKN z-wxY-ySbhvl1y}+!&lP2h!09$^Rhr>N8%nEU^{phY}W0uAEYuJMW)vyQ$RT>@JE2i zhh8_pvix$)g?DhAe_FI|a^!Nzei1{1oW{?S^ma4wZvh*X(9tR_dMBjZ{$(s*+zJ`X z6Au@Ele-RHGq*VsF*>{g#T0^q+=&_#bmnk_K;~=!(yMMMxC1#U8}U3$M<=<#yok#Y z?}S?aN<`{_Zobq>(v9MxB>u%*w3E3J&GGBR5#kH%%)nh&3c3UCj8Zo}pdzJ`NwAVA zQaMUXH>(VT&Y;Aa)cU#(2C@cc4W3K==XS)b6ozS(3O*yw3OzxOvI`tVZar)mSeh1R z%bG~IH1uza%%%lpR<@KX^jMO|-k>*H2M#%%47gT~iCFD-me$u~WgtYj#VVH4>=u+#3ra~) zszEin3%xpr*WX|c*ZhH9aon<1FuQxJ@NP<_pL;-H@4~pxk(NBWk?jrUNK3X3ww9J` zty&_UDFeH0($vxFoZ|OmFW^V-M%ml2NFQty-HW%mcC;7Bp|g8#crW47&wcb0or*r# zMhgF~vAXY!AlMHf!~WpaTEPQ!`msWk>UGTvQIsm zetT2!&GZg&WjDJOel`919_4j{-I~vcZE(D(M^bRahCzh*Pfn?aou1OePEU)vjm7iy z37s{m9+oZ5#11ez+f8hQ-*5r9zfJ-18NnjsJZj*l`Ao{}<`B+G3~1QRU`V*RQAvjh5}#JIrXyN@$0HOw0T`h1Jm76I|yKrb`jO9>2Y0^2Sy z2m<{;V6bG*LpvQuCpc-v44ZQ$l1%zUpYT~ssdT)4sU+ph6={Y=hF%sK97o|Pxj{Cp zriR89we+6Ig#_V7_koN54Hc6$ehYPc11fzvC{pJ{f72tKk;BKyRr(`0v$Q#z%Uv>G ze^RuQTPT!d=`3SW$#h7}kDK8U7?+@54ttCR+zyt^SiZ?|CpawMIFrgZ9?LhX?T`Lv z^X5eF+R45{Pe4c1pO|>pY^8I=UwhZC2b ze7^e?u|a&JJA@@gP!pek53=+H01Gr5R+g7wdw?5hV2>b4MJJ4ktg+`Wc@fUmWrNSV zjU`6B+u#$;)NW&tZ#s&Giu!8R{=jHe>eshTVQ{5dYcQ0mfj%pF-~1`JDQ@|&*e?Y8 zCpedW75q}G{G2x^lsY1m{xBtNjm1JKpqw=Jqg483u~7OWog_l(1O=q6_e}Q0y)%Ly zVe|BEaJc(oEw!Q?qr7n`XSdT(QZwkobglZ$(44d8mse`#kny zZK)e?v^>)yuG*p>@>;atQ*N}jr2O{Ny60sZ=_c#)y?Y%gor{4!0gco5Ro2d+)PDnlntY-gyj#xdP z=UKg|EdLlLT$ru#9FAly)_68Qm)s2Y8F46s4}$}L3)JLR2IbnD-XR&1ALuqppx_i` z_=(klZ~E;dD2{XR-<#w>KKzj_#oU$(?y%id z72JsU{G|-hqY84Irpb)ZWT((1&5(ATF^$Cg5bI=B`p)3hEq4a1vlSHcCK?tDO~0Zm zWQ4r$CD=zg(sv2xc>Tjan{PaI*rmX+WAoOM5!<@v2irG#nkPRlUMse8jNvsspDdvq zlv<>3r!u_LZ);hzW@O9sAHO{{V^OEUdsx0{zGfIY{ScFn1V(?#etY8j1-k`=n)_KX z_7~dy=dr(#({deLN==5nox{7j(I2zt-v}~|uElxb@aRtfBEF9KrJQ}jcYuk&KtBin zogORtE;Q^iP|R(ta`+w$Q`&8Z2TL4zdbpsUav$-WKhg-!5PiQ%&->kN0L>stZDY!( zhX&Uj-N^1b8`-C4%o>=)dkVt1xKNdL3OLsGFZg^6hpE+Yh`pmK%G@cux5$A-cHt3$ zqYV+E*dyEmp2QaS5+mJ`9PDssmt)p~YqY?$yg%RgE{*E1puKw(5Ch|9cf= z_Uyn}y!fY+Ty~wHB#2x^C!M6uld}U0nUO4$mwE9}Iw?$sarW0zubePtIhK5wAUwVtK2cQ90bF z%YqtH%<5IjyL1ZfTNc}Tm2wY@eQR*Voc6_>OMMw$1zpVFykv|s2DsvjG{(ei_$o%_ z5fj}ZRygA9+{r`Dr%*KFA5JIn;P5w2w8l#%2+17crDDp%cH-Rxeu?L`NZm4G(>d~$ zJogPL6CVfOCQf)oF_r6^W3*o0qIAc?;EgN{-b%1jM^zQYI+3Tt%l~_c+|w~h9=`96OtTBa-s`7)*FCZ+R^)|uG0oPIuJjDR=S+S z#>-yg2YT6a(#xK~PQ#nGi{*M&AtY&Wf8B(B_yAi0?qew_0OBOh0qQXRBJTSPxNlFG zNo{TuL0Cz~b7MfC=GTpFY8`T6Wl9jnsJ`(WE}JBWN-eoNxn$rl>@RF%YKPYr6Ftk2 z(WYnFF$PRm**Csk(??MDoewR+j_)5`v>NwzRw(L1$CeKfHBo2=5vfmE-`1p*)^jF z>1BDPX0FAJH_WYVa}A!^JAqR8UWu6QbG$$Q7x%GahZ`Vm$U;C=yS@l-Zs`?HzP^~m z5ddE~UdcFWSeCXA%Yuo+a`E|1V2~5A+BEkH|qTcnv*x0wCPe6{g0z2bl2gkw@ z7HGB<5Q$ciSKy>&Bv)jllqk!$1WCEk2dUVl7j53W*@^bXH^1R3?aiC%GYev7(2t<3 z0SOFz9#O~j>VX%12yedG?S~)6LBiYkd=9T4iC?MZDmln>=fe8|%WIULAd7ZfiBj3) zD#-K2F#HYYaSiIt48m&t=IWxl#&E(nLAFPCPN2ePERWAXBm!KZLqqcHm2pbTqAQ}0 zIvBHUetLw zetiJ1`wJ%Tn`Se!Pl=dCCpib2}@t&yf?*b(}ZP-9m84{q~v}?aF%i>^x@L38*D>A!oe=wx$D2H$CtNM zkB8qmX+5<4c>8Z@r&)&Gq4=}YqdJl4P`hqjBeHXx$dt#MSedDg@YUBpOVRarcZkI! zER>Tk^tR=g;pO0ptFVr}@!U^%Be_q-X_Wl1m2onn7hufN_Gfn5{)~FWORX-RT3tL% zh<8&`-ils!^deIzmuL-IXRv7=%(!TS%BP>M6P?dC!|3t(xD)l`;3PCrF*=DR=3#AdH>}LMm0`{? zSI$d(D8K0Xx4g@*4Cj4!;VUxmMUI$*c!WoqrC_EXR7KPY>e5i`yoS!%)%AyYo(TwKlTXD$HU8sFx zoVZPDVf@q%6Sot3qxJ>_QfWr>6Ns+$cJ>Hy)3WZPFjI*hb(wKt|Bk-r8SX5$~AZ21&@uJVr`wky`<5NS;jRh=o*WbXrY?Zk$X8{*> za7yO(qnjY9oe`7Y|4-sKsvzR`xkT7@IEOfVbSE?C`X@x-z6)=jV+UThA3aF;{jlmb ziIFO4o1Wes*Yh%&iGELz3_+b+`(9tg-3q*VA%>73{8_MqtQF|t3H%@#nvK{bm2%WP zV(zMGxh*$M+Z_!}VR!V#Wp3ur2N=7KiOg*ne=^QJzGH##>Sv6nV)@%KmKjQxNK`*< zTA!4%N9lR^SeTDQEoE1M+dx}YJ~Hp-7$;Ea`*a%0vKTrY1Va#Ipu+(cAop@4giBeD zjs@RSS@2b&_(#R5F%?~5s+bKNh#`*IFllrJCly`6N<~-bkmw4;#$7ACtr)v5(tDr0 z!{yjvH*neK${sdY z8v=fCBeQRi6~w}tK37BZFK}<{w^1#9t_Hi49KpWYA%UlaFO+GQZWt>tZ&kQs*m#Nd zpO!N|rV*2B^&$cMigx+12uoCw`xuA zZBL)xnqF>Cue7Fjx2Km{(|g*}r?sYU-JZTpYkILgy|Xoa+xGOZHGRAG^jd5B_U-9! zYE9pvJ$*rI`i|}CJGG|o(w@F+Yx>UZ=?h!acWX~y)SA9~dwRV!y}vzupf!E4J$-R& z`X24+O9XI+Ir1}1SH5F}A4ynv&f!?Sx0>Nl4m+j87k0!!f`MXMy!MX%ybW({3h%jz zc=xNaI^(h|yBsZNb&}MIWDix(cPZRr3O72m1$955-Y>OPc|OM}PW09m#N{f_C8iaA znfSli$HA6sv(51H(D5uZ{5za``Ri4GeR> zJ3#t9nAfmr*cq|R;Je|W1m_P5nV!(X84`?qGJ?-`NRp4wRiS+|Botp&=nL`vwx|<0 z^eV2?uf-%n?pApThq`9?ViD2Tb$ED|j?M4|?8SWs_QrDJ!m;0B@S`s(8yMt`&N+|s zz8cnnuCm&2qZj;Cd;pWftgmLg-xZUdW8I@0{?9u8+)0{`%+w<%eJab z?8jeG*`x#Qx|Qf!Y%8wet7lYI!dHtbB(T@~S5d9TUPyA!_OuQCWy_hF$$fPpAlTUdh>r%vpisZ&5_Q{x0FX z74>3@Ypom#aZRSaoYxb&j;gRH#pV6=m*~3ry25Qh&Q)axQwjlaGoTu+!(Jg1*wPRu zaHKSxd8zWS?+M)2ywN_t3oIMq-(|mbbf|mG-QMQc(0yO0KeLm^zUEWC+ep4Sf zyV18C?ba)0-~;(eWzYR}3{MdWXzRN~!r@8;0W%)!+2p=VDa~&~N%b8V1A_q&^iP0} z1Nt?=iT?w z2KJX80S*h}jbHE5u{s(-JAlNPk{s?0W{H93F*`#C!C(KeBnbX1QpXw8e>i)&0kkpl z3NIw#K7_In96#H*|6}?>HBMx^;FJ@H+jJywkG2=+?lwZPDfOA=Zc6gyT4g!kT;oq$ z&exNC-CBFT#0#%L6tp|d>Op)l_~>69eN#m0PIzkItEw-3<0MLaXJ>3D=;&!d zVuq~vg|WJM5Fn0%lz}4?P96@`^;SaEund;38?M@sVPCuTJ zb>VRQcI1UhkQ~H-aQbxzqiZqSjGHVuX7;n-nBN>La@!1D}fjQS; zT~AglQ!ejNk*}@r$S!?IGVY#R&{^nWrm>png#AnQ!ANLWM#|Ke&+m*UIF4x_4x$d5eLLY9gJ0pz% zC-hzJu!p%`DfnjTwv5}_ZRv79gmSa0+?Z#XcMX7bSWB%0@1YD*Ir68&(P1GKshs1IWwibv!uA$T-<`)+S()*{*_r;V1C*1(8%PWbZ-h{5$UR*!EdLDEvvS?i4#>ylM7?e@L4^xJ zU`R~uk6e~LKS$s7UiU>~3*RBptys}6^pXnux@(-4-k;)B^>N;h@Fg~N5z=Lc9j>9D zH@#xI;cjk1(^vqw1Bfeqyp8{$y?wkLeZQ}i;+*q-F0FVVM2#d^X; z$fLPCKK9IztNk{;dUCZR+BarBJM532o$w~=P|xKz_O8n|2fzgFXt1@}y!F5llFuC? z>6|O=)1t+${;=rC?E;Rl&V1#%y;PLnvin{BBwT)|Gyg09^17#oPd1!edQ}(zEGO7pADO>0PpL>7?r;P%W_S>oUyX|du z6a{6Of&xcKDBeR)V_%$S(*5wi(9Y|QV7M<=jz!{Q{CELQ@#q1y&oaaP zD2)Y6-X)mfTfjo(mi1k@fc;T{1DG8#q$fPkjd|SxQg_KFI*1dFF(;evB%_vj$kzSR z(Rv(*?cBeQId5|Fql1}UMu)hHudgz#=uj7Xq-Chaa+mju|5kgPEc9*)_rbaiJWrd9H50r5PmvJP@I7-U+Ph19g-9|10FiRF+VtF>NyDpcO zcu8rX)1?2i95(^~tmtUq57VFOV!7TUTETTW226VscD3l3@K_!ID?Bdg zd)gBokGBOddd;o_E_9xJdEkPuM)espUB2_kH*h%qE9kQT=?PDu@A`3ZOF276GMzmS zS4`eS^p;MC%}wJ{T7a4-a_5EHQP~VeLCFmLaN^}ahwej$7Ft<4s>kaZqT~FkN zcbo9ile>w!jpNSKcOqrje&9vu@lK-;8!u8G(F#^y$ewl1A}alKO1i|2))9PV&f_g! z-u25~^dz-(zF(Ml6H-Q%)n)9wr!LDg(B9vp4`@2zBD}%QlfGoYun3Do1mwIi+C;=I z?{!f5xu9b}IVrpua?>r)Lz*KfQF^?(uN7T_MF!C=5UPXAMTnD(1wXv(n48MCANj6E zzJPL4_)g?|5?s&Dr-b>LsG)d;8}5!XZd#odK|5g4h=jX#^5to}bSnGih2~fjlW~o! z`DxZ**T*jL#o0}f?LsKg;FsLkc6S8NLe(2b(xW+oPUIWY!%-ZRufIh*QI$uel_R{vdDYw z1xgRiXE~w@i*AKPZmqpfDWW^#Brm!RNsUu?*WT@N`{&VM5&Dh=pE{)fa-?I`j?<{#<$N9Xfh{#b@xChjwixXC@2OJ3O#k5-uvKB3;|(hp zJ|V@hDVM~7$=hRTw8(ZtzlQ5kJJ6d>5gWP(hL^gc$i*5Z}#vXc}TZ!%AAXTxlp9Qdx}U_t`#R) zD+9k*luEfEr!*=-uHvhQ@B{cfALOG4^^%GZn6aI(Ydl05zqt!Bx|$DRBs^>MgIF#{ z@VD{r^VE5yyob#$WwYvSavvr@^Ft7s#vj(T$t%1MLyR^vK3BJpu>DM#D=XDP_{<0O zGJsJjxf`)@o-bjLsECi~BC;-}VJZf0e1^W*IP_X$CPz2kDbFD<4rE$;e@ts1($z}I zDml0DMIZ=;3BxU9WT+t;_E_OZxpHzG>Zb>ps;E=V!1e@aCu|SeJRS?alS_ucm9~0; zCv62X0;i^V!a90BlI#B6xb7d;nKsVXvm`5Ql>48m`7sO^8#9@1s+M_QC7E7IadR>= zi&*t0+Q&?ICw43!SA(I}hc34HJ+`$zssOCZN(lLct0V|EF0e!f9slSg)lRC>_?N9` z{KU58C$^=KQAwufM~}LC9I&lrePYQ;7+&D?CY`Uet8T@cd=&1FM?tswH7fh`R{BY` zIo(i}!^c1NdbH&wjis5O7GtTtCHxokB!t(+OpO}#7;`j^DcDMSRCD58!Uw6|<-itx z<_ouRQ~ltoejt{li7->is0Zl>aH6Cih;!(Ea5#ongXQc;dEVJ_wHpLrxp#{FGH5gP zRc)tb)o7o^iow=3;S{V1ycj%@+7Bw(j(2ZkpNs{$nmP8Vf4ie=E{wAxPD*(RRZ}jtw zfWIo1AZxoexsQX%eZiGe-2aPTV*X%pSr?$JFRHSh;H;i#;n4D)bOvSiC1mzx&RJ3` z;ck>X`W2Uto}P@8Q zCY*%6{T9Cc_QY>5#kb#4-;VRQ5U`8E0j$b(|xBihgx z>e_;ba{VDvn?Itzqd#_)&c)%Fp6ej1jR0tM8_`c(br5e_;ZJ!`^|(PNikl@aXZ#;B z4R3TgO07A9!ed3Kz_-7|pI=Ga4>2vf@f!6H{|SE$=x4O9u=zZy{2LTy zH($W>i!R&H{MHp4nwMPB(_~p5xSIRpH>&@B=c>D3yA69iajzMh%J>^uaJ1pTwIj$z z_FC(o1V2soTIL8!vb#H?m*Z?Y1Zz|I$+m1>(%DEkE!l8w?CAI0?VP6-{UJ362V#`p zF?2w%=>27WCwkl$gts+O&c32D1#CYJ+b@P`osY|QJL{=0#tsIJQdj)ZRlFPa!mIWA zW`=)4#joyU@a|nIda4;7&Q3gn2>sExqgOoHC+7XK$KUe)#E-Hpwo67jzR*IYI=;G7 z+buZ;^pH2AUWcGw(JSD!f95GH>(RdB>*KR%UT@e=Uc7q#;%Z%K(bz!0H)H;PE->6| zrxAXVejEGucdVBB<-9ThA0r@F&|}?Z-dDS9Xc_f4C&%BAkd*!=)B24viVk0c&vHcF zvHj>X9<7R-+|MKC{9n`j$uT-~oCdi>lugL_649C|SCn#qzcn0Uh#NNmYcX@}BBb%i zJb=gMtGr09-8}*0vH7sY;L8&*9-Ds?>~aFeWAilu*Ap-vn|~K@BLU;F`40hKn}G4y z{HK6-Bi~D5EDwIA{Itg0W~ajBdg>d;KE8xOTEa$|&So9*5AwGkU_3A;3khS+-8j zH9p_pqC@hU|8}8%QMR2|7&GrTdc~HvVEl+k<1X+W;q--p*j7_!6yI{hGpfr}_7S$5 z7`>Y{)oJT-eH&juA&*1+7*9b(I4p~qsatJp>Ka=v#^eiZYo={+b7;WehQ}ue_V{J3 zJ;Ef&ZhFm^=zaZVLY_Rr^1+#td?3T#hrT;AMb96b`U9jlXT%@aSBluAGcWu16VavhwsT#M9U2 zD}ad&+{(KvzO&i0lK^2}k7e4?CeEC3@;)mieK*?ds+%Bv!ifxzrO%UyDu%Y_fnL<5 z0=e{%1bz!jX>2>t8a+nz`{vr?JJiL*<{CVP?}VmRePpwie}MJM;kkPAX3IXF)r(i^ zTqQnnqhnAXTsA6$Z3Uibr01~BJ|OSLSpp8JZlv;-SF#(~x7X=eUe5A{J=w3*7AG)r zvR}82{ptNa`qpl{L|V@Rmd;f_C~pwU#@TkK0?-;|@(Y2fnV_wXE)c%1mF z=9}pj(_atr-*e&9Ui*{v5SNmtucA*QnhHT(7j@*7_At^#zzRMbnU&| zna9OzezFdH#8B&i4u!h*gbvO9AHd`K6Z8O5+KEXT9@n3kN;@e@!{hpsQfVhAX?R?J zaw_eVBn^-2Pl?kSpC6orYfA%^to(-}$7wa${`P(7-|!k%_Rn0g4=loAbM5_)zjf`w zu4Q`o8Git@RX#%Q!<|k9aC3EsO&wVYFlkqY1Z-7?yE^R3iY_9M;hdGPBW#`N-(1~k z1uf!BS$3^vmI!h+>l|=QW(Cw8&H+m>*Ki0U_ZCd?37^t<3xD2QqaFGY>h0Zfv95E# z9QwO%Nc^fC=YZ3Xs3blspCRanxecq1{BIj^;uagR$~owm%qnTdLH|QDj#O{=sLK}) z+DegT(v*WvKQf68`DNp;G)kX2gf)$1u4fkc?H=e#wjFUDV(B$92(M>5Yf;cfwNkL+1q}rn(Z;5fHDM&2SRLcsoe~eR6kXSOR>QOi# z#?iyz#yEN$>=;K6L@Wzb^+@!`IC>~zF|9f~X{o}gDoDKISLZ0m@)&0;1&LSl>edQ! zSd6ocg2W4Pb*_RO9^=eYkXUZ0&R38)L}ztd1&L*XYN#N$#W>puWF7WIO`ExX^D17W zQ-LYofm7OYbR`ECa0p3o3Yj*XOoeeWDICnrHmty=Qm^EPG$QSylgT28PM_d8X*@Sb zO*_GJdj-!;<9UIXOfA9lW(uB{#`6O|p?bmdiTD{Y-CAf8lbI-pnc0HZ(&B88O{SyZ zVOBC?HjS7Ia><+igcM$DxV^FcnDbb^?txyOk4G-4qrBr{JC3p4>4v5-bA2E}Ch z31X3EAtM&kh@C-aG6w~*vnr$zbfyuzg05sD3Sw7PjZ0S=F$jWW771cdRs9&G5xax# zWZDX1cU4hDcN(!2l-fzGq^ej-LViUq{9OvSnBdw`XA0SlE`p8HB;|Ic z%Dr$3oFIkM?XeEVG2kTo6ziiVRI@Z`HM9D9%oMx_982Vj`zMw=Ey*Xm3kN&Xq^pfd z>X^di$cDA^tg!4s$Myi1RKau9>mim*ZIu;Hk1MSZ`jA1nX1t{G=H0Hhm^Kf*OHf}_ zk{0l1(u^7Sc3Lg27k|4l{#Jbu%>>#rX`FAxIJVSQ4Oc4fSyQ(;JubL$xOT=Q?V9a@ z;*8e1?XX9C-KrDnmf%cTw>heA12kX0PXIgGiXpfo;wE!sYfl?&Uy4W89ruK{*;FA( z#J4mLQD?qLpmF^kT4o=AHa1Yl&V$dMWE)2x{mop9ZbaT&8S5T>?bXZP?XMdqUQsP@aK(A!?}TC1CA5)Pw;~O`H3lCeipquI zHcV=BJ+05P*naPum@8SA_v~^JgTU;Dr4%ngDlykQ5Go7$9tg~7r{H(kHr4wqwc~q}*IG_IV8GK_M6{K{z zvArSetH-+#A~y_e%-lHoJ7j!pv+KQ_ALrKFL~gZC_6Me(teI(l9OU)PlzB~S%c~-J znaHhMa#ML-qcV^nZVDY+=1)=s!_O=G8lUY^o=wWD3}QoLj?DoXZ0qUBX=BIf_x^Nt z>bJ8a4C!Y@*4=9J(%t{MHhgOPCD;|mZ#B2PYBAbTUR86G{Sh{e-)9?Fu29wuzu2kc z-fnGH!v9O@iczf}Vl3HQMHMVN`|xwAk9FSQoj*q2V<5{FbGo)Qj8(^GQ+fiM?>hWx z7w&~HCH)vi9%8U~>uDwRf^QinhhD*0EKp-l7@JV`G6>bOF)9M|1gsF4nGX%{0l@%@Hj+tA>4O-n+c~w|L z)A!~#`ruRa!Rhq-Y5bPM?UA@`I#H#mBtFT;ob!0j6}mgPE4wWjL-xa2wUke!?PNIP zmO5Uh`6f>(2$$n_2CgxL*i@ZiJAv?v^?h*tQim!-`nA3@VD4m<({*vVF2j&ynG$j1 z5vS~d1tsu=?D-m5%%NQUXAJh3xcMsCw(oP@IsSeL+9e>|DGN}^>+T4=Ua8ux=(oa_ zs#Z|lgsd?s`1)9+EN!V;XLqNn+MCl=>+0@GRgJ&L^{@DTF;|U2-QC?2s^)lh_-Uvj zUFmnB%{==P;GY>?K%bVEjN!Q)U5G8tjzi4T8eb-!)fWvBsGrpejb|7z2P&{b3^Dc% zzrq?K&ZSyfx_g{uHQb|?*BzrF9h#_q-9DWITFqy=oP5_LXP{52q^AI19JBg93~#0A>2q1~Ef>bF}xm6lFh&t(RN&B?otwXzF+L z#C#=uf;Uq%lfWySZYL8SYH;j7mwPkQ+$lx39^cia>2+I0vutbI?eNf*L&Id-tL_9w zZ&*kIr{p_<-#Q{jY|n!zsQ*Tr)i^-kV^(^(+N#nEZN8pf`eepZHp8Ai0VD676Yflv z_Rk3yLaN&Z-6G0;ny9T!`UJ;m3WAVd|5E4^SzL= zK-IAzvBF#yD1OI!Yr1~X3BQ4LK}_e8_r{A-qv=xI^xkuVoU^(yk_vk&OMHAq@sB zYt7>w-d4u{t*m{WpvSJvd2>ESBKNU*&*z6@RuJUj4U|;K$W2Jo3tomHob)J>C5?v{ z*!;*a+yQE=ox zQ@i^;coT-umf2eKPCGu2c}Qi{-Ifu8Sn4dSXoxHDn8Gc`xY1>X+GK}!bA&0zkM>OJ z`{vgAZa-Nu$`LCC-3wAutsIyCW-sxPcljQvRGxcGmM6Ok+nc7LJIXb?CH-=$^aDtE zEB;h!aqsNy#r6u5v~?fMq;|G2u&j?J+J=HvzzJDt)Bm(#jk8i}e zjLWfq^Kw0duWo|ZU37@2cnsTCRg8m9Wmjxtl6GI1^lfzL6n(QS)i=vM)?F3YK6$&O zt!KsP#0n3COqEdd0h6a)&H@{O4hINr4Uh1&AUP3TPlK35qa(do9E$XB-Q~14rFkq$__a9UKBOi_cQP@g8bi_nQcGrf z(DN{^zA=z4H8BH1zK=}S zUl*nNYt8elRnv3gjEQ}9yeDc)=-W>4VtpGPTlH-xwB_N&d8ooD@e*3d-IEv#$SjH#@+Fqv;#;v`ZpEF_8AR#sW!JroxOJ&o67i7&g5ZZmowLMRxCtU zNX*EG_fZjr=1Cp|>P&R9#~0Nc%A#9zil=;JaIJavMD;s_3t`oBdDY-Hy#A|qwuth= zJuGDf^#GTDng^{-{7NZ@^iQjazpqR zh~Q@US4d{fvpk8mc>|cIm%*iTSvM1{qMz|U$3-Qr1*~~CXyqLGvk|eDN)k!DaS9bN z{W`W_;dm`P9`}>bn`A_9y(;%)gt$j3CEUe8o5g&LgL=BrxrDj&w9T70`#J{U9>(r# zj3ZC$Kn%jXaXUc<(QdZ=8ep59(}y}%E4S$;J+i~JkPF{4oHe6&BIv=1DWCPf;aKN9 z@IgR1DSUv#jUvK-HqS~$AF=ysOKBoTKG72PVz?B*mtp@o8}+s^OKbKZbJ*LsSiL@?ac@l8xJFj?ge6vTx%adHyP%-y_eT#q)#m46CxnN8}l| zN;dwmtAXd+@cgL2uf_A1!QO|{ zwr)*(UeXX}xacmENJZ{U9@*tSLBdmU9`!rH!nU-BH4GnP%3^qUDN~{6F1Z*~?5+qL zb*UltpEHMv;#vSDkFw=Ooqjj04BW+Ycr_F9^l3PAk{0+g!*hu%6y3mIZn=PXxMXbw ztA5PXJGSm#Wtdht@d_fE$L3vhM}$|NsZnyC#rmnG{~u*f0vBV~{WLSpO#41X* zg`|BakxDBSS)vU!TBSXaEg^}dMM>Ey%91q+p~YG%Z6qNHA?p9!d!Jd#`+nc|_tQN0 zIrrXk?>)~s=bpQr+x2I3l!CmKl2BqWe}Ez>o>Bs1>nLCfJx@_21Q2ClZRi-^vTFju zpolTN$T_De0q01(p-%M?M;CIn@ZmR5D~q!);Oc~D%z&$BX<;gnL?$V#n!u6!YRwtV-SO%F|fn+AvnfOj*Es+N4Abc z&TS!(eXh(0jv->;K^YK{7Kq%b%QC2---a;a6qsNNxXvB~D5M-{_m7~A{2uJA7BDM6 z%u2!$;%ONC;Hb+KJOiq(BTp@fbOZxyji4Q?IrSoW$a$d&AcT;Dz>tfG6ugP}ISo1< zCjdRM8lwy(_UWIA=$)xchxig>IW&XYeu=C&(Cc8Gjw}=UFa~29KMBsh@qSCTWkW(& zHj-HJpl>h)wl9U1K!pc9S&2aZBZc_>Z|_OmaiKCn#R7fDPeksKF|a?1_jm>Snxp!| zoGrP=?47S*I0ojhfc6Lk_N*B@4aZji33p8-2%V5BOS8oIk?94Ns%Qd*3b^k(c&r;9 zeuQpgEWsF;irG`FBw%%cgWIS!0#HRrQCi{U@oXRH<l^Xlg&E>0b(Bmovkd?R$y_yU=8; zoUjMLML$spQ&wR9g0+_lRxUvh-PuluTQP)b5n#p!vJ4GQ-Uv;5#Ix2b0MEy51>YWA z0ZD=vI$8olfJ7uS1ua8M$mv0~Fm4bSa9V42;7}r(AIR9YawYFt7{{SsETmQN8#h56shsun>FhI1lL*~HZh%LvfGawpvfvskTx}??MnO3yQRN-h z)1xu$ zn9A5Vd=lYZLHn2kw zF#sXlVtq+b!y)1jvco&dW)&ZTNI=Ny;2j|7WgJD4iXIIe~xc^T+opJfph`jkY zZ!q6vBFqOKjQwCn#FmK9XA|LmnM}AwV~Kxm27?4nM1fxqHN+f~E!m-Sre2s0;3-7$ zrCI^IgF+o4a_$`g@(m7$WWoN9d&wY%)M(6=gD8%z&EXsf?qeT1&e#tsj?Oy)mM5X0 zGK9hb{Qx-fA&EtB-WZuw&KWv5?Sf9(A(xrx2p!NoByIu{HvtJHn7}Q-8!TCHgA8S0 z3&4(tMBrWf;fKBgvw{9$oCa4PBv_3(QU-^^n1vDciVvUXY($4w;K367SQYHG&|xoT zsOl`jdK891|o)~G~ zzH1%<*S!!Co>-CtVC7K9)pbmg>~Trx_}v8TLr74dpl>)}ADsa_Y6R{qBE!$g$^{)R zx^FntN`tVT0^JqC!9?guz{TKI*bwn%0I>K-A_8zk3z7iVfQ#WYhAxl|8Z+!CANx!Z z`x#`7sv}{tnOpE z)Zr=iu@JBwf(o~@$qI3yK*VK*Vc$)IgI7)zv^WuiTChg3!5)4~Ao?zch@ql;*_U;o zO_cZ-AVDV!$j1Ydph~2}ceZST-3wR1`oFXw$p~sjWtA0}}hDz1!)U&r3$Nn~vS9*8&xxZz|f;9wUbch@J8iOzhZ zI+F=NTU0_DVjXv5D8hu2to=yZN=VC zjyw`VMT^cV!fElYv6>RM(NS7>l{RXe9H()DB>X%rKV)KOS^UZ+Fii%wHBo7W=zurM zr~;H8%qT?$rWt2;nJnNeE5#3|nb2t|OeI#4!R96jekOspy*2Fin(?-m1Z`y~x4i8& zv*xrnWAg_=3nC{o!939;>9lW+1c<_gvTI{9t~Njay*5H5Dyon(nJS9{%)bW4?A}S*nfcGSIQ=}Br>Tean>CxQ z|KZhff)qKVxWLYBFi8me5oK``Anu01JRpVx-=5Hs9DcVPbQ*+(eSt@_JkT$M&c?7p z)M$4%XD=<-!PYpg+_7#%kr)2i$U-3?yEL?llbDr{;ZF;sV|E%C=KUC=wgIQ;)sm7;&FN&#W>G;WHN7DFJ=SRZD;q@uaw? zR028dCmCKKK#c)!3@5CPtYcuEf(>!uKv>0K*iiz^QCfTgPiN=>B<(n`#F;0TT zf|F=H!;1hHDo#<+%o5`i76;~y8Gax@#m3r}@VZ3_D&sWBHUcJWfh0;$Io{^(0@ocs z;HGE0cU zxMXFVWW;d)v2m;moH))s%3#mc5d4mgJoD~G;EFJ8oFa(^+irMWDr}4cI}`5s5Ul$Ag!5{2A-Hx=WG_642w=7^FkS_CO<&MqfDsg&egkuC=vq@* zPeHh86WxVQMI(PWHH2!TTOvswkpZWlIsX1c31Hb}6zuQCc~x255_r)kK^1`M4A3*g zC-O+6r#RcQI)K6`UeD@OI3K^33f56EH?rNf5^(>3|Bbi1*X$T6o?}} ziKi7_;_UTh0EJO-eVI`T7MY1u2BzAlk)WA0MVt@6iM5<(pLZZI4gadEKB(&@c3s^t zAofLp;Yp#gF2lJ>DDgxzhXL+HL;xDk6|oem0P6}BUvQ$Zu3|ymo1A$)b0TRu$pp95 zNh{&JJUCP#g4M-P77JiK8K?zdrBPULAynqlBGOW1X(|3N%wUDbiD_}qF#Rh*i2)CW z4p2bwI&cB#sYK|282-Aup0oD2yr0X;Feos zc(b?!8D1Xt+qz$qI!N#MT@_>rQJ;+_MaPUN^3*n_C7$5KL9Ha!G|-vrEi0q#cN z%#rG1q*ny|fE*>_<7?>h3R-_aRKeUw3U2+S@Vx)8PsMRhHTIN%%}2_6of$(Zf_ZKAAvQ0Zu(o;n@eK zBymIr9NDKKKRJ@55gFhKKmfV;0SX5kx{x5_PKCxeb%B>iFxh+!mxdS@F|yLpehhd= z0MDHPx2X7eT0oCUfYu~gxFZMb*e;+jmWgxDfbqlgU1~6m98Vfq{_*L62{;9&lOLB( zPLzWb=MxvqX8yt+%n`|OOAqQ-DR4}tA<0?8t1ICyDFNM!_sMiYL%7kDf)3Q^kvTE= zWeQMFx8r_9%!zPwIzBF!hW=N;V!~8VP8bOe!J%;)<_?aOjJYQobby+$KCpi$AjQu< z<%9YL_IQ%LznVl>UYbLaRgTCZ$q|)>S1F4vXDDKA%^}GXC-S^05EXdd6p5TLM?aF` z9$9TkXb;||BHzMQKqkp?cfhLm_=PuW42VV04K|#eU6^H74XnbuK;p{b6~c@P>>+Cg zx;PrLRfrrbu7;f!qYFrlDXz0)`WRtCE*72%pY`~&0e?2)PX|8qe1g9}#h=gc=X3n|0)M8Vc|j@x>=H4Q zgmA;*W-G-87OSlODa^?4IFiS32hz&*W?JpscJ<*_wlITjOu!YHoA z1g@$er3ISc`T?!^VVyQ07~};KPnaRe9TKp6H{C{AE`Ou5uk*2bD363SL5dLLUW1;D z_na{pFxf#Fhz9Eqmti%CEH%)@#c$)Oc^s&D6R?s16h_5w=ZTL8@y#H9J3EST1qmGD zUykku--9VgViIl>p>;|cqa1-w4BcllX7Y=~Il@l3g75G|BYC*55azgLGiEl1lf!sS z8BC5pOgmDz3HIfPF$ckoIg|JRBaMZrLKshaGZ>cz;-;|E^T5={r#FXjhd`VLJ3SAK zF+RN|jLQab)7a^GV4CC8o5HxmAWn^)o(DF0e0nPwmjmLo*y(v-+T+t(z_?rxH~Jn?u400jDZ0KMm`kge|u_&4%)CCD`0t!gFIYZ zwYWcKGCa#=kMT331uS>8g8n7u6&7m=j{^dqwPfWHOStAl2Tp3qm@)&(m>zZlYAs?+ z3)mjif;RoMfp9Adw}bF&3Xl9?Z7&3sQ=BeCIEmH7K@#`VOBSTqz?0J0Uo;kR1b@n4 ze})m*4^ak{O^gA^Sx+(EjOzvfSqL{Y;e&JoAl5Sw*#UPofm*SCQwS7r>=KSY;hYXJ z21UOfn@Cuah}M38VJ~r=FcSP4wW3TQ9M=TEa_Jd#8X8 z{Za9EjK`WFU*dNS^t8EN5LW(UIoy!7Ca2< zhW2Pp0DXxmf!_*MgGf*zXgQ!TyFSqzo`(eEvU%JqC8R`X}xfjVz9|*rk;g2BvVVn$|MlvKuAY(0C z1nJuY=}U(@ODXauU~8*kGXcs?4`QVE9JU)kas%Lo`H1ZXIBfR`r3O_2-Zd$#HbAN` zi0NS#FPJ43fEceqWIxIRbH;ptzW{`!=reo=zebZ#Ss)BtQ3KWo2xWy@p|@m&9!K1c zA=b(wGRi@(g{lXc(`ghi=S4U-fOA7B;07w3O9ad{Jk0t2Z^!eaGY0qMp%?CWVH_{^ zKwgylcU~;#;l+z%dC`!-Z^q`u2?VYAW9!1@#h!7z_>RMiFb1|5=d}SYuleDh4H0RC zK8Z+B#G^QTxO5yJe&h1t*D-wfm6s2%<9zrXe4Ouy_kMuz5DNbS;h*F9umbU+EkOl) z_l9)+igY=9vh5odsKLl+_?ZNG5ta!HVbQ2aD}$}Ka5pfnq0!k{bWCMArn+ziMT{BZ zFffq{85kflOd>(10wBb|!-yM)*=jiMH!KtU8cjxtIpqU|4|f0oD^(V41}4H9#r;8O zU{W%cR78@5lEMY27!XZ2LubPPYF3#Lm_vkP5;{UeLWo9q5K*XLrdg7VFsbrj0u_)! z!&@#sgoljqjB-f_>LbN3$qyswrjU62yu_13lEy(qi~+UqKy~4%3h?m2gM;#)ag0J7 zqo_Ry6{l}`Z@Rz9B{UWSH*2wTf`Viau2C-Juhe)PEMbHgN1(Es z$Sxb@0&w8`jA9gl8U`Zc_%JBE83}JGF$O?b*zlGTH;8l|;4)b$YO5I^?CBu~Pl3r$ zp&oI3JVm1LxFWTVAYB{-1jwikaQ1d?r_BANz*$QR$20DZGlcbqh)1|dfaexqqCj6Q zaF`s!MFPJm@YwS2NMI7+!381_krd$~L7sPUbKob(eCXlUbok%R2Pl6~L$iJZ4SfS> zXpCw|Nmc?SDM4lO+7EOx`s1-52FL1a5?t|J$D>zp=Mo%UjibN8(ZO(RDM#Q};^^JM zv3mFGIKBIgqj!;N0`0){E^N}+K0bJyZsn(PbSw6CcyudxsX_dIw5jj&*fID1 zN1GbfhbvEzkUa7PBm&73BC!}(p2WEF6wP4*ac;c$-|`kYPTr)r@+LV(-XwYDtpS%e zX~2NeNXFwMJ{8|!s$_t|xCF~8x%8399qZn7&7eIppD1wMe{~}OI9D&M#0@cVX zP<6OK@ygQ~KJ>>UPZHzh35*G%dA|2Qj|n8H|7A?@gh!Sd|Hm&^#uSH6Lem9rK|B=^}$MTxWI9{8?;Wb1C4KA-~ zjMdv*GU4%zv3eV{aq~ESo5tlg<`{ls^77jooZmFTC(=axrVYYc6#TIC_|1I!|~8LzKw^6{>`4ki+MYCtf4~SpTd!`sbgh~IZno=abyg} zz~~Iq{4i&Kt8$g`M?T2 zZ(bm`;Ea0OIJq_C%B{f|xi#RG+b_7>8i9{$G)`9g#Npj1{BV!yZdfM+B&%%g26p%u zx}d(n0DXNUjvN?+udjue2884Ek-&n4vP^Cc<1snVyH+iovz8X4&->j$1=%p}_c9pw zy$q@BH4;FZz2j(O#-)wv7}}Wf(&iUV8*@;1^KrBpM6{t0fbY?CN!(8qFKxhh#Lx%P z2I7T?U_+6V;s7Yp7Cf{9;W!gSD^oVDOcAXt#^gZnV`yda5418FODofHv@#n*tBi59 zvgXptY7DKccxgpMORh1qLEUGMqt!5?6&3Ee+Yf1FHI`Ojz=p1{kwJJ7CZrvqs-43_ zAP|nTLM}y-!t^F$4RbsB{wtU_L7gd)k2MqzQb;-G(*x zJcKYga8Vo;urG7%Ypc}V2{K?b`;|}xHQrh_G^}aNy+g}JUQe+ zjyw{U13+OEV+!zW04JYi8A4b*F>EtdBtuMsdwz#P2*BGyLI;ajXE4JCN(JwG${QwE=lVkVq%SbGi05Hm2ftCV6Xp}Lz`wH-QH&9g07@L9<=l*w`4>4vD z)N_mBuLnr+S`h8uZ-!J$q@dyK@iwR-&v@IC zz;DAIZ%-y@Iis*Hs#7Wxo`@h2xb^^SHjh03xEqZLxCFt+1duk|aX0sa;PF4W@oc;6 z=s4LK;mXeF7}*)+l^p^N$qpY4tgX_<$_t4G<%LE7ey55cO-HF?uGiRx{Q=|NFd5li z5O)l~Ge$-LfJFvH@YA4-fOLkYh*-0iM1}y3hkpcVZ2n=-&6JdI#%ciLUu#VzJnj3JwI)!)Kdv?DBAlsOe|_`Oao>D| z^Ub*}z`rSM4Em<3Br=1D?~yiVJ9Z$kgm`tmc9;d$y(EUC{uuGViE%uzfopq5jN zd2v)YJps$Z_gTep%8NnhVmRd~u*)+?nh=(UGO+hq*#RR0)fp-;6F4t8UxH^kVy?tL ztnWF?boI zcOrGn-j!Y0AKbvb4e@d!Vw5E85mQda+EN6T9Fq|*gGfVr#9PU1-U^2kYnxEMO;pZw z8VrJov#?_TMFQgTM8tKta)YHIRFLb6iHt?O{N*Y!Zr=IyY0fuHpc4LGM=$4TS^felD~t#x0omuFXJR?7|6MMA;wWYp29%a%qoCl~ z!{_j^&waAnU`&ij18GSx!I&|^Zh)8$alptTc$jJ|KkVTYj>no~oVFJYEz<$}yeGzh zSKPNHVmAPQy(2LueSBOxJ8mVDu!a=zmJh#48aNy(0&k2^I2J5LXvFy715I{IaWG)u zbk4Ym&Rb_|F+K(zm?$y(ummG`dtx%!W9ba;Sb9GjwjYO`Vc*}tamzps9sSI|?1hOWhAfT8PT=wu4bCaw!oD$y6$8a68)yWK+4le^ zaR7vm3&Hnv#DqzX24*Ydv0sKWg~w*%$S5(U4V=o1dCdO9ZaE! zWQHeyKaBkhV<+(D$Kt-hxbHAdX&mlfFzz?}9fm0;BHS)0j)cI{EM?l*F*KH!p8|4G z;V*>(@~Vuj7nVi{#)`mSVVGvpUuh&@tQ7o}glSa&YM(5Om4mTrj)>e|f=OITXpaHkdO7GK6W(@2 zg-$Xh$g4f-1n;k8v*YPLvj?n?u9vCIa_S z*R$&;izpH*V9yQg-zi0=h0-1P)+?Zz19#_m&H4YTIlo-J z#yE()1Q`#ZR#6y3qUf4p%!En2gAtS#%H*P_N>JJ8sehrT{)L{(K~F{KX$U1gYDNLWmOa3-LO8O2-ZwIksh$Y=0O{d0|z$TEC8Pm zY&d;r&GE5$O&3qdV=qqUwHMhmNXL2?=!9iHH~|R;AIM8Xs5vH{s1KDLH*XsW%`|w# z9`0>|i5mYI4)4?95$-nt_gsV_$K{S9J&5?GCZKVe7g58Oh>&I4vq!NEqbHV*DR0dpG9us<*hCyAv4 zK2E?g2Dn>8m7sy8Hz$B;`jPvBcztO!8o|joVm^WApBVN%Rt1Ezf_$}uRt5+9`G$p$ zJivH)(W~GteepQ4Jqe%1?C01?Pl-5h8MpVm)p@H1t@;{%ovJxY?(5An-hTCEg3g;I zJ{QkzG5_jZHPip`Qp1edECa`mJC$o*m==S5}P^Q=7* ztSY3!Bz`FV`tfGKbuvq*aCx}f%ADXus_ioE{wEcmUbxy?Y?Y0*~9A2tln{Bb+Ov8_)v{Yj!yPl)kvQxIo_eje% zkdH-_C;rT+4>$7G477Tj@yTD*F*B*&cCGRfw?$pvnUVNlz&X+&`(%-#V|;{{2qh4?VMfzKvONc8%NSB<8ZBgRWkQD^z!x zZ?<%=-f0_^RqU&smD#gv(eO_Gz9)|qJZ~fzeowdEqCD?z#@gfiDLK{7D-~vC6g^0s zHec|L@HEr@sMMFINngLMkzQ8vZsH}@KnY_sTld4{_iZ8VU-I@hGM}8t-!tTTTUc<9 zeNkeApGU52%E6gM=H;4a-kyIH-$31(b92Tm3eop*!2UjAySWk`M?~&za!YJ>I_~kc z`}b?|Cb8!t(>8j)ecb2m0P1n3*7xG61G6569jY#Jl5yH!rrP`US;xU{bY{nrI+dkzYM(6Jw3;Fe$Oz`(QcR~1@jo)xNceOJ174{zQ2`o{IUZ(jZM z-(OjKqxW;~XU)Fy9DDyE<+@uH1_>mm1ytI^R|Td-OoYGFkjP_VjfI@Yi4d56Sj7rj z&kFVp4iD4e%G&sZ%3~AytX!?N$~QDzYh7SixNop;sP>w$57#y(yfQ3h{2GlFJoMzr zULVi$eaqfVzFvBI@}Wr0-IIqxgKRB=(~b7pRLt}3eK}Ni0Ww=GvD0qIri-*D^tet^j)7>c}wc@mWamqdftDg`)h?3_RW4gaj0LSUFcgiaXJ6< z!fs}&vS)wJPv*H}4UImZUm4Ugwo5Wzm7jK~O&(p>7cHalT-8p~;9Lnm)>(tP|G3osWIwV(^)Hc00_L#g#@>zA&`OI7EW>M4m zm06iq6G&z*Zkbl4UfTKMZe>FwksB(83>=&EXAg%9-0@b=ORO(fDc+S)rOx*)X}JI9 zg0Ht%iZ2S+MKO_{mTQ~iV}cZ72}hl%&C#=VFQs0Z z*DFz#CH2g4>%{DK^02se>^rfWJqzphiX<%)t-rg}_pU;-te8@5Lx{w-?mcT&2KAq$ z8#MfWqIbA&UfIe3&v;|WGb-1Mt*7jX`P!B=k*84l?T{kTf-BVV9az5e`|H2HVW)nh-lMYS*aKCE5c zu{3CN!uR9nsuC`Lt_}L(Fd+2qz1q*fO}E8l6Aorw=X2xx68pWNTJP}b%rp}*V?`6K zzA9b&Zn4g^w3r&BkJ<}ArQ~Fvs%=+aFL~Adj_D?~(meT(PgmZjnJIjse>>ybR4L!K zaYD0FA3xTG_M89tbpO+C3-g}?{u54wuWS6NA5Nb+qvMy*JHK~JmR%qY%=V@`RR^?m zUMh}FjOv`1xHROu%ja#$tK!yvY?K~6?I3qjeNR*LKxcK>S_7?Z$!W^`LM>Bwg{c0V z6LL_f{)x)S%4wC?vtE7u{ZxN_TvdG6Cq-PKi6IUns0YbJ+a%Aztmn>H;HfhqliPhx210qy}se`2JJVdZJ!D8 z?Yk;{qpIFS|GK(zRYJ(4+s0%)-)u9Zlk)q-iHke*0`;=f59mL&o+{uJ^|9*rkn`qC zmK)Sf+BFhhNht3<9DCO#LjPx3_=-o{J$rm)jO-Yvqy;aC?WPu%tz?Bps_w8)i`E&| zxF*qg(0g_BVn@>-=foS2eKfjR`0eIJO`jRNXWB;ai*KzDac$aa=~OLfdx~~eI!k?5 zR3>$A`?8t7b%kxWnx-8R`dvNHelDhE_HjwgbtA#1ri#0c6c>(MD$Z2ewe?TcK=-5e z5(BHy@R~oQ6IahqyE$ar+SPT7wJ(IFmn-a;Hk!D})?-fE^sjzuHd|iw<%IJ!c7Oi1 z{_`<|-rQWrxvdAT-G8_KrG?VMG-_+%$o**-C*{8zt``$7ldA4WX;$#>c3o6OP1lQX z*e1|ztMNEO{I%h-6-~R>OWsP@y{3{n(ze7v>Yx2fDxSII5B6OA4T?Lh&mET*o z?=vr%txR>5GL|CP1!R|k0pQ5fA8ie(>>m&Yz?@2BWgDPZnYY*%zY{HjA>PO^s?wG z5;srK=+7tg{Z#3@7I1m<-h&Bi`b4I#UJ;ZksUe{LTPAJid7J&wFCJ@5^Ll7;L@BwH z+Pw3oPpPHCKrl0CQHAZpMR%@B`VO`Xr#ER_$c%oX=Dj;gwt>N1`g|t;u+X_^`s1Z} z&r}1^Uc$C z*;_a15VF-|ly7ydcpH`1c85Lm$AurNznn=6xwdL#u8tzuSgFT>YBK~af^Pxkg&B} zWXD>*Wu>i*L)6E&)d$mKPRIKA73e+OQk*S-uflx%9w8QbK^<8!D zmxO)Z&;GS<7T>`N&5u*Uq~D)-lM}4D=Z|H%6|2N+>R^C=nyA%Bir}GRSJuqkc%aOUEjQVF|1jDSAvtrr0(p-jS=Nh?q5a?>VFAN^%)le!ElfQq9ya@*4u^-d{}FPyA5Sl|Lh8&OGn@oQK9;#vzHVD;y2JiwPz=e_43;3G2eYbqk05WPuhwp+o-DAzPj)HWkuy!1(TVL{p;RV zSO?Wk@wIHa*mOSkNL|?41yV^a?#U5nm2}LG9rInPKWrVhN?XK@Xv%k`N;==|cJsW0 z-*2q)y0m2)js9M%uO{=`D%T*>h4Ve*sfwGKkIafL2Y$Z+?wiABRjV0 zzg+Kdx^`VD{e-fDw?e>7v(5#crNYTWe2nI6yOU~;=t&=#7uMfk7X7=2=@HoY;dkkj zfcGs2_w4T~JoA{p(fzfSlfc)yhIaBdktGk@o-ZQ3c)RYFe%PXvCksVny;sTZ{P^+4 zl8_5t(YKmD|G4}$%Ukn<`bf~Hrkg)@m!9+0I4Gr?6901A!691Pf)8es)mbZc52YO- z^ItjDkdgbc`9`UpmQ?O9!e`HEOZ`pW#~(R1xA&Q}_uc9Fl!c!k=Wfj(GIgJ%>}(Hu8Yg&^4*YA$^NuSx0Z{pPiH0e!KpK zjeKg3-&%iX=67<2&))B|^AbI~0$)EkqNXGq?Qq_hWYINotL4i%$B3^A6*>yaxBOD^ zm{YoEi8J4ZoC`q#9VZt&lB_uX>vO4ahrUSU&AY+NS{EPY@4j`yCz+_=?)=)2`pD+Z z^PTUL&oEBVD%)cG+tzQnd}N-?T!jf&%ZjE-A6u8T{!k3XgQDU!YX1N|K*GOx$#mz; zJhxf3?+ix{UokORXHe;zWwtwKSL@ZMe>&cLczIyzrm42mU%N-{ys-b5k#4X$e{Ku4 zu~0cT`<1(y~US0mJogv+^$WlqmEyJ5r4XOpo0m zMXW42(ey+s+dKBD$Ue23$M2`)?mS$#p|{c{yuP8)WczPB<$Z3F$JcZT<(9(gCg{fmxEvi0mmgTXTvm!GI%tXVc=Qr;5N00(8E z!4LIKPn}=7y+1icYvAT1;_$H}f^*!dPfW`xe3Rps1S|Zob=?!VD(Re8h*cNslF))I z<1abqg53Re&+d0$HOoEn#DNCA7d{^&4h`%(7dm0l`^~jI%ok9Xx}M@#Mi}*rzFxaczCil*T*-_(M$u(E&b~Zzlo2;n;g(Tw_NIndz)qjk z!4ulsH(d9VysxBdt~A|z%hok@^Mjnu^S|vqbiOHTh68n}%B*RNy?4$coDvz%ky_>d9g-?KD93kE-firl=M zo^kfuUo_^rtIJ1n_)E_<%!p1^y#2ZEhrmM0zQVTNdC|1m`)dcQvpNM{`Z->xJofRe z>PcszXK!LI?TC9=ZuaD6>}6JPMV9d0xQB6~w}cdeg-E3)_KnR!MdHmpJ=)bRwJgQD zCmRI!oYo=?ZoauL*l&?c@t=Oi()Dir8P`$|Ou852RI|f=l~lz2)}d0dz7Owq@0;yP za1G?YoRhic$fc8oi+=xkG|)Hsviv3wO3?Pe?Gm5oRZ+f|^`62ceIKS6BQCh#;}4nm zI#Ee7b*0Usp#X>HA+1_Vl9;cJGM35YxOaa)GXM3`+MTU-v-E=wU--D}d{u#5Y-wia zEgSEfthd)%hUacL|8-&gva76cnX;l=Q>trMwJ(?>eZcyq*tA2(tkPVm(Qo>E=B3i# zyOCTEUX!Cu{G&n=`M7P}+(X7^m}iu{*D>i#k(k&JT4>)RU+WnfPTW%OWXozDm$OXE$BR(p9$|j($H)m^JxJazPs5(Y9LG zSb6{5GiVR)9$z<2YSLAWQexOd(mS$ciB{pb8k3%VzS3}~F!gzwQ?raqI#Jv9(?zM}N^`GYaBf<$CgTBp?^mgsh_?-@CEXR3 zo9|CmzvH{3vZ3m1iTvz$GS^t$vC%J&saJl##VFoZm-*6uQsJE^*2}E|{WQW$%}C3h zeUFOpoqJK;Wp0?&45N_r&vE9Cmbq)~ukr~=MYq1q%RlQ;Hbtzt#zE<=MVC+1(L8@i z!Ra!tLXQ$QQ4SL7sxO{+)YWotf-9@0Wb1kddpDaxyTPV6K0PiU&xo2H@9-5mOPBV0 zG_||P?xMBz_eZ|PLjn1^tM<*-UhZDg?Whqu>DiW+MdHW4s7x)7blyal-Xj=X*d%K6 zuyK<|%I%RL`KSlkbp!4-zklXEymeIj^wWub8YTyVe9kKRXKi-;6mWgw{AIgmM7qyX zwcR+w#%$4&hszJ778i8f6Oju$d$sBO6;X>6p)lnP4>5+SO=^{&nd69=!*}iJMntvz z$U9PV>Fx@@M15*w+x?}2HfUywJg+(ZLBVm$*ZflYjRV6w{*;aOR&JR4KtIDMbm3Ee za`=;llhuy6{PMCgSa>M$i~c9+Q7;NBb%E)RRbO89-3rmUX!+H; zuv_Yv=!_YbHD7jlYPxuD*J&h57}s46?|*Aib{OJS{eFHGIQgLfwruWhc8yIEGS&~ zB6#(KABCxlzW=_OyCo^XVWyQ#w?Id4`co2iPWx9zvO_4;a~k5}DsN)A(kzwWH|u1>2?(O-L~yLdgQmK1-v|(wp@t#1R`9gdzteWlKnG0X8A=Qg-3+Ub|Vdc71SDYHE*tpnvn}-kd{o7tNmcrZ#*JsVUjzckajj&YQs#GTh%m?~RXkK49VU@~$|WSYK<{Ek%bcf@$_?lCPxCrsrxb5^byt$d z5m_|{({5s2hSS1*l^IpGDd=M@@VX>--$bd7ogTk-EwNUZabZZ%CNxM&wrIQLk^33*Zs%qW7n}as zUs|To`gEAie0N*GxsCWjQwzGl79)1^XZjci@S z1Vc?1JiGgG6S4p5z_pUigmC_pNST={?*~6O>S2l+?I-P6TKxW=u;@q=$(OKRUhHnd z;qU4?!`HeBB?dQ7JNRznZB0SDRT;|mT3v0vl1jEJH;LCnCLa#bENfq}M(CB$ZihDm z4@!S{i57c#K0f&6PHCduXhz1c*QVKigy+X{ZaL`*9xwQ{V&;YGm14TNx3Y4y_Jpi= z`!bDCHJ!EZS=MzC|BnIz+mjQ0hKmX|Rf|1aC>^UFW=x#!c|W+xXR1tg#+UVaF{Il; zsYlHf4zFBrtzqSm-oBf=WMhrwCi=*|5Xgv|xzQ{>%+$za>ePgCnpt_=;Lq+A;mzlD z7MYklPRj{Yp7Tm~d&8Y+vpz<896lBOfS%$}B)e5s^S5L`V1dkW>njf=ESg@<)b^gx ztL!iQZE4wnkHi#7YFz#gRnZ0$bFV_%DJw(^`xO1>Ck3R1-dmji>fr`6QvPDQ?K(Ga zTUK8D{44CuL!k_<EZpTEU9{KPKVg!S zYG~xMe78wYJp2~#JyO$rftYpLc6s#l^=)0trq5w4yb@r(A-J=>;^g%EJsl6$MHPR_ z8r=D#v#>1e@_d1y6-x6hu3g(^!0NccdbjV${pp{)Ur)}X)EWl`-;i-IbF6cgPC6x+ zAs%KbRegkXK0I>PiX}}sduN^&q)k23;&fxVNk2`YPRjSwthJ{pj!o~WQPIj1`-Jb@ z{r>aS&TgNO^B1&hDFr4sE{8t2b?#JJk&~m-0Re|k{``+0Kd*aM@^sVWLHo?xiu+w@ z$C8R_=G{LOd)&A()NWHir2D6%(?x#V@K;^kHTv?oki_{-Lahr;9@Ol77H<5_b9-g` zCJO_NTh!^Q#C^o{yw+Vi-&A*g_t_Y8KH!0T@SZC>X}@fe&J9r(*6YwIpLOp=Iy7v) zP3&GcsaaB6#NRAc;O*szy-PFqBrkB8ar`+UK~zd;o{xNW;I9GwI8Es@pZg;k?gncw zG?r=8nJa$diCw_U5BG+w?bgi6u-MraxUb z&>b-|zrpR%(yie`GqQ8SC*^A^+%pL8=l>O*vC8vH{(~?f#@4RG`C|SXsE3;N2)u2$ z9r{dlakRt%f9IE_OEXVK?DU_V;OD*Fxy60RSLTJD?B~SHr-R?0yjarvDs78K`cnR7 zkt;nXGi5W@RLTh7x$HN5oBHM>t=lPnk$unJ!HDLy2QECQRM_6=H`Ouv&9l(9CF|AB zTWXWP{#p0Zme4>fq&24U8LcC^XV*4~&hcR`BHNXe!9OCD_McX^%k=XC2S%c%y7TJ~p=zMYbE^RwJZ zxK={WkpD)sJb1K#xF>1Wj&sp&+udi3O5dvdajDEzK)=R+&5oURezh0n-Sh+etP7WT z^++UM`t$L-{pekal7(4qeDoBHYxm+MNy*9|Kh$U*IbUD6ZjzP$?``3a;}6VA{&3*T zDUakk!}O9ZgppVNIv;Frz0s#Fd{g}<(ode?N-gqd?cE%%wpeS`>z(xNQrbR(Ykz0@ zte7R?^od|&vT)9grY{GBqT}2JqWx!7n(a9A%$}N6P<+z&vx%l)B}FI8f3If1*U{}y z6)%3{BTZUUu+XWmeM(=(+K+jc^*#_3tn(u*$%0u=`KD$H?ibxwV3NE1(3{6?bz4<_ zb;K-jG0GmQc8jdLP>&GB7M>Ts9E^n^E;3{0~w*k7~TeW$plH_&x@#i55!pKTV^ z{GFqu5fHQZacQ<*WQNQ<#`E9t>M_*hmrFZNwK{aEWCh1QTm7o5@l#;eGP7UipD);S z*@->NJ}*sHc}c$|8MEU{YH-!LthWA&;wUp^8;4B;pQtxFwdrDK+X9nTOB1$Ct!|Wm zc*i_~uXwf5^~~NML0!K;w!QHS(^1@~E*5ZC+1l^Lye~&)1vcIEi_}o`=381(y#J6! ziglgt7QbWGI=Wl-tQxFNOtP6_anShW#&o*#%bPRLC#~SOs1?jjk~x}I6?MDLx2~O* zWq9XBez&W~!En_o%j{z!T0w>>vIAwTkO@O&C+|{wgP5*+9OgQnxOP(ThVP6m%8NRb z4@UOBb*{dumi%ToVyVlnii)0hf@^ety#DY&@6fOB9*RSEg|EuLlm0FHd7hKMt6J-p z`9rJCBKEo8+4!-v>eBFPkp(MNDH+O9lBc%#Hfinc%sDjiK%D-BRJ*gf%|U?z5i^f# z2|hc#TA;Oh+X2<$?ZrL0njSuL$d~4HY@t6m(RyifmSV0;L1W~Swl98bCSQC={_!BV zQXnoN_hWA+u>4ut=DIYzq3{H-oFO;ADQ>A``*+$V$qSudf`axOCpA)+siYCOx zb?6ZLEWGrWuFWRSDWhGm-!+_(*QHufNbtI} zIe*bUtNzzBY90=p@sPAVmv-)P;kx-t?NdWSPjrR#vzk=mEqh9f{PJX$uyVDH4i4_A zC3NU~?d8{|P1ck%x!e;a(ErKT&t7=*-FK{~nz@}6=KQQy4GW?We@4Ik;!PyavmM1% zb#=1aCT!1|$xk^eNOHX-kY&>DF%ULUp6Vi4ctc2y43W(FTH zSEKse_m3uu$yW4RZIE1(Hb54qmJ?UJ{`mXh%^4MXCr<@7XbaKy)M#%=xOqCIEL$<+ zq*cdW=KCutAGQ3-_P?L)sk6oE+5L~FpAy!VE0rl~Wr$ycQHOGP16#vopPa$@0YJ({73GKQu=8a#Ks%cQqVe zdH7nX*Q?Z7SN{)zMzDc?!SYUkWK)7SVV5UcmQBLJw8U1Gj#Bu|l3y8u9S1(wmz_rLJe! zoeO-?;A=4Sv^4nGx-0&|51mW>E7dmYRK#eucwI`?JTon}W@vXcOWJd(deg3*LZcy4 zBWBSp7qaBmcpALnf2r`%_K=PUN$=&14WFi&)Es-6kWcRv7*+iK)B96d_{9cqiTaAZ z!JGv_5=k3&e$6=+S#sdw>adKE6;}`R=IYH=z9+K&_no1eqtex~)zz|rAv!Zp9o~J% z+bDcj1Owd`LzdWvHX z%oL1CSMi=WC+N;H1om-#^E#LxX3vOb!&sfIzb-c$=NS1&&ySns5v^Q#uK`*Ex>*7= ziE6+zC_)!o4T9b*^m>c=VlX;PXpDk+fM;9Q#)Ng1XJ>k!LXg!7)qC9cEetMy zytTjcaXS=D4sYe6=mTVcrsewZAE`CA?HOf9l#unVE;h5`!2@KzBwqeiH@ zDQaGhT#Q{+tJgvU1B=}}`%IQWyJRm=;`rF5vw>DMttKg}RPjN@!72ob-e@PQcj%n9 zJb9xXBlpjz!iShf9b*1&cnL!!zKUP?B-Rkb6BA8f7I)46A`ghOhCO4$9!p^EYiHKg z(7uYz#G`LG`2i{(7V_SWmmrt~A_brMxyo!Cd4IfESb6$2 zU`qhO-Lo{K=`1C^m0JYF@#)9wAda0`kem7R5#(sJObGfIR*L0&mYGMu7LzM$bQ|&l5bd*xB7t-n<-kUoqSOxs$=TOQ3e2h^{zs z94skW$mh%}aeqd4H0l*xfGSFM=`V0wp8L{lE+VBJ*SK;6K{m3&YeE>q(xRnt<6_WN zPd2H{bL!x=w+l!*_2ud1wGw~ZX)(o&FTEdqpPZ^1&X}zLE9589Z3mHbD zY(B^gNJXP#YLfjeR4Xdl+ei~66pbid6v`(`t9DAug6&Gt2#&jXR#zZgG9Z=X%X>t6 zGCAisvoHm@Zr?y9EgXglFK5+Ya6MGoku}B!bbqjK@VXY(w7W{6N@D#Z?!bR-7&>-l zTjq^zSkfsPGNoVS4pA(DHa7!g^%_(XX#SU|)L+O1KP8%A6|J;eP~3I8uhjcTtPmk3 zfB-TJ5~T5jc6!ZUoaQBAU5`Rf*AbaAvra$mFTjA+_$uR#r=mWX4bAva~%mx^k*9i7k-ZW*}urFwUk7kfn&QV)hd$*}d7j2H6CdlzcRI?sXPW1Q!FlXtvAi{dLiJS7 zs-6oh=jq$pH8Dy5Yjc6p$k*cpr4f}I)UkH-kgD|v0Wl-~l+M0CIhykx4foqdsyQcurFZ;j`&H7WY0e2feR) z=Gi5#EUO`*0?Gwm=m`}>R?0gw(epVc9uQls1pr~CluZ*J1r&O31*T|Q7rD4ZoX z%SnNjmL*$C86+iIlSR(buy@Skz@yh#c8GH~=Y)|Bd@XJL0cYm4uH^@PDz`w2s4NBf zS0(j-);jWa8@s|n$`ReKN%UIh;0UF>e~%T+LQM0{u9vo!<1-HmPjhB>w4}kSMwF}m z6h=#T&rNBmT=42b9ofjiC$WePG&6xq=Ee>JpnJtVLP+2zG~C&%Xn-_0IUBxJ#94SYYCol) zn7%soc$$2#W&i#VF6#39_6$4l8lRG_ow%U6w})0Fqq2FPod)7Wm5ogyN~ZnI!^ zF>Ly#ZL|BVW6xO5phf{@kdhk|uAJAxqRcKAy

biC5c(Hqr=Mc8I}2HzTB0ygR#?Jzm+5^y1G6qPlc};1H|2&R zRmIisIP@@$0ly5l{LeOzFoE>lD+@Rl+Qt4 ze&wl|sFVfiID8jqiGgxiL{R4O=tA|CaH=Wm4@M+T#e3~eIYZi5s(X%AW-K0iCjE5A zllWYuiYzwzMVsn^P`0`L#bzcGTInTqO5<#?(}Ll07Ip!C_e1UpWg5>eQTwG^@;r50 zMG^gSL{;z{t&jqaAz_gwj9q#EsNlrxM9psVq_H3SmL181Xza##wlm!jo6t=qd(ozH z&nM0e%Jx7Dp{Cm6#q0rdHm5d1?y!hpSBE^p%-`%aW}M|}-ADs^El<7XpI@=tUVu2~ z0rN1=l)NVCw8@g%4HwSx(+E^bFL$j+_HOrrYLunVOQS=m08ci?lk~Re=DWO}B*4te zqStD)?zX7!@1xMC1CxafQ4RB~ZHe4d`neKuVV^Kpu4p)C+Bj0E0J4$w;sqWenX^Hh zTRb%u8!lXC&fi_qjsP*4izA4y_@Lv$ftek#-FJ8#1sM@rf5+HkW1jU*Us36f^?#;$ z2V0Rc?$Eb}TRLEQagt!v%BT>kehj>D8=YUB^qI8D4v?L0sOsSBJJB~WkIFI3Xgt&> zryxn9&{P^uo7%&}OZ31E5WJk27F!xNW1z>mZ>6f55R8e%gd>+;4 zboTI|-*73)%$13Q@?#r`aHzN(NmGyX_A`wO6Y|b9C&AtaAVImysG12h*}GeKeYDUu zT)aJ+!ggAuWi?Y>Wrq?+k=-Q{)hStg)^*Ya#!HE`JpCIv?Z_dH%)b|=a+*rM;Go{d zZgv`}>Zw=BVRV&Jn0(SGo1V<`)gyV-1&XZ=tTEA2t0oqS<{WN><3Q;v5qtq#)*C_QqshI|}6a)q@&HG>(2S@c`Z^F>2sBeY2hJT!TgN%XZjX7`3W387r2DNEJ19OpdqrVum_B}Xf~N0HO;CmIhR2a zRh(c*yHI0OLv?cC5!klJsL*DaZ|;fr1V?Ye(al zU_s7&jGG5rpowP0`ni@}Z%559M?>sTmmD&D9ZC(SxO4eobJdzv?OhGPi<$t+=q7Sr zRjG;Mw7S6&BHSPu#__UkP3L$h)Z_*#OTPFZ-VDu?VOlEX{6cd6wEOcD)g7T389CFQ zZKtEdg6g%hrFgeBFZ5KuHb=Ccaf8S#ml*NV+>`G`b|7wGG|X1UE*ffL!g04*c&2~_X`#zF z39i?2x0v$+76yr=H;8)K;;vQC<&9-4%JJQk^PS7w!v0ryQ?%=polu3s%Qz|1skW1* zdQz16>}*xUL|WCCd8wW$fx(9Fdb)~&?AF?JmcfI}k&{J7%lHs*Q7PMtSkPT%L6?TS$H@z3Wj@GASsdn$t7SgG-|ZF5qwb8I z9V__KUL|xOy6iLh2~QkMWqKywvwdsLuax#u=2R?%^*)?Ac*(nVKb)gv7MGRS)nj;0 zTJLKq*gRUQdBQKOScu}~faT9gWv@&WYBWn=$3b$Y43Y83ekD$hG!fTEtb(9M-177+ z$FRH=x*@NO210b!!c$`>s*%m8>$bF92GuC_XNzc=Pp}&m772ssv;Iao{!wZ2;h_^lXjjp(0nvas zH&A7YwXD?V5)?LumSi9U;C;4eIKr!9HY7MEEcpHYXz<32*i<&oLsZuyGUWs}5&AyC zm>drgjkz`=8#OVhcF}Q6VE!KFA`kVskDD)w<6Pqj9y?&vc+wWSi<}EOH*Hn0DJ%mk zGkA1=(Ap5C?>Y;#RzR4k0^yPMnx&Z1XOqCnS+Ol;*D*88&po#LC-k-|as#a&s!6|2 zd(=tVIH;3P*x(0m@of@z%O`%ig;FdEi-IrfbL6Ou#lu<+X6iAx7>uO@Em9%cj$gdR zhNEfXSAjUoSjG}JJsMvHBHfEKUj~l<$&#`#fp71Co9st)-_E8bZc(`ts=HWL12qmg zFCeNI!h|haML-31I5@kEmw=>7&&`$k(=)JMf!j(pC}nlqczxoKsuBD5rzcS| zDnXImGE%xcaeuRJJr<#0-j%ErI2&v+=i87deaM{+50&~vstULUh+m|Th+wy()eCjQ zLUknFx365cR*Tq~28R``Q4N{bWseV@&0w(07Afxr`8jM&d@H`?Gy@gup5bC(_MxG9 zl>`zhbl}Kyiv%VtW@Rw7#R&z=Ze}J~ zt>{V?b3}g5z~op|lizB-OyPh_Ddwkx$>ULcxo@H5tJRa`mQv50&o;v)xmt9_rEct+ z$J0Tl2pi)q#ayQZ^CgUwqaUAuyL#$(c{oDxIvdkLXzgk{Em~E_~( z8MhGG0Wq*pz_4|Pw7jSGF0(g=n@AG2cdmN2FLh5hWizgFEbxA1m!AJ1NulX#s+QA4 z-7m}%WFvd+K@kc1*ViiwZu>P1K9msy;SGdp`EnWk1p|tQ`!erDnscl(P#dB!EdFM? z41&LcOy=*rPz&QK?8M@j#R5^tBUb1?bAeZ5a{3gxzIh4e5FEfvb}Agp)!xL0O>pdH zsn0f7=X7XSc7)aH_Z|Sp@iO%B2JZE+d^76z>Y~~6XTbv?ieTzC`7&Gv)9B*^w8|mX zZFuBNon`m{?J__%&9#k2WxIzUjjw}Aqi_`U(vcGV=9)an_OIVxg9IXeSID@n%%@3F1U{ssrazfQA&1Y0SI`AoS zz}`Io@5?z?Er-IG(XP(y=Tfy!QKD9TiBe4{4zge;&oEL|;QGBfuwb#S0)#_d2NbbH z6);ZXI`G75Sp|~GiaHRvRH*_;;-L;aCPyjc#2iug+Hz|HvPI`Jm&b{=EF?tY0{GBjp@aA5+woq6)_t=4# zo~M%8+b|k)#eMDfcyA|-^y-I7+)TUowBO@dC2_y5>GTOu28>AN-s7e);UV^n366Hk zKflG33D2%4gZE(+&u!iX3>07n4nBa@aw(7Kmr6JZhZOo6mE^L*s__*X8fD8aK_GL~ z#d{FRZ4P7+tW&uf@a_zjufy4u@ivWI5)AVNqNR+M&Jn!Yx!P3K8Lh-_-(J4&SdSa$ z7yd>2@^N!p#%V~W4JSx;NBKPUqDb$m&De1p%{yz81KrF6Wr3OsP<|Jewav}Ri|xjR z-@fqEsxV$Zws**Lt5y_MX_rfVZCUY$Fu~CG%xmC(4A8N^185!PEx%#>r*?V|Ie)EQ z6Pnil-dz9Zy7hlB*WcZ#3*g5B0J|Ch8M&;-Ec3!YwrkwF?(v~63vJGDVX&Bmv>Q<5 zFJT4R=w=S$B>M8ThQTRWZDfm_#r}u7J|vo4oBO(657`>Cm%g;UGytw)3k$5!OwoE; zVxh=#uLAGg18@p~se>2mL5ZQ2WvMzv>vgtFC8`rOYfxk4@?TlssA|w5*@9Xr(mi^j zDie7khL(}sJ{=zi@|EM|h5HqtIXW++C8!^CtUYzE;c0PANTt0*RY&gc$+d!ozl-&r zekn`O`P++lFI~61W`38kP$rh>3}!MJ*5>r^YdII?_Po<2S-&KCPd!7i=j!Kq7%4yKl~e z(6V-WQM^`jxnU^wre%6nvtZ<7Eyj22Iuf^X$ z&VV8J0UG`Dxto8TvO2YlOZ)<8pYzk&?BvtZzVXPur@_S(=g5@NR&9r#+KG|%5)uR;52 zqW0CeXx{Es^uI=1f~T2s4!j|Wk35PE!Z7^s(+{^FfBIqa!*@+WfscDt>uPjD%~k!Y zt3-yWl~sylVO7OQA@F3?v@anqe#(9B9la_q@TzzC%YcWPm`nWDJNTtPE(P*taL_-l zRdR6J8+J=ebWi@6{Ms9i`hyd5xr5>0w^466`Q>Er+lf5FXCjPP*348X{K`mD_*w64 zVX><3M2TGIRAHIF2(_M+&svsw-cgTMmc!4Uti=9csFMk*7~Ask+ApI=rJI;LsdH_o z+jDC-3{|UI#qEP!lYDC3uTiROZZ_wHFtj@v3@4^87ch3emxCha{r%8qwJY!^*MXq} zQcT>h?W&2T&(8`Rh4(0jB&@%Y8_ug@nsU8bCkBGGU>m0>>qVh-s}e#IeM8qq-Iv{A zKM$G#%N6&7Bv@VpxlZ|-Rdq((ENAiu!=2QK&aBEQgwx~h_~l^uCJ#H0mZ7VHTHV9a zHRref$r12gX_@2x$=UCvC4S%CtytNPhJ*f5X_@}%>%mF+irqi$7Qhh1s#+S69L4Jv zr$u1_Mu@`CNQJ_Wf&_&Hc>hbjcaQROg@(6+7)9a)E3c!A=f#<1o_k^-090Zj4I+cI zIu2%z_la!R^&*0@26QcVK&q~rCast%_oN4_-pPwJwU0(30Pj73aN5{#q!`a;8*nh( zTiC)RwZN)^X3avJNrZcn0V^AbfPFMcIw@T4*_;4S-z>~4VM2J_69rzs+Cb+HE&~GH zFQ5R`uF<$->N}nbaZEe;1|H-}HC1W9XLXSOlI5q&UIF9FJIh1OLD`>4Pb;b3eZ%5d zjFAkQ$tv)I^;IlQu`>mIZ)njn4i7kRjq{J!83wc9<1mO<^MqG-<#A^`0OoT4jhzc- z(F_3X$}z2-qsXIk6>lORHKLX!Z!2TxFJD+-u*bp6dE_MAdy-zG+EEXMRiVF*^vM`{ znOLTbs-78v?dAK6PSy#d25{V&VWEML1%-A7?x&gJKnlS0b3iWK#(oEP&2N|Qo97+t z@*c=B1vCqpspuGMGRh%m92RY~>rF+USJ6~dx_MlI1)RWAo|xDnby-wRMT7A0YUD62 z^Dt%7F{sN$#*KC8cvnOegGXr%pI5c(#$=Khap3`gSzah9{k*2jEjKv)X3UbF=Z7zc zhoQ2{aMiRsq4RTD6psdnK*EzTSawG+xn4XsOC7y26S^j3a$vO9)|(Jf zXjVB|<&lv>%!KwoSmKuSy-nS<_Q>_EZ^L*L*gf|omTm@BlAwfGW_#$~XnlcsBw-bq zsrN*x+-fa4i&2806sHe^9|u=A`n`nh*=d`jAbyubH|z0z_Ha*01Y~v_yo~LO{K)qt z6$e+s_BshlsC7T{HzWMYZC+6rG#?OJal&#izFI~rz-*h#F|?{ga6*~kqX_om1*KqF z)mD;noVm(W0};lyUqS)K(d!a`^FUqh{1OB?Ypgv)Rq6(cNn;Riz9^cq3@HsCv~$~! z+5U|%dzBzvCFzY4Qfh5tbO&DVb^b(+c~uVzlyr;B(H!VT3HoNbsxcyxup;O0gN#sV zG;clN#nxF_ht=`YBa2EAP^uNT>oCVg4KGotOfGao6pF^uMaK~Jb)VpuLOf-}3k5+( zWSz;vozHjh1>S1*EsM&oL`<*7Mf#-o`?z;P1lq4EG3k#cy^~k{lb-NtOxU%0CQEi* zGHCWUze%mi@gP#4WC?Q0Ncx|lh*;B0Ns?9eYS2e-npc#qm?@NFQ!|C~JvAx=8#TPH z`o&aP4+;7(KrLS+v2f&W6sKiOef_Lp+neJh32}KQIk6EiEk%r7=*j`M*a3@nxPXa2 zb-aM58FkO?|8*Vx70%~QJ6g`RKi4pZ-b>5bJcy4^=GbOR_G$k6C8<2 zy=+=XnKn?fz3jYLqro8GpqecZ<+F}Je_+^b)=a)K?F7}AEJPV>l5eQQ!NDeJ7FKrd zuBCcs)Q~mzPV_}QtBL5F8(LhjJbW$`3VdUtd~X7h8wR`glgR^<>aA4{*~U*ruz#-W z({21*f}R1&TIdzR-rcE<-|kKcf+jd?VQ7FZI1j*2VD`W24G)IBG6#rQpRm>PRkiV? z{j{{b{$cMB8hbN>m%sH7Uq48r-{qQQ_R-{rV(_U2RRR2m9B>|oGAZz8vEkX;#eLHn z6Ovs+I+!->elHDlqwI|z{bl%`C29*WwIC{bE$g?yJ)-xNZZNwSrsvFOd&J=)PMn2@ zcO0`i`|L6tw|yPNu`>(!qJ$T}dhaNM0Q)SmV2a}iEWx4QWCcY^%!>uykN~yuJ|8RTyJ>;t)}F<}brw?&FCNb}0;s(~{P>$~TtJ)ps8QF&$n6Dt z+V7O`#Eva%#_lE#ScGO{yU~8!>@+U?P5$pU!tk`{wqm;c?uu^2z)YlkL+=U?su+ajt_7Zv>*t z4i9^yQD>)RoeU=M>-D5}+(QGe^JDtz<*@sv*ZHYsot-e3=;7ea8(0oHKjW*>+3D$E zIPM*>9kMa#PWWLo?jH99viW1V_2BP zcYra5FHh2zd&A*i*x7xm!x+Jj!*Q3ueBZME+5NRUIvn;-$D%xR=J(U?`1Ry?F!<%{ zRJ;Z>$Ne|G!P&U;WH;?ETTePqo~9TbLOoIf-gNsXohRQRM%dnD40U>A{=M_$d;HM* z{S?pvf&c}EV8-9*+CJ(lAV3LXqB4=PC58PWU~qPFH0nGB0*wB3JUQwD)w`pf0QP-~Kcly3t@HhE(I?=I@!9ZXf~kx< z-vc^tdgIrFBi6~|;Kx7PoPvH_d%7mLj}o(MJruRGXpR*_g-*6(O0l+QZz&{NtXwHZL4XDn`fg zJ*jJ`WFRy=QBYROE!-Y|$^^@Y3($wdg!xbidW$vEREC-j2g<5~32z7U0F`WO5hYd( zKRn9VYn!EvR{DJyhpedJOyG5LZ*}Z&@!pw-zD$g47s&!y(u<;ZVPN^uwG%Gv@`)@f z33Q3UK5%TG36gu=6W66nwXcK7c|H zU0*v3-_9>>>S%Ehajn`ntBQJgJ`JX@9G89~egoC@W%ro6Px z(%@1P^h}bQOWvy?E=8(Z;l*kN+RbT;uc-;Gz}jFr=a&KIMb-vQYke7DDzG+KrX!TWWhH6@)^!ULV7)|rz0WKtzfuG{ z4^+~a;-%z~t+Ik8n+*Sxd5AWo;A=>iBc1}I@H1+z9B6WnJ?J32rm-v-NG22*pPeITgQBV?=+5IV30yk9C@5aUzQN@`4ONMk2Bp;&XI~v+8u=8(L$yS^I4XkqYN~FfW zQ(U2yW>CPF~gP=oE13a7Q{ZG~TGq=$VnccL(G^W_!VT z+)>7HcL#T17^2!bE|zf633lk1Gz|_P=I?fX{(+cPbA9`5x=~Vau&Z)`qyEr#(yBNj z4w8e_bQ&14R0+n=hNXSuup9pLx9n=-#>P%F_YDD;uUj<`ko z{&+fpVlJ$-B}59H6Q!WV5*A`W;wntdjmB!D@-%gx3I|a%|4>v~@o!lw(>*g|t!q zOgZSh?XfdEVVhK+yB)g=LZW+cFoY-g7k?ZM2Pc2Lf#2)_UmYC{abw)(5BTcz^td;M zH}n@@farvu@Gt!s_YZM{i9g`0QU3^E;2->XcGMrhPy7Qv4?6Y%{^^dO4F1c1yd2=Z zhj_x5M}7Ex09rt$ztpG40X|ao{wsLwzrx4k!Qn6eIvd~?QTmJ@21kFuEBF_GK!2&X z2WR6kI_TM7)DpWVzjmRk>@U4IWj=iVfUm&P?*Rn%7hm+TIs6xY46vj4Fa0>i=VSKx zYB)GMrQh^KFZoske}GrGjoh*EU;g8`KN_9>?AO@d$s?1HO6* zSi?WKmvq$c9uI&>>@R-o5AoNK9)HEhU-1#)5jboS+v)))^xn|J0q*_KANa|x*+mu* zPxSJYBv<;(KAa7E^b-E!3mRBHs4oWtq9^-HFNSaM=MWp_dt3BJ{A3ODCwTdKw`0HF z#fK;G@B|;8!oyR1_zoVv!-wzT;d^}e0Umz92UzXl5&q>r5DE4dU+~d-Eyn6Kex)zt zH$W%+7q=2SHgaR1quCdD_TK=x;UC&;Yc=asW8N zKls@D;}z~_vA^)*xO;#jPJi%c4_-rQ_7`6OGRJ*-IQa!1PkzC{f769-z(2TE*&Y6Z z&%w)r z%fZ1vdx!9f{lyp151JN((=jKscw#S!i3Wm!24`cUA^Qt2pga~l?LxEgh=1@WGTA9{ z*y(Waib*Z;1TX*9vHt~shERKm)p6f-h~S222Ou5rU);&;*jRYfeFNq2U%68XKShs5 z&=10qKhUdV>LmM%FTnDHe$pTOIXD~QhA8`sFHXA%0RE-@(_#M?{7Qe>i^0h&dI5jw z#UIC1;13e1qcaej@DDwL^cenuKj{HSeS|a}5jjV{BA8zh29Fb1`{q}N&ZAHe;+eBFP`uv&RTebfAA-86!FuT&8{(@Ug*n&UwxVzDMr~&`rBdjN|4$vR?`5Q`h_{UaPyu_Ia zolJYz{uKj%$K6+?mVI_WJ?@|b$#vp@JuK;u7tQ%!+9syw;Mxt?(-kWeUeDNH)Y$3i zUGQlZEa-6_F5c0@b&#+&@WjP6J;l*#>9O|kE)Z7k12vsPIE;UdLLXLegEcOX8(7bu z^VnWPN6($hR2|^Qc*dap`et`zrsN^sVxL!zd4LNRp%SDRp$laccq_0iKfznN=VUTL zXsjvm?G#iPFp4IYNGMLwa2A}rnj8*JMq~1uOi*a`hLg#w!Qj<|e}=htHtdi8n4AuA zr?@9mU8wlB)#|yP!3hh_r{YB; zGF?X3#S$f7p1Co~I;7q3UPwn(D6iQ-i8~TKb~%vDdGY`<%E`HIsjaKzdaiZ{f44`@ zG#DkH=7#xC)9i+UJ&I1Er0anN9}kwjc^t@kzb(=E>JzS60oi@on~*A?@iwtGs;0%V zQAe#^v$ozD5-FD@vbEF6M60XwAk!=;N8>-V z*_$cgT?O7ddK8y*X>*+YZK$XP3qMA_Bq!e<9)qxt@$Oyk%0c!FmM8*Z;wo0d3S$bz zd$jk6?Gx5(C(VWmEp(`zkqY&Cg^jX8mXlcX0I|TUfgW`pwI~)3BvUy31jN0tai_9l zk@xVz2JI$Xs<@O;kWF>@J2T^QQ$rIh#k4lCfQcR(+vm?-TyD3MAWqoDmoKBG8~T2* zNa-EpIUkkaY0oOB#M-*RdLkjkAl+>)N2ppAkhM~EU`;tC7XPN1I%}@~8A)2K0hkKj zM@pLE)s;~>-C*4jU0V~7fO6V^EP}5HBK{go#Xhber8=OBwp!O-pjGVvArvA=3rE3~{gacy;o0D9#FbstApSa> zNAYSI{AHJoZi#wDHxJ9rCJ%+9j4hxn2-|PZwohBzIw`$J+`;X zwo`3#M?3R5UJ4a0=ASIBK5;b@xt?+YExkkAIrsQEFOd+~Cqd|!n-ct(X`xo&W5kDf z&G@``Cl(DXWiz?%M*&-isVf$hQZI?h5c=2d@mX&&>`eq9ky|TM?#hV|oH=&G|JN#l zvJ)&TldbA9f(v(Ahk+0OT!l+O%H{Q~KM8V2C}M6eHdHq3;WSOCL4dZ z)bU)-Tv&6Qg^y1TMb_L4pO(e;{c-2gqcAA~flqt3mIi7gn{)e%bvgH;^%}QWnB_UZ zFg>+fNXc8p|N3;y(pPUK_4Qjx>5Nz#^_?#AA)8BJOJW{ZT1P!f^9tZxV1Y-lu80q= zywY{UlLVKybYacHPD%EM%6J$ScqPXwo41Yq4)DnBRXlGx`xh*Q)IVC*<>p1R`OS8L z1dA4)V=@A=ccy5w6aHZD1)Ouw=9>9cM3!7p) zmVxAeS03KB%?ps425uI$HLP5!x`wH15OU@At~#0SY4kFwT-WkdO5b1NmVo|x zmau93?{5whv6vlThkwcnDL9zMAFw_=LX-$^%;t^&n2(HPo%nnOi?mTiWz+Agh z+lWS?py&F~Q7~oe2G8;cK%4SH3*+bP@JLlEEg}@`eEkoB`z}l>8j*#nnvw;J8!U$a z_4MmrISo1eM~vLDq01mcsH^^`R{sVYUqp2}pm zdOLuF?Y(o$aetcaFk=4no|r#vS>IJ-PNkapITbCh$&~zjjInVSt0y~891M6n7Qb8! zmOFaMe|Z=^h|!n$YbT(R;@8y9&)K7pG5{Wrhn-!Fr#tR!Ve+Wn*?8DJ?(F0%4EwKM z{_amF69K|3ANI5F31TPvmVlVya};WVXV~Q6Baj^U zBx3X`z97tAP`))9XjI8STXk6KW%`?^ej7*+tz(j-f&z$jhx|$;y>pmi89rcqp`Z(# z((h5~*Z@_*8KTPr8sgFP4e|dIVCi4^}0>6u`{18m> z->HK?e&nr82|U5_rv&&%*2>h&14h+!^e(&^1~YPSK0AN=;_~r}+i%a`?pK6L%M%hRM8?62)C&8!MG`W+0m;`Tzz)1}`rUBz6UOA1CEAy_j}i zjyC`s2H7!qd#^zNde#J0$sVCX%rbi^+qekNF!eNyk690D!(_B6hj|jLlBH9D>qZeO z{76v#JMVr$vw#>#&qLf~GEw|(CCMM(cYxPzR)=Y9wvrj*!~v571D)2N;0nH9K38a1 z#=*xVKgBg1OM0;WRDa+e00LD#fFh=@vn^u(SO|>mw^vDW)4ABb*ls`GE}j~^IYXZv z6Bg#)WS!W>n2G6%YH)U5NpV{+@1&qEo_D>EVNyH^s;5<*$@z_W?ycXn4!6z(H8m~5 z4AN8PxJ#m?R0HLx+`vSWLo(v%Cc>^VWZVdllS< zA8x14?c&eq_9niK{oB>-cD20y6yCNUpKnbr8{MVj-o6gpXLT%kZjuwk&`Q}>@^^_-Ku$V?mF900-i`Ojp zykMB@XW~X)7U8ke)NF_CXBQtfG5h*A-&%gSd=A4%27`UEcoyF{3-R)W+(UV`jqhLB zRcPggp^SSZJ$t+v^Y_!EmnF@Dhe&fZ?-pqPtO+}dCOb-*JtSIL*9&1}>DmAW9s5ZRKO+X!i*;q06<-AwZyqv>M-@JZGiB?WTqOp;z2yAJ^>z* zANLEu(R76f+O0KyNZ&T5{d#aSk%ZUQpL1rgk^p}q*X zHf|9K(v%-Em+>5#P=}f^CMf-?qEF9;$M=pp1+2ax+!Sk@&SN-kv`RYs@`1k>pU%Mg zUlymTLwL~Wy&UNa2vF34J}}Dx@QR65YIMZ7nwCkwoNO(MF4UW<7gh*$>ctc08MZKz z5b?Ng2qDg<8nJ`2*!mO21na9r2^#q9Uh#o|-$Mlk0w_~NAX1Psc0bM2W*=1OAj}ncF^v9Uv z@s#_FOXY825cT?_kc+Xzd|fn)G%EW};&dA4Z}(bYRPSM;nIFDu;cZAeTR(4JY+r6Z ze_TSoBdBc-157UrX4lJ=;32L+l#yxGM0d}3FN-72*C&>%UL;>SLPieGQ5E~rPjYi4L$OlpbJeCz?U8S-l1&Bnu zdw};+92|E~eld>4der4wqC0mM@ASjIgd-|s7qU|)~)l^tJUl(?lvmi20ZVh zdmE-^g&JN|B~fAJY}I0MAhvTHZPqtf7a!Q{HQJ~|m(+~H zpKGn4DM=~wn=!>ehW4j;m&Niu)IJG5%)>$Xk~QA<6-~cY~15HvI$X^4I8>j59HIthbhL0qy?^)!IUMvb{63@h*?(b zn+P;DmNGkDdPLQ9_#a08!vqPapugF9ILf)DLaRv*UIC&TvdE881W7}gxncW+693ox5MK` z(6TDU;YvF*h%_U!W= zf?^R$%}9iOz#d$!YnVarY7Bel8?W3H5pS zA*4_jn=@zm2)+ptXBbQ|jA)&4OkG!oeQmMfA@ovKWbU|edj)HCcLti9ND zW-Ccw#q;i20s2>1d4$ZF3j>|p>@oV!Jdmeg-s3f6SefD9kV!YyCRiieZ==O_$oB{p z!1@aENJ!D^c+#DMMy7)WOI}8sQL!}- zMS&+ut(c`@q32jq(Ll)x3^F^6=7uwqU2VayO`TrUNhT9Q7ck%culhbx2J(I zwqJ`!q6Miu^vW@@jfz$)&q*x{7994X#S@g4F_q3*`tzN}cz1l=@hXj6A?Q3arOH#a zD`O)?Z-^nTZm@)Rl(L;#fo`(I0lb&OX~CQm=CMN>y~Lj4OeO!=t}24 z;yQlu>U@;NT2o8AiuC^ZDt*d6T*tU?v8znWEbkU~Q0c~Zt1vED1beeAxDKVn*eESY zxp6TWmh_XM5z(xhO4EN>7ll{m-eQAWz+E+r1XAyn?!H0!`4_XPQw9*+AP(%v1bKLXkrTE5$ z+EFkCGXRKj0{v^u#5oiYPIkICP;EgV&8D!BHy~mQVQj7mm?>VW-{z&GQW$|wjQ_MF$sRe9aO5HD3cSPTUKq%d&>y%f=*X9itGR$ zK;gf4CS5$GxS4J;XFofUnPR{f9^bS}LCXonLDF*A5vJI zsec|^qG*9XLWfG5aUZ%F*Vv4wo>{|_av9Kj(ng+YozDn^LuY|}8@&&f%h1=PKq?@( zdX1j~_9@k@xut=ql9H_5UBSc{GMpdG1CTVn6d$~Ep3*taOMVd-91RX>y~H*0K^$TB zvkeZ@LO3{!N*!Z{7R{Mj?}f}gT0a;*5FOm*nw=kc%kbu2DfFpgW%_*DuDE~Zd}`!N zvgR`YUzjm}Ei8;W9tZK|iQkojplR;+{2dIeImXnvdllG6CG{}9xM!;MEP)?3&3c~6 zYNS}tqEs`zI#sKgTHV0>#c9zJy_;+ zf@X?rx#zqo4!bmEODB+DmMJ|a^1fP@bmJ0GCqud_o(gzwZSj=3Rt!3Wxsn1O<_suB zlv5)onoWh;F<)+9g0Npu^tcVpD=`Bjh34dYgda)WEsO@UHmQnJ$bQlerB6G`#CPS6c?py*x|33H=tpbE%p;;@uxDV@c> zi=$9mywg*u?Rgk-xaXO8?B5WX6DKAtDE|qadQ+N_QEZv{>>QgKOLCdWjP;tq-u`|0zV zLQLtC0N`Z%lYYo|!G{;7c1>4*` z$Dg>ph9A}abd`mu5udN%wHsm?rA1RdTT-&k7&r3-O|CQE?3!!<)p9%l@4f;9Ak_ca zqn{3N5g&ZfnEL?406QJ}xyF|FA!y+zZ z*)ftIuM*7CKLGnSm!-4L08qu;2+-TFFa!+le|HQv)*OUg^C0Zx2jMW9&&|mKkMfdUzwO@9RM?FEhd{d2$-Da-Ncz9M?WhYI;&m-@hxo<3E9iGP7t1-B3=jLYq zsezkiEsJKKvU^AIsf?wSAk`gyuSWr9i{$DaOeVmeJC}u!Z=7WkI`biBk}r?Gt=Ey= zW*LQq&0Gf-U(A?s%t@+f-9}=&#U#YYs3FzK#W0wYRi{q*_nekU4u?7or^5 z6dmSUTh{KSM*MW-ni+iwha4+B+1tTuP2D|rYb%x944`|-#-GD7`Jswut{9<`GXhH2 z>11t@gCsfD~(W!&#V4DLhCI2z`gpcU1J*5(^TdXebq1Gqc31 zc4bBhGWO260(|w(t=YGovcByW3+U(`TEK==!ZhYdZanX=&+$xaWV?8&tR)|%{6!xv zmj8-mi$KY%yK?Pn(Knt6>%;Eh>)vG88=nnNCck!%Nn4R&c}njb?__P6tvk5!HAYdFv|+ki$I{_6+Z=V$LxJ$ z-2!^dL^sWJxHFB9j59ZqUb*($GyR&L?muepn4m0nOb`T3F2;Ao1C>Q0+(lY8 zVj1D1Vc$e^a>^E;hoEZuA7H5Sjb_9MCy)sCL>=p3^MkA z4^l*$J@0_dkCB0}X+3kw=JT|)ba(gLPX`91*|zs1wIX22h-!#OaQhYPOmYgh;n&x% z7|(|h;CJIGx_MM9S`p|({F|H`&pv@6p>X{!84I`o{Cj&>FN98yf05s$)#{+QyDM_2 zE9Np~j8(x0{rccN`MybP_E$_{K!JeI(6m01H^@H33==)HY&kNDV6Ld=RPO0MYj}yY ztNN{PsMi{$B>Csn&Na4uVt5lj;IALR2Z#_ps1SCpuRhq_V9;F{^i`0mBjU#o`0)dL zoU6bH`8v_nE!wYyYF8idUwESl*x@iY>^u7i_`uz!_%4KnY{+NFz$x08I?07XuC#}9 zo`X>w;4LTo+i1By=m<;IB87#vE)SbF)f=5zjEv}1xT7ugh7ix zge|GhEP|&)zeHsgwe%bqcSO$#QO!dq_NUFa*t9(O?zNeoc^Bp)wt*1t)Masx@}6*z z=Ty7v0)bGQ*!79&!}Mbonci`ShFATArwehA)iYaj%&e-_B(v%W9zEa%1|E}FRMpzG zz|eLyLrH6RTUm7)opvm}3aX9Y5E6V$|2r)UKRAXDV)mMFif0Zcf3v%D1gfwD3hX5m z7p9k#s=35!OQ=vKP@oT!^2cXC@9qqBV-yy&vy93rC4)t)PPm)GYZije?Jf#$q=KHT1YX>Aff z;2_OBmA1cT{Fp$+1L7GzqY)Bc)W7?aRk0kAfABLBYCnV`4HUKCc)$#^=Jd{k;LBZF zRfIbX3@E*T9LM+rr14Y7rVaF^P%o~uMv4n3H;MpL($RYn&&>83flj9x`*G@ecI13I zgs@hHYaX?)=rkOhmugRH?@v`+t!o?gBfV&A6?Msv>rPL&(rjGmF^xSdAe5H9J^2Ik z0)dvwwJ-H!PUV!{GtvY*b^gj=V`GD#Pi%V35^5QDhRBG z?5pzgCNWwu6s8I~iS8Xvf-RAA$0DIhBs#Oi_6}=d9Kv^G?C%c0&rp$eEV#Vuj&P@d z)6tCX5QBfaDH-cjA0ehi0=VZL)gFt;dnhalaX)CnsI#ZcTcMpKTHcMngrUBca)Pr=HvMTM$!8;kKjMdqm_Y_0UF;Mv2lm-b`=8`QNbRQOzEap+5R$iTJg8K_lBv`y2a|v0d3hqsc5QOq^R`;OlX{mupZ3J5b8 z1K?S${;$}sS~!>C=}vmC_10z5)$E!Dy5f4UaGiwPLfgbnaz!7yJ%@=REfG%w9WD_e zOi=>V1sJrEeiA&VWg2~O2{d7Y%?uERpsNLfII$}+^~+cDN0W)fpX0}9Jw2A`lRrFe zFHLvb$qq>=DmIm)>C#$MT?jTQ){3xHP*^Yj^1TQjtG9rpQs*|Nr9Ix-z3o`(7gR{`$4ET3F=W{?ZRi&?6 zY$DOyTx>QuuDPdXW=IuHKa|{h)^n19vD7*rxckjt;u3=DmNCr{?)2q?%?{@<^quPBOWJb|2~TAbaD- zw^T#i(wBcOi}mu&XFg6{@^*gj)!;0GrXSMJM+8d19z+?Ols^$uP|0u8GF!1gHz#5} z$I0o|&7|>0liJ&eZ@ex`g418q&v+3CKds35#g~f0AXi&*14AQ>*#8zxjVc`rkgx;w zk$FD}N!bHe#wRxF4N!s5;I5i>bZFh{hNV~Yxk@Mw(O_hdagi_*RAXkSd(Ju|X-i;s z*et6|+GQJDZN=u1R#fQ+Yuz_mO^=FjL+M_7bD&EKbEVA0B-GhWR{G@s_7=gu@8F&r z^I}1~A5r8FufnG}befcxRoW&d)TL`FiYqHtBy`v3J(ti`%~-hqBKDu3?NV3G1AD~m zS8=s1?YN;<1+pThH0KVNXWCtrU#?prM0LRke#=}#S4lwgZ~qp|rJCiko41@DMHiv4 z(eOo8Pcxh+<`GD9qH&ep$4{2@B)VNkmCoy&Ub{vn;6-+qwa*u)1iE3&8Y~?|iGjxKY5ZK;nmbx&tn-mO=-zcx^Zx!=5&d&_z+ zhJnMJk9ZH=Ghj2%D-%py0NFKhRjoU&^Sk;8tvKXO+hCUEbp+u*LCm-57w50{J#t>s zE!Dm-ImV4n^Rv20AVOwpo*b1DPVr((qO6(}I` z{;|3%#Xubl=t zgRBKB=}Njvu9XP+EA;YuQ-oo#Il_pNWFH=6Gb!jGv0lr=O4F+8PYMm4%caAzbEYcG z2XBA#^%C*{;Srg3bon2#y8(=x-J20A$u;K7G?TA(BE{B(opB{wU(K$sO(h^|fxelU zv>ADoN)%CM*mRqQqV^}^g>;z8S?l_1{ZPIq^qPs^g7W+jX$0RBN2U$Z zRIib17hj_z!O~wh$e^Xq*?r9|uUBDcT4BeO<>J8(Z^l{3)+;RsvDt4|l?l2xOhu7h zk<+)idu`7~!t;$JI^EN2HTMYmH<^=yAc{6?#QybFiLoriYi%x?m}b_rM2^g=8kim7 zo@>W{tQ4oUqQfgEtgTOFNB!7TOa9t}3{Ux3`89boqU)ZDA-v|(Ch+uW&w=x6d>F0H zjGs5hR_j3y3!+RnA1kY~O>f7svCz|^phUtJ&iW%K1JbWG4E`gp`P*}!j>^BDKE)b$ z!Y>i=dwaz#Xl#mE4WnqDF)w{c3;4E~wl(FRf3gWq5>k~oCJFTlf#Kp+Rr`rHiqB?8 zOq&y+?tHQ*8`((Z8@T0&f=G1rjN>Fi0*o^!uRl1dEjS)k&3x83^&^<@7bhQKn%~5flEB!nC0wSW3gfpyPo6<#Xg>$?pa(|UOVJ|72I}CO`+!e72 zD>F-*K?%)KuYhT-Dc9(05iX#rhpBlz+p5m1;*1t;d%WV$S>abshw?RbK94g4xXoK{ z7wOLfcN$llpR~t7-))56@anQ|DU1h;8n2_rjwU2~taCtwP$mMb$ELoxO#^ryLwI!% z--5#=391a9akV^WsRj$H9>WaGdXSva57k@Ms(|#Q8VXXha4Sm zQ~dm9m|P|Xxn`vrm#N9#axggV-QltV#1jCf ze$)O!D{G)yPMCIOXY2NbekxG*HrlO9nI4A{%uTt7sTzSk83<=5oNk84EU5_=aZfUF z=fW~rEfwrULG7^kdT~s>;j3PT>GR;aIHs&%)pSrcQl2MFBW;B1@bTHmDn-Ly*-OqV zfC<5uRhV&Wg;j)`PcCmzfJ=Byg+G$p=PL$`rk>3glkk!!5l7Jlcw>pWX}T#mKbyk&3kOT zuF`V&I{{X+HRv+`|rbDI*)_~nb2{TE?ZrVOPz4bTeQZXN&YSx=RP7-6G4=0Z8d$F(4gi73~ENsg;Uupymgq zWK2K#(~o09mUW(_a{@onGO`$ZO=+e2+xYudt2xv$5G^_X#wRC&t0!8*6KXNQQz;f= za3s)$>UX-^5e)(;K2H8O9HYs+7u={K4!t#qBcJw-kGb49f<2X2lkjdt zezlZ-0HUwO{LnJ`w+57z2O)mgS!g_## zL7FJTIS15+lpDtyR17Q7@(!#G=^0cTmfDKWL0LP6M>`uy8pD1pQ?7F?ieecg>570S zW;pCl1GyRm;lCSdT{t?)5x=-#YDpmN>_qzXe24eLwP&*G@NjU%)300k&ky{NgWC~- zAA_!M=-b$}tsHzp>Ldi4(_+Q+ z54;lu>xmUw#<+@Sf4^O=meo&#_s`xxdzSTAkQKq5`9Z6JJ}-;A1OA+pGdo%18$Nf! zD$27JIW5UYf^t>HoYtzRLW9aX=oY?gxBklV^GP23Or48SFh9lPr$!v7d3)HY8%mmIKb3~(Z?uTKt7;Qv7u%nVW-|iJRd~n+2avD z)Yg}*mDTH(N1kj=`Zqeyb(q@m6xIfSu<(-)%pbJz(3d5+799=#%Ee!-RQ&kZuzvf0 zfIkjl^^SP!nH!^|86)ocz!Di60q}2uApS);8vc{>Z~Oz%fQng4I#t=krXO2q))Bt5 zB_G-=9xH2{@HOVB*r09eIKKri&d{oZr^|bwM@WyMW+g)`04yx8h}Wb4>Jwf|2$v%N zz5xCWl<<5KPqJ)`P_@CmM|})pS{?rHSAL1%g~?Bz@Fy9OvGG;N76;e`v7n`L`Shuh z@QYw%v?SfxIiA(L{%{~W!F;3+&LYbNc|Aww(<*(8Q_K@BsXgt~G9Y1bKAuEl!S<0G*oi24bz;CLhkA5*W z@}6!gDDS~Jl&jPs`5}^s0=SlAIG$=IJaUQVj(e>wz{&pK=qgPQhvye>9Ygo~SZRTt zT=K`YcPJ`_c}mJi+6D-Ov?XFN3GSj##8zIeZUcOmLm^57Aw(4{)co;Y>&C#I(Ddbw zxreR&RU;lLmk{UA!w(Dr=;InQxWnv;^G5lBeAO&A1HEb2MSzH{2drY_q;_aN77CA0 zSx9C=MVi^A<{;NaRW&$(fvvSUzmbr5j`8UMnR$T8c5l; zOeI@q>kC7&5Kw(Dy)JCt*7+}tK6pVbPV46z@3f3c&f5PQX!ooY~f7N|Pc5{cx z;<@f+iX%c39_ujByfAo8gb@xb5`vg?u(88Et(lSEiGyTXz@SZA`X7PHq6f4Iyc%zn0J9I%wfQ*d4AnA9t&8v$KmUyxRS-c zzQg>(YPw{ctrC0k-45~5I_UVG>#D*{zd~@H2?q-i>|!Rp#_o(& z@goE-_w;GLL6ClNjR?gjnU=uw-dotBuab*CPOD<^(OI@b=`hF5!P`!$&T4T>bt8GS zJqzXm2zH3=b=mmNhFqXI!3h*=^hTql*fwsh(2q#)%2XL6dH5swCfVJY%dltS6=dh? z@9#U;PrJ|h>8CVCd!v4EP?D~8ukozz=SBYcu2@&P`cp?nef{oeUeZ-sfy3yRtjgR; zcg2fjakmoS)ymbBjI3O^%;~Rl{a1PobCu&EP<}7z@1@>)MSopg+grF?=d0{4y`Z&K zeMqVo`FwYRvD#0viVX5u+TX$&T{8y+R&9k}Lo5TW0Ah|30D~#az^hJ_I18luk%PBl z4p#-;Ff7`Tt6}un6!3qPUF268?57h#UDiOUmclOWi<@y87o~ak$g+p`c&2w235IVY zwXaqb00*eO4xq);sMXHifj0CJJQ8CiQSo&4pwR}?$?(4}ho?lVJiR=5GaOF>rIfAN z1p;Izk3b2h-$190a1`%fYyxrRL2);vEY!8_oYeOba1^EiD>a7z$R6&I-VEc)16K_` z)i$kl5>Tj4uwc5I zTVt0k7Fk0C9-gVT*jeyY#;Ogi(`a0Ylv^Op->amks8J5+0QEa4zutl>>+$c|K#8Okz#6FmwZm|@~*W2?)t zoGV1>q*S2tEr7kBy+>?Ecd)o9=o_V73_F_>`AS0`Y6t5&*K2!s&!({Y%Gi$?dnM@D zVUFl$hN`$m z8jPgUN0#csa-6CF9i~pbK!agw0iGQlInTdn(FsYDuov*Un*Q1LCvVR#FPflXBLZ*t z`OZ!qtl=-i@vspXwgPCw7d61%?T=4Kr$0AAW6cP-KiA?mIz2jTf(2~|pdV`i9h{vW zjT+IStq8CmYJnY%P8;b3Z3v*3jey2&AdN%tEjEFgG;RsniU5023vB=RxCs(z64GkS zJ|O4g;o%SlJe(er&2tR4?^Vs===lbtyS?T!ZcYDpw%Pm*UCu zIO<0I%-elG}w#c=At++3ka1eT}}w>!UD*^DP1g5nH*LB9eov(RdlyB zN@rW&sju4AZMIn%2f&aLrsPSCzyoBxTK;L;iqX>@LNb-rhqE&MtZ)6}^9JX>;>(vt%>5P>qM z0xnSUBHsoBBA`x6Vr-?Z6K)}&RRLaD_rtDBaA-D(K(~4I=&M^l)s0I*gYq?(g8oG? z2yQy)t=a6Uyl`u4CibnG>z4+D7_m7{qutuQ=V)x!?_Xw+wgGp*Ok0nGLR!8uhm&Fq zf6?mT>7N@%uW>s69;e4}TyK6BIDUj4-})>Z3p86Cf=1_m4fS-gxHhveB--FHoX;UW zz{k{skQw3WIgkyS10o}D{kNKF-UwI{U4^XB#(<#Rrx+dBX>;{ppKMZf#NpTW?cen`J);hr^idksCa`oBKGPJvHtPCEGcRc>wfc48sc7ubLYu*YY0h3ph zd`!!_iV0tV2Xl+GL*zaxbHm5^yI~?6Fzryu@_F%1@SuL4c1RF~f1Z6Ca&U)IJ4C?n z{3d8nzg2rAJTFmx2Q0>$py4aO_dDP*X?<)LPEPtLX&|&B$j-?dXl%cQaj3R$<%`j6 z?@mbm#%Fku5(CkZk8;{8E}Aa{=CU_aUh2?l-RJAsBCBp`$}<#r(mqhj(P-hNx|4-S ztUb4nM6+pVVm>9HToy|5d-fD2pdjlp+H@<+NdnL*yz>GH*ghdA-*x z4~dvYi>j{fpJH`&x>j0S(*@)V>f`Pqsw7tK$Uoi)bzN-e^J(*za9@_;lh7vrwF|a= z{pi8Kbs^$78|ICvWj&cxa9oR+Fs`l5?!eJEj?zRJuMOhKsZme$-(@{vvKNI& z1g5ceLL6Ygl2|C25rPi=NxZ^^-~JK-hbB~x+j}pJd7ztt}vT*vvdC~Yp@?Lm!I}?v7C4;xK12%6h z2X7vy3w*Z*4s0U(KW2$5zK(@d%chf6RH76?P%J>V8FHV!u^IW}(_Gz};ri3NH%-72 zgAMSl$ZBN(k;@ec(vBkDjQF-E)W*Nn2n6n-PWCn&y4CWT;~zm5hSka+pR_E~dG?9= zFyVy&X+W00LMS3|phD?N9c-$fmzGnr_o2W^)ohl_G*4J&5j!Ty)up;E?)PU^u~@GV zhxWZx%-i>(9D!Z$wCp219~U&QwvngM*KGpqJ6nC`e$N)&=J=bicc|YF*j*G8Q(<*m zBpZPcX@edEsKU2y`sVTNKj$v9Sb%Gkn}$&w;mp=pZN@?VGB!`TkKtHDu(;KlQvhcs zT5-^KOP2`cnLwc-HAiVwc*jlz>HvRnUmRvP*@`;rrW61KP5z3p(7|@_eE6cP=MZWJ za8l%}+fJ9pRc_c9=h3Cvw8Bk0zb)2f#d;4m?tPNw>s9*r{u6RQ@`U&AZ_@t+>VnP} z1tk2CYsldR&w||@TS(PG^sA1$JHc!E#%l*%2EjmmJXkY=y3-q8r0W|IOPInOhA(<7 zgX*d{%08t@=S7#l?0&+l^u3l<`rym+J*O*SZ+8dg5i8z-6zaRg!Jl4{De8d|v0ca03ByEy4&I~Tj;+J}ovf;@&eQvK%~qVYUb7eeN(h?QcGOy}&uxs=ZiEPYN%?{F2mkBcok(Onr{n}9WyuO(oO z6N)VN4hathir_LZtgLYrrO_BQ(w{MQoM`Kcpc4Yy*>LZsK+wX|9+T2fzVBBpWzV@2 z`07jv@Bh>%l^uG0>H+7^1o=h}&h;eCG=}O@)yU4iw*eI#p7xmsd6rGGT1Gh}lnmoV zR8`?%_TWxFN#`0tace8cMK^|is_7s1MChzZF%dxL?P%!%uxQ^>{%P>r$Um(^dm*Nm zLZ3Z~^US^#=V=4@_vbvbujV{91UKj5=~C>I_e{>^R>xUH^f8F#YrP#z9@h8jS>saOHie`<7HX%MTpX0 zcXh@M*#S3DdDCFyJ;qFEzUmJI#^aq7iqv@#k%I zm{wT~JEF@ClHGq8Z*`%qCxoUAP}bE2)fElX1|;-z!E?ovw1Efx6nL{F?>!Nn`mB@2qBfw82Na!lTM9XWFy`782Isk(wWqaun45C5 zuALD3hV3_kb_>p|`n@M2*;O+bm4&M;aFa8k$^p1LX^p%UdO!}VW8GBwwZV)wq62#} z!#TU+cu|Y{Y{^7I$`c>9>~JuOBf1wn z|2kOIG0nkTJQfUdQFAzhM^BAAtG^nOa9eXo|9yQWg2_}}9=@rc6hi?&1$GD;)pLXr zZv<`AZ?89HK$_1Ck~^^1U8odL9po`kHOH9(7Nk3c%6~zun9r4>xMAttbN0bev1MXp6I508A(&uf$ z@f8WlGh46}e2)^c%(J7EKG+F5|T98QDXBz@IJ34yo*pNO&j{TQSyUR<6$DfQx4{i#EN8nC|2aoe( zF)#$)&<|})BL!yDqf|Y9n+`>T12<+r%=hzH^j5`xPR>qk8t@DuUmkk&ZWXWEXOPT6 z!I>KZ%1=hsd;Wedx|&_{PaLqB;hdR`J9+t+Gy;LK^+t3^?*%k^l1*`f5r^oEb)&>f@vf#$3xcq8Mi{>N3Yfj;Q7|5-`u19$BB6WFt zfmqXlzQjGWwg+MbA3UdkZ_$?1Ad1Z=9RlNM=Fi}Fs^RiBQy-rljgH}`C3~$Dx}es@ z>|2dxxV|H4&O&wX^N1!3#G>XoaPxSgXw#N-ejxXPividK%o&)?KlAE3JYA+|=0}7w zJR>|0=xcjmW^5zzicfgVd76jF#z=m!E9A19x`f?~5sM7V5QZKyQslp8&8&v-uy>J+ zZpa}|*1@x^ataa%2;veGl@7=(y= zu3>Tiy>d7eq@BSEyx9m^WO3{Yn*W+6T2OMHurLim$0o48_3Lwn=Gi}zd>kbJW`*ki~`cv!H&xkDxVMRACq;NZ}1vUEjlH|Fozs86dwh~~&) zXBFX%Y568i^Kp6uf0bnN9a`nnwJVH{7lqc%!8xRtOUI5E@pNqhPai)YIVkRyMNW%F zL2yu7U4{Q~SNukllBi#lH_w>Y3L^pHbZUEVSqd zUEHYmPl*uMKx7uM^ltcuYOFj&N%__g%;ajRm>aH^rr{CFicGFxNVS*pN!kcX{~6GM zifBGSBEvNK)^A#553e#-Sb#wLoW3fLN-(2sMnJu}bD)Xf7G&lhi!8z9vqtqJ9$aI* zGt`2cI-$@S`0Vjg@>!C8d{(WJV!guhCQ3=A)*A&EYkjwbD&4{ zY#k&HOj-o|Y>EqK94+vvl}27s-e#RQV)^tuZFWAR_J*p{_aK9B$7ShA+s1!9 zEc2rN-HV52OcAx~c{9O=gMglD(?;AEP@jRwhZV~^R3GjhQD&+k8+6qRDVfsF^Ek~# z6SW&-ST6Fgm>LXkt=?rTG$$;!-EIP|=;ij)_l8!sAiyTZd=s(M&E&RoJ)~7>yUFSB zn#rzl90ZWn55-Q_H5|XlpTuRhT+#Z{AY$=)pACiko|i*phw$O+hGP?A1K@~CUIZkC zdrW=@jLyYY^b)IBOR&dLN{Ym&KVL*QRRH0CqJ-2D`N_&F?6br9{SOx~He43@xDix# z9i_-EKT&-!;7-ls@WAI5r|CVHRc%BZmDaTDMS8bHp^eV3DS-<$Wc#a6D=I1s{ioVg z|G}(DTr)V2AU;WpHLr8EwVu!;b+brU&N>bvNtLE6ib*yvg2936C&}G(8weD`hsx;z z)=rcVrI|3hJMur(a*?fQct2B*d+={+7%L7f7L10M2BEN<$WqfBiHc`TH%*-)JQ7zy zo80@*PPU)VLps&t)!^#ec;6}#XIAS8_A<5TtM;ZcJ}nob(qp5$G%xbjX#VFKp~jQ? z^bIw<_r?YD3rzE{`A5LV*}hTW6k=g!y#fC09=p+B=DoABm+VbZEZj@BWYZfdUdUds zwdtfLEAOC;k0J`KMmP9MWv z@f*8khfxm>oZi!3a4^z8s9Wz~tbZdq%6hSa510Cf^(tFb`q+esk?W1D+3PCI?%R# zPoAvXvbd)&JUb$3J}R3*%<-mC9%j5ytht#-SF>ven*Xqz@7|ae`_$vrU2K^_2jl+f zWI7y=&&Jc!v+3ycVmLn9Kd{WIxS#%G9W5$?9NKi0H&tDc){hr*NY-(xYnnaP+sXAr zc%BD+XB=)ULW#(*$iuBpk%|&xmrWDFD73WgLk0-$=)+cR56n8w`Mq>>xsQhxtp-vrr!QMB14FSu5jx7T^vX@8)>{u#REuIEp ziwHe%y}6bMavG%h`YtUYXkxIn+Y5Nm0sUd87u=WGO8h}{iEQmS_#vav-c%tKX8Wt7La?5fxwAf}LZ79|H{XL9=?6!%G6F>1GO zqw10j%U=(;vIPkRB!=qxI zCxN5|>QO?|rAbw_>IX3dT#E&u>ivEU{=3V3Rj$cwao&}Y57M_#QpcV~2!$M724)%q zoRAwA)}U2IjBabRaxpw48{O4(hdYnJVNpkUd#Rlhfb0p7Q-lHu1PKBld^XPrcR`Co zC@lC|yYsu8Brr6IDua77B*UzrL^9-~g+w7|^LZr_)kZ@(wcOQr8I-B$WZmMVa03vpsd{#&1544zI#5-~TX+zW;GI z*?#%mk1w~so6qOle}4Hq-hQ5@FJAmGpC@th{ezBg*D}g*0*)1=GRnWWZJCu50w}a>Wmy6NKaPXZMV7 zw_bt27ySMQ!|}y*__y=X7*b>Wq~yzJJ`4wP=pdzIV|r%goWe9f812+h-#Hh`3dCt` zKcUfNaybMd|Mm3j-6?9Mj?brO7gM$hRud#iU4zl-FZ;)%!|B2P*HDZyPr^z*osj$)J1+=Q)=jow?}{AUYvRr}{1bSK zuHL`D|L6AgQ+jdx2ly$oN_L^YV%Ep8>En=1b|GLNU|8-Q!+(HsjL9zrH`JsE7aRz^ zNg*L;TJ0%F6pF=ZnkLAjs(PA5eF7$%!;SqV#zC>2ayi-mc{rU+jt}qw8q+f^9biMb zt{zMr7ybzf6m!I=+FcU-lMU$Rz0wiqY-#PCPQ>j7bde;oELlt3Z`1e#sJD!xR2e9z z%80B6+=?^lprB>pqTtrr2`s<918Vp#>>FRL^mGJ-d=$RnPE`B8EM61`g? zQxf|Jo@%xxm3P^Ekc{rFu(D&&9d5Wt_gA}YC+gSLnhB_5@-s0?i_+CfIKK_24OS%M zUfBlsG{09N(*Nui(qMEroF1GJhP8iiF&#mcL*2~fR_Zfg%LSVWF?4&u;pNH6uTu>W zyhtA%5P-+~lL>{U*r%hzPWUDMkyxV9EZY9_?1yOkyWJ?-{_%(B$@UNF4==v|KHmNQ zhuxPCz*#Hd?4TDOz2M!UO3kAvCS(F{=ofm`!3$^%90wX!235T+rGUJXRQo^wJRbhM ze=#~clzyI-)ru#Vhu2FF zPdvRgv%K9f(DwF#SI;L6NtmRIx%*5?vKy1oiSL-%3vjj8utj=y{oMm*1YG67xq9btW@AvaPiDq(MatcXvV>#m9R5 z3wVrjvAZSsjKSsw3(@n%d)W^)<}Al0K`D)r?K_&3&-7V#i5;Bf7ud#TUoLo`mT<>h z7N0)*{Ga3#y*y)y0J}6GhWrdF0)Bxz0k6cwt^N`g@}cLRsI0e zADYP+NBL#$38Y|HZ&4@5>Evf9j062^oszi8-Q%{jK**}1Lehf5j);&Af;^O8ZU9RN z`Gr|>l7sS~{eV~EbzM4F&gor)zu?LL0#Hi_2tOSwpn{eV;CpY-xN@Qy z`?lo+{Lt_D%V?3{3-x!!eGmP0oo%W^K*#f?Q^B{vzE_`yvq^I8eD|GG2^a#`(KxA8 ztNRQq$JtT~r6j0~s?LGq4}vSGHgcK_SNzG}HpNFIr{mm7Vg%thnuR7ESaXOL0vcfz zIZDu{ib8?<;qh7TqT3!`oQfjDqxP%LX}gCwo{jz$`bmAUoG0_-b`jREz4+|I?0h+2 zgv;c%?t9Z|NpLmCqh506SYKh_VaIJ{9|A!YD;%*ryi#PUG~y-?BEkJ?%AQB>-hNW*I~ci>krRPkAH)LM_5FTF!W|CMTOUEpSA$f@bFFd?4&(xou3bTtyk?~ z@37lB?+=g9T1TDJ*J?vR(f3ghT4rZ7b}CzHYn+kKS&aZlQWXrJTrcMzoc3}#UsfKS zdN*Ob@chtmAK@f|{~o!HH(iEaaO(u2KlPSjP=8cqJkDwD&u4M6T=|Ktjt!&)w|uwH z2Muq5U=U8jB;;MV0fFI1DWG@=!@f`D)1V-hBeS6|*D{EDAS1t-6G|BAB*mbz2PVzA&yp~&0Tapwq`=mJI@SQtR; z{yy+_{%r01&+ywT{?yp{xemV`f4j@8-OPj4G4rYSwL;OGdrPz$8#?Tm&1x3C@aInH2mi}AQ7BV z7|xt2)(b$^`}5@zMq+wf*BesEz}n~~UJ?%ZD;yVViz@YQyjy2Jo8Cf;4$2;AZ$1N# z2WiB+skFJiJz};z-jyiZ=iZmhK89b}>5;BSyo`OCUduro`-<;OQfTXhLC<}W~NI?t3;DGt2j~kf4rREI3FU=`({9XrM@xCvp9X>RMgQ} zEF+NN$=q4rgA!9Tm)a<-#mK~A(huY04CR5Hd5hL`y@RCEqPTV4nv|b6xCVecb`of2 zhvbewhebP@K|g2n*-j9SRud%C0;i)YEHNxGL?bZ1p5{tu6HaLgjb3zN2vIUOJ^sX#-aSEhzwm- z;2(mNCmBA`pX-cTW7gd=TufmwE4!DMyOWyZ?z(*C!jfa5%?AR52!@?~50IDK z(R@A)y_rkqC0Y*iF?>O0CQ8E$`NVjmNsQv&!9@9VS2eUjG<6#^vZKM|YJal5osQVJ zJ_GjY&rwH%fkUKg@Nxk^J2B&XWNa`Dr~y=>0?v=>63j`C?ToltxF4wP(3BbjJ^oll z%P^)sq(4~`fO*Z)UJgcC)$&d^7RY`e+o0W5t(56}(w`rK+6@%6O?B0b@>wxCef8J% zkOY~!@N*Q)F7~(Hq1V%LXkyNn1sR8%Z-YB<24VEUtiioFdPljnZm5x*wKN5;A`VR2l(Wq{s+# z?&LIcwK4JMt7!o1O5%*8S-=;N{d62O#*hf93$$mfGb1k!u^ZTwFpd$QSA6VE^+n1S zw7Wb%ISG^Nd5~3dG^JoQ!zCcZx4A&^%R31>g2k4JryhR0*2vm*~GguFcK5`Ee$s0Zb*@jUm4L`8K zyGsd>0}@IPuB1DoB@MfaUgz}nunoqZ=EP{Xjzx*~KhMv){hnZ2)gxi7|Ibrbp=}w! z1~NVe%WNqEA<3#O3fQtLlbfGFaY!XM{S9zki*Tyt;Ea69XOpENUCpq1#9p>~?csT= z|E8)5S7nM8)*@C?)snPHoeC92kjjNLj|e!~+HCH|FK_$ag!DU?`K?gf8j&)< z)H}}KYR=!PYU5c-%JL0t5UN!7mC_@y$={_f?lQvpPE~Hf1Yq(!$M0nw?9K^JOz!`a zx}LH)0I7#n4#hrk>YVwRhOyO9RBmO_g)bTcUNRr0%Dyq$xgY9a!&S8|v&ovPerR;5 zpw0A%FJ;Lx3g3sIXtzIxK8I3KTq4!|NB8LQAFFVsNwdLKP0-X^*pQXuqpr?5(pBFr zPzm(+-q|VY8?Kb8tgQ;J&1S(mb5=&<+sX)CW0$kt-M={Te6{q$i|+Ar=`*{WxmEmI z-FJcUADOUaCzum5hJLs!nD+?YPuzVZCU0P$_l}nY1-huwl%CkyKTMhy2~T|h_^cJK zGmr_X!J?^AdNoCtu?(oi6WrMM5%j*VD&)CJCiB*g2L6@eWJ~9Ao?e>EjZ=meahc zm9tEE)qM*r3lOb;Hs>vvD9c+_&9XX1!*;bv0c$$cP|zvLdOPUjxU`k|$v)MhnWD&8ofUGE6H<5sh*%t#RAQ(ti+ zr*twlxB|Ap6{OwMHd73Q&|F~KDgo&b`XcUX1XU|d5?Bb(tnH(WbO*Zsg4VtxNP0^+#@tMBM@F%mruy&4i8$> z$HG24bT;)AHkJBnK}*OMvRKBxsi*=`)xk86twjKd-_EEaZ5*0{OdAV@)rt!mf5Tl^ z%G8nXgl(%jlX)#ujn!1yv0g^gT=TWpvEe6Sc2S zEKNMk>yt4;$5Phlj-PBft76O8BEMUcT9#+H#ENE%RpJ^0TL3AY*QOO&X470BL4|D( ziodf!7B)Iok8wp9{)V6M^lW(4KJQ5nVKI4KzBp4n0o%-(FK=kOInQd;LUs8bu3{gv zZO>=Y#VhyC-8z%OxQ}_jA^2fsRCD%_7f8~&b)^v6=YtWth_B?gt>@`G1<1}0fO$e- zwzrK{#jF2o9?dwacgkMIs|e&hsAGAiv5mUq?t9gNb+-50>7gxvsj!0FPD`~=+|^Ml z{`2JcO_D6SAeKQ}Vp`%Hc%SU z*)3avD&IMjUKO2H7vGh;S zUVC756|<#bM2eTsz!!)pE`_ik&U~B(IgUN(RiKL@FrE0 z-$HMxw!vgY0kzm>nFdR(|B?le6#$SSW;qZ}i53L_EW}dl+k#{a2pUE52c40z_ z139*7kOGdpKFO5$!!Wssf&yKa1-D#uj)v#mv-5Vh|J(423@ZDV=fYRAih{%W3gfJX zO5d)%xUjjcEh|`6*SVR$5A85`k40PtE80qcZ$>K-p+S0Q-S||=Hd)p81o);$4ss~f zd@u2@WuRBO+-qgg`{YmO@oE_kfj~nF|J`f<>^yc(K+CExJy;EIDplvjix*BqDD4U< zNdcE5_r{B_59fijQQ2T>lroD*`ibK@)A=l1%Wqi;lTl2F%M^K|hhI@Mme4DDU&;9N zuuV;P9e`0z5uY`&nL4eXvx{%un!c-n4#m*i|(3}EN!L3y5k%(EE5zA26zbgYzdGi^*YT7^lojI7)rIp%a z{X{8eXRn2~Od@Y;c2tifFUJ^rsv41@yqKast1ag5h>WMa;m8aabFYugvAT&qMl*XK zlvocaB1MeHW<5^+eNFbxVE%BrYDYX_WKpG|?;y792Y$BEcE@67us&{OmvAbi2bHz> zz06napZj<3z1LH=q3n@+qAnnyn|@q(Wi8<6U+2qr@vHgrHPwifs8>5Uc9wdGk9b4| zMbzFthTqxE3AK7!Np}mUi>LUX8aa@uth#sQY8vPuRi|%mS2cIJ)$?3fbx)~kG0jR* zI78injrDu%SBhxM6w~5eOHoGOt`u+8{YlXj`j>EDDD{!E`8}Ekx0wx1<1^DR%+FR6 zF?&`_nPIpk=!qa8yDKGU43+bJpb;I$asIg>Ar;NZtV>^?fjEJlgSe;jPq=wQ6P3BM zvh_7b>W;u)bES%XhQ@xNx>U8(Buu7O{0biEsakay?g8a(+$sJw18=X}SzlGA3H`pQYQlQ^eKBN^$Z9+moZ`E6zJ``y)c z^$rhBsr3Sb+`^nAKy>5_={;iUDA-t3)kWLWY&^j0*C@Gu1i#qC#w*@Y5KDmNrN6pdSe%rRGdBI&!uT>BtDPBE^c1@iN6RTndYj z0Oe%O5ZeLrOidcirL6--6H8hMxDHZRLib_FeHJ(}3Y}FP26U*I2R&mX7}LV*PA?3d z>m*q;cXvO0_)ri18*e9K2f(nSFtO*$$u7Nq^5c`;AL@I%e~CkX=TJWo9jL668QHLC zWcTp2AE{Jh+sKa9kqrl9wgIM&?ASK48bT^xrh^>H9u(sDB;Dp469cY8lOg%UhUDEh zS`-3m8#Us4PepNmvQL}Z+H^#5o!2MToiI^Y8U@C4ZJ%hYD1erL$+4=aiA7!mXp&D+ zUlexmGEJx60A(nO03)cZ3PkfzJ*)5Wqj9*yG@tS4#$>L&_naUagLa2uQutln4UPTz z!sfcohMKZU`MHVG)KYR2QA>P8!&aPUO zn^lx>`Jf!5bG(^DbAODXot4?#QK51vQxypZWTGmwk6caeh29kOgu@iX5WO2r+xOCA zB76}`zi~@QBZl@~p-84};v&A5;=X1@S@DEDE%#4(`YUB;Pr9iO98}PS6QZ~U)JIh9 zLRq5KiWCETc-#U7sdL)vw@we+*29LSNNHyzxy-C>*9g9~kU$kGq*p16rSX$HeowI_ z7KwKT4RtRL`)6In7o2r*nyyVN*DAa4nsX%epdiPyRBhZY$nm~g--}8JKv!UBSJ4Pd z9+}R$k>Ze3IUvt1*I{{pN$>s z-eodBo`V1j`NolO#sMX#E2!iO+Y66PW$`jud?SZbsVrwqc_OVp^-oE;pJu9)24HF0 zSqw$1kjkqMHbd>p`yk^PyvfB383#uty809wOo`8-x2q?B+)>Lr#q57eM z&u~gd0ER2sEqDJLQfEE}%jiA%P(Jk|V8mwToI6ag1iwf(#2sKF>eZ=|>U<3od^KMs z#jEDw{AK}5KPqE#^@^3$CVQmsXss(%eC$*h58VHCGygN1PCZh1so?&ed&MQNI71K1 z$t>;=rd1tk9Zz|n8F|Rf$jT>JUZe4?Nd`xXF{AfvYHmrg3K%Ny$lNO^1A>^fZf^GK7GNLV8xg1WWlk9ClV8yYy=~ zI-)Oa{-MB{+b6GtvMRDVJV<_2zX{{mn}qC0H)$mPJM1X`oNj)w5=`X+-H8ec;fp6% zYgn75*%82)#|l5DEanA4#O$$GQ8*1^N1XA*)!DZgT$m(OJr87o!JKCyw2Plv))zm` z+9P#vS{4JD-i==H{=>UKzN5Z5{G<)NiQ){+dCDn$kbquz zGOl4vE;=v5`VG47E4!8Y<7%^V8Eo@^zulE;#WkB?&z)wf4q^19|FWCY7Qu_A#1YDdr|y&1NT+b8YQe)DhXt5@CDNxS(|&AB-J<@D^=Q}i;Ov`&wjKjW+3 z#W_ZywvUFm#JBpLvs3&4Y6Tw5W6*}(_N#Wc4SGg%584uMPtW?px1AoktD1XzHK%jR z5@(9<0HY6Io}?|eyWO*HbML7RqX$0@`z-?VL(Tbn>url4)Zyi!GylXS9mC_ZvtKUG z#cM#b-#KZYUG$qz_R{|T+BrQs`?dMxX^PPy)a$f|M`tIk&S~?>_lOZGIen zCqLka_CL=79Uur$pxZ~XK$Ra;`1HE@1d!rbN+f>D(f}ZLk2OE4feKu`nm(ld+V^@c}v4EeAPk~u=y1F_KkqcXay=6qrp=kZVy-hizC>>ZX23{ zI?(x(v$xQ}R`)e@5YQW*y&AqeyEr}SHJ<_jdjB{c9<_k#m;r?Y`ys`j(Ob0E{9!Ne z6Yxg=qI)_-{iOK=pmWmhzd1W%oy5F=fX(-fAMW@Wgr-Gpvo9!g+zc0wc~YmUbxbQr zBZhn>ww2P)bV{MFv6^LdVv#qr(I>Q;w7FEuS3t`B{`oTAu42O3tE#@=knv$9^NR&K z;>gjOLiv4g8DD<%8duwtynSaIlyUZP zUtOAKZ2Qg^-WaB8sAS+rH+ex>DYI_-{E1WS&fI3GNaFL+1;EC5ki@djbvI-?wB)gl z;fJ4)@n9D)T4_A(#fl211UA1Q!RJQ&aIRubqy zW@upz?!slaoEH@-o-ty+c$V@{yPRo#-#6IFD+f5s^E+Xz~ z#vLv&ItgbkH*aBq(&5Ji3^nFZ2kchg89vjHw#>IRh0$ANQ=)* zAgAAX=D57YAIin61#UoM_Gb`kwC&^GsZ(2*#N49F71Z(rYAtoUG`P|vJrm{jlJ{ze zOObW0@M5K#C|b8|Z5fNx2CZm1!vli0Nk$uZYr&11u}IXS#w^9}-6Rz%(-;-pxEWn9 zD{4oS+_(u{@A@}1p{jNd+MKyi*?^m6N(0a8pZ4iuk$vUc$Xi5hP30CY-JG`g+M3V` zYz&rjei2|^WMj~@))xV$0vm&6Izka#R-!auUAM3S)=QKJoYhIJ(6hzLH(}Rhtj*Yq zmTszmKARH8raRduYPQ@4jaYOpdn=ZL8#JS=y$`oITV+%cc&;m|4WvHwC~mD1FmX_u zQ+=;`lu^Z2Rc;pM-S&{$o!cTcziMxS=~z`fyy(e`xzeb=l<~AT3q0t&c9&7PR6uU- z;E%A(jt;iC8$?U8vu=lRxO^Y^A#L%11=M3dE7rXv+?GjqL#tT6;=+sZ5j37#gEnBX zUp&5vE*#q*%cKC5PXb8C&NiXtRnd<*J$5Q0%AVT9Z4&e?Z`0{)a@g_{LhzFZ9#_V^ zH4H0^Vldj%+aWl)FJ{pntAd^)${<*~C#_?4dLI>nn)ChBpVSx!#LO5?tXP>Cn=tGX z9&0p5IE`2^9V~gUvp^+{hawpJ&fa=juwawnznO<r=+qKYy7mkjAFOg_w)?`UXuz|LQ+ zlASmK8s6A;e+%h(MzwoX**GD|My{gKsAlrGN*o%B8l7^qo%mpZTsTkk4Yo?bN+k}K zsmXlSk_UP@-Sy`)XaKtV1q3=2Ffvr~8Er;2$Gzyk+W86QLqqhO=iHJB9N9ZOB+AcK zjnW@>PF45GL(h_ZUnJ(;j8iC+&V3oBGt(*HmEn$bVraZkn$eAsymtrWK$^YaJnkvu zxYxkVmxi7v2l-Ac;h+;VC~ltyhY$1jjh}xcX4QP(L7ifk1P6~)F7VVJ+D_U!j)=qL zW*EzJBtA>_u9cj;9KEu?)u!Wgh>e`jJbKh@BYUz`h*o~cob8UWU3+$5NsoGwi>sG@ zOgAFa9K=#WEJJj=6ZHNZXHTdE$mlz7CbH=UocTo&8hpdgJzT|L35u;lR$+dlk$Qep z#}kcxcC<%q;WhVaPOIPVc3xie+s!96r{Df(zxfpORoqGj3;mF`5J1F3;ZFZIWoP9F z@vaG?{JeXHfeUy;K!-;eV!glBFjAfxg5~V!?2v8g{hU6tZDtHYkZ)dfTdx^z6a&y_ zyBK>z~=2^yywx`1v(hoy~EbIaf>W3`0A{Ch#vS;bbAlq^iPh57pDc~ zLDlBF*`H2d_RgE`<*L!}8m`ek@X0cXQF*sd7(Uw?ELo>|)yIe}p$0tAdkdhYx4p?- z=aF*HfNbm;4{`S71~dzVd#)Wci$$uc7!`zY7DsqQzqdh;3c%oc;Vmf}o~PV2BG9d7 zyKVqz7gFL2u&@wsBfS1tdDEN|A4({}@%)1bC7^U3`m0PMh+7#?i3nHwYb-8`5w4Qb zNe)6KE!du#8B<8u02MQNO`x;wgfb#d4{O5gy*>|YM1-=Wn}de2h{Ip6LEX<>25My8 zNh2=wfD6Y}gE21SZH(ynR>oo&O-6D1W|7>UEz7i-#&$eTlR4*sT$im$%yA=?ln%tv z+0}yW+V1qc@w%*3`IRf`_Z#mWLF1QI+I!7fD}j?){Uu%@1dn9~VrzHs`(<)DyIeX~ zMFY{AF0Q>|FzjmSLMW$rpdzxJfmh%(c79%uN-0S4vg<;4yT$clNBwx3Qa*z@5R6F>}j9P%JQob!>{#@ zN45Jr5`L8X6)joXfw=)SC6EfA(1LjAePe$DG#abd=OWz$yi!-1jTBBV-_RKibaN@W z;bpe$=MGQ~$2q}+qqSQVDyJQ!>j8V9fqO>h2xt`dtbyjD ze~6aU^A6J2JL%h|gK5!63OsXRnI$S06l%O{7>IMt?qvYV+Y!j2?5r41=ib+8uU^n9 zJ6f42Z5HCBS6(fr?HM-`bL2uu-!Hly={~EdE`z%az@xAjU=U^isw;^U@s_TJAC6%W z?ayCk4oQ_=N|9OIXQQRF`vNcJ!^amE0e79;Oxv;VEpo z{}cCrmDUF=geZwVK`n!qtW&JDf8x@x31|p`)&vnKWKt8PSSnPSAd2wBI8G!M2z8Ln zgBV2bT}fs0@;O`CecQ^e_Ki4!d-~5?{eHW9I;`1xmEOyf-swY`NiwU+L|siNYw}-M zPUE_N?JZkLrD2?>P9f$gOIk^c#hXb4J4xgC`>7KrxJDX&Z5HQ zaC|A#@w>|4_x-Ew>b{v6PoDXXKSa!~Nsp*v>LeG~%x&^Fsmtg)cV8_yviE4& zbRx?@+olaIZ8(OP@w4x691qM@F_I~5$r3*V}=%iqy=71qGQg&m(#s)AQJ6UU7V$ z(esj?m-L*_b3)G_8!zb>{;i>SZ$7%bbRXfTOZotRYPf`;R%4*|ub5-z`Pb|wX|Rs4 z&LguVE+*DweX8SgUzHk^I|R_-=|dX(zM4$f*ChvY9&#Dr%OoE@Ul2%G@c54bMsDw2 z8DnB0G^U_M&EhF;ppul?d-6A6A5nlT&7*O7Q>uvDE(@7D~}j%;QWGI{k+QqYZ7}r!I+?wd5@7ANqq)&y zY%th%=vK4jEGKSG?h9asMS0I-f_pZphJgvTGGN8EJ-OVgZ zRsv<+q7}2MEKQ^qYwiFk-TGwH=2HOqs&%@5m#WxeLff*&w*|eA zLT~ix7*H|PQ9|hCW7VaBDGsy*^yB;-7^N}DA+S@NZ!lr9t*b??jVa3jZ?mV zEPgNGHr^hHB0q#Rb?J9n3Xf8b&QI=&l{^D;r=_>_1QoaX$XR zK2I~BrK^py7(w6O4H{S4A_DK0={rsBz{nI`=SZb52ex;W?nz_xf!qLpM>*zb4}2zy zFY}8p)8f7{telUy6O`p~o>gTg{=8Bg!6#R8usIG-(!Q>P@s2X%VHKf0IUla^SRI4z zn`)9J6xRT`Mww8y?>(|#4|0@<>-0vvLc5`1H5<0KHI)_g*~h37>iVwFFYq(X1&fCi z&oHuyr(E%uFGift^8PL-g%omH%VMC+G({62y3F|7;zII6YDh}FC=KUy{hM9IU$|qNIrsxcpoKRIxT)C#$l`-W;qwSJ} z25h5*Vjb5LS@HPmu%R_sCiU~Lp}SZIY;K156`ofVhomZ+4=JM)$|0eNh{5HLcMcjK zcO${%@K!E59@^bibs6$#4T3i?g)Qzm&?kg*Eb!SINU)A!HB}r8ut+C|7AWDuRc3iZWsl`=ZX~yC*p@0H0SWLG@h8m&jrl@&& zaxosMTD=w;7}9zb;#w#`gI%&8Dsg-)2Xd%YO{+=DDpdkdaj*)3qBq+0E)BXYMxMOU z?y?C6W8p(gqYek-D|`tSO>Y==IFTrb$9Q|H$?ZllOZ|m8?g7TIld3piYsD9Lb)w($5nXra$ zTBk?H?XE?Hu`B>yW{_A??KhwmO_|EH9=ZV_m@^DtdC_!bkL%6kl}|h6jGxMH^Z zs;Lw5=~CgDV?^X_klAk`u^f_{krnk=N%f>9bJr9Qzv5y|Oejqz%vH)$R$^)DiYO6> z?35-iWEqK~`5^Dl%NreAlk9Kqda$Owt@L`Gyb-OSA;%|5t@MS+Ir~ha5gd2>tX_j~ z!GNqCU*029aLB8|nT2UKW%~xYMD8%GaZjxq46Z;(1E9p%v_+Co7P9P&RtZ!|oWI6R z_^%E_$8P+Pw~p5w@9H5(lKr(fpYGA|RCC&(<4mgmr#ddLf%?L(zf$DH2A!8zH~xpZ zZ@KdR9-SB0%Wu^6Icxeq)Num#rTykN32xMFj~f0D^%_$$gx(i3I|s92&quuR|4`q# z2Q9bnTSc80em;ZOJ&F%x$rQxRQ%Z&fk%L%PFF_@N=6{GvA}!E7vumkpg6nAIsTb;u zHtD`n@2{~!gp>dR2%?I8d%6rY+^7_cU|uvP zH06w1Rbj!X@%4N)4IF;4YnWd6W`QLxYRq6PD3R}t@pA4&^y)zrFQ(otT^f!<%1j#E zrVt6o>3%@EW|O?l3Lw6$92mENW!)oHS+C1FR~DI`H-dX6t6vUtOG1ViT+i!gjwK<$AV zK6qsyO1VI!5huZEMfhH)D3#Zr)D$U1AINRa4c!r>f+9~#hRcdOdw!k0N6H7@jo~J>m#K(Hpl%{fE zmF9VFR24fC8u366c7LGi64P&z%(!TF_H0bj`Py8dH1hR0L1{$g26e1GJr-s&Mlmb1 zXqXpDWI!(aR3DUgj2u5!{$Uw<_Whlmuf{phP}}pbzaH1{1|EQ8av+x%8pb(sxm};x zdGV@B?3GIgX}I@^c~%3}r8>sp;CJE@Dxh41gE8KPChj!8vlBg=EZ_mL#aaP!Ipd;W ze`iM~5Dly-R3=C4>KS|1xH^xWQ6BKjvE2|8iNAf!qhD?{tV_;T zM!^ikSWq|L+=~t&#&|&-|k%m}SJK0|~iWsOU_ige>+57dfL-Jmm*K ze|wt_<=xeIpkp?|L@1m_YJU|gDbUigWJ@W7q=ebAkVhK!rhOcE*bzI{KNw}4FtUNK zrL8~U%p8}s{Gd<87DyhIr6B*Rr2h9>M}cl*ud$FaL=Q?5z0?6FLMiLtGjnG1k1}EC zX8A@rKGQJw7@oPKB@JFR6j=4AFj|iGM=34wg#R>5LO#?gjbzQ|PDUmHg)9LOsz}$U z$-k2On1a|WWFm+K=c818VnJygJkmiLR-(`3e&ITh3vZc3-n5c|Pht@ps2YJw_Qqa@ zK==I9;xrYIz)xtn#SVrNMu(HL5;%FBtDyYTrnrEqZS3B3lkJnYzbQmKw9R|jF2I!ga;7=-hbr-R+ zS`9L5F2zh-NuJsGrQ;4UVQdp#xJD1l};C)Gb_yGM(Nf3G&+O|@GMb0yDF@5dp12ufSDFWua#(h zRHMGXpGN_mbjxjsYS?FOO(YG{4+JoGa%!$z({N6-aikbpWFzOr3yl6>ut8inJf{&G zE?i~?(<|B$ASN5(2;wU~=(un!&@Y1f19*-A84+8bGWOV7n7-+2D&2Jc_c-fd%TvZZ z`c@eg4p>&4Bp9{Q%Y~|+-_6}dXWO67C(06CmEhPp$Be&5H@sa2tB1L4)v;3kMNIr;aPSxUf%u^=7%bZP8ZLk5}h_reFc>f zMVXCc#+U5a&P6y>T#TfxM|%54@r%<1e)yKBb`c)lO@v_P-8%D zgsU29S=CfmX;8)=vb#ivF(v)VrcS!hdYg=vV0|m29eKo&+4sU!PIG|goUq#3GpCWN zp89J!jPAgRl3R_k>5-~HJxfJh@ac3Dtvgp=zB$SK>Kl~pLP#kE~@tPZ#qTv8in2`^@zB3cHH8nc^@w0@TffOoq|r-mUKHitwEmx zV(e>n$Ld$o*dk}0&vSSBhCyz4N_HxgDy&*ynzL5ARtHL+qhLK|+*gq6DzKxn^52Ce zeXde5%{?6{n4hu!MBgGOKY_>R0+&#j-i2)vR75%q_JA=L)he^2#-`emaTz4@H76L- zE|l2RP@NojHqvx+q-REp9aG+Hvc`Mou+S1k+xIjvOVW>Nr64zW>Hs>SsvV7Ef(1GA zF>W60fF^2)^?{Zat)V6cqapUFOCA}%9_92>+`0Ueuxib!_O1rtMM(ffbQ8&n)~Si& zn6bqXBHSPbN$5X zR{pBmU=6;;nXUzX5IOakcw%ElW5rZ%67+Bsg1!?F0vw_xhQ6) zQGC4`kFyDSErOJcBqg&>O;h~EKA*m2Dtf2n`|>MQTz~?h{){z8v?n~%p?pEv7sfV& z*PkzLU*1~x-}N0P#v7IeeWWbt(vbH#dBLpA1{o=f1D@XMdy`XkdjC_a>9*XO(|Y-` z3s3Mb{y6NOo&I(Lzu5!6Iy&mMdp&r?9`M!q`Ek1sZ|E<+=(Z6W{7XOjox|fc{-y_f z)$1JL3;csWFOE8A@Du;Q&zDUX)9t=&^`H#?%YVE&JMFU<_=GQyI`I3bLyu?pNYy*9 z;j!}?ACJ!tf1w*N;EjC74`)Ze!7KO|e?Wh!w=XaH{j*c}L4V=JVe9m53%bhw(u;Gt znb+kH_^N%{ZvzDO7hiO+Is6xYoMA`tU;1&3&&TZXb@%MzoPN`j%kB+sogU#kdVp7W zC2`ZmfBBE&POr~i;1j-t@<&v(4bb5qdhEA4$36T>5BTa8U=9Dk<2Og0*6|q-iT%Zo zoi6_B(&Jlve2b3=kHBGz*j5`jp?yLRFWX1>41eI~t4{m)sD~^dp6KOkNv`yneYohh z=_UNd7c{VZP+y&$5k1*odeJ?>pIvPDRkwA5Rq>Db$r|QQ@bb-G(|xmt4^QCX2|hf9 zho|`PJv@Am4?n=e5BTsSJp70c?H2S1|K&dr3HBFX@X>lB#_A1zr7!&xpcDQJKY$;R z8#^4$j=-~X0_28&@bUEg0`R3j^s|RQaELm+&goJ6pYW4Cz^h+g0#5J`KDK{*-3C&! zzwqL?^%6&%{@~9xyoS>3FTMa|jyv>l`U^gu{(^&l(t>WlKk$6g>i&Yy-CyWO{|)}= zzri2v(+l_k|I!cSLHw8fK*G=;_<7m_c7cEJ@r;cD{N_*evUk|+ocHl1dxDo|FaO>? zgjeh@zJPwvv^YEOb3%(J_L7+BOfb;dMW1NM{=y3=j|I#ldaNUcSARX{u_yKjWaIbX&4E>}(`19+lzRhClcd;UZ9AOytT7pydS;@@)%hz(4p1>j|s_^ap~B25-!Y z&DzF!MDs>Orrh5)Lf&OkXeyApcGVM_(X`iV~-eAkNNsaHSv72R-kO|*Ok0G-lmq7J6c#J3m z|LUryIy>=vkaQQ>Z;LU8(XyeY4L$dMJQpeCqat8g-n3D|oZ9@*spZURdAWjtZbf^8 zUo7IZcw9^4)~=gD0_nLK9c@{d<@?Zrn0d+ksNCX-pYFKji^9B^-5kh90B(jHYeP4& zR)u*67+j3q(}8A#5#tsVT(btKm~S|++4;BKvJdW_DY@c#ViPc+Y0ux zWgb=?i6XFgO=6d-5&L(>r}Ly&fFiq1q;PrS+Y{O?;<+f;H?h|WoGrGP^IdC{KD7G* z4{P;_R23LmAbycTB4Q)+Rxi{IbJdYF%wz4kwVK7=I6Pd_8r6_#fW$VC%V4le6)8;% zxy4*fd@EZKX~HtrJ_bI!LJA~Q=)jQ!FyW+PT~qVcVRM*Nl-o$u?wu9SjO{l{_|%9&qPGu}l?oHg*>Lbti788GSIbF)VZ< zZ@I{K!$O?S#;!Qf;x1gu}?((`X5DKx#Fs>L)>x0g+VY?;>^CezFPXMJy=J4R_+5eok2K?-_E0;?-g9rv(=!Wq`Z#O zHE{wiPiT!P+AP=qAXua1A+9rK8J_Gq=2urh2~zn`1MG$VY8fTBcv6;aZI-7NT3C$A-{I)Szt#SnPXJ6<7U{b{51Ae39%C%K~MUP(eVKH-Ui zhZ)Ol$GvlN@LJ72EWNxfc`c1!mi5@(xr(+Uc|BX~-YjGTsWFjhqCCI|Dh8yMjL{8^ ze6>Ip%6mwS)hIjVBbJ34X#PmMD9*)#LrQYpq~duaf|pU}OO$MRCg+PfWV?(dOGi~G zZ`eS=0w(i#t00jqqlb`Do_!(1OLEoj;O{zK(AG=O9?iixZux!~$7jp- zG!A9GUtywvBq3Z)0oi)h9@0*e#@oc&bP;&2Y}8S!m#nRKRjGe3(Rn`{@(IlDQ=gOQ zuxWbcoyMvpQjA!(c6#<`AX~HTlk@&>+Uzw7_}8KTjvj~VH4{dRl!_WyR59`;+EOmv zpY9%GUQRsD1?X^8Sr!J3TO4Isi{}E3}U#cDTK)c(dc6ut*04G4$znc{{$_hDN z;!H!t0$l@-nvXzNnLBg~?f4dmd+B2K)F!hSFI~`XqNR#U0R_2|EPfj^E;BVW!IDpF z3k%rjv9&vR_Toz39|a_MHD8XRAOOWu(mO`WQzdxXv$a!VV_je~k&t3Qm!PD%ZE_J> zuL{UosXDNsoDz$F)lQua*MCEj=4$}9g7=YD;DXE8+r@XI^LJH4(_l>6sYNbOMtTAc)tZ&)eaCsE`qdh zibU7VnQ5KV)3d{ivx^>Ac2R@)^Kd$kSIh8Ew`g<=)GNHsCC`yb4)5LH2RlP==g-#8 z|1@@fzLNLz`HG8Ia~e^!qc@$-Kg6)UOm7{nK5@0U!N+t32a0Rk5ql;)6J1bjN*pK| zN^Dv|V5W6X*Njj5cVf}NQZAG0!8~LOF?GeEQgyc~)0-HCe%m^}Xb-#Xp#UU~&=}>e zz4)a!#cl-uSk0mA5X<6u6^o2eJ-5Jzf2^Vot zL+dr8d|{U5fZ`olcAnnne^XCl(dkl|EK8h~09!IWOiED*01iVD9>KaIK8$3*`c~#D zS^DPZc1p58RK^=UfmbrDvi-So&;%a&d>v1#-oa&M0B`GmtvOfQm(}XGyEzgpFO7>P z!7Sh9;V_YfN$b0eJuub|Y-^?N|opKh41mi!Wm1{Jt4{j4!`HI5MFB z8S9_5on1Ceg(27Ke&*^X=c8wj6f-}yI%!gxw&zzOb-q$<&XtF^ZLHK51ZM)5eVua?v78{P`rcfMFo^T$uEglW2# zQ&wqMsp>$w$J#LQD$DTw{9R!?MGa`R?G0#EveJ^>9`;;o1p`ynX2j|#4?~;tUd&<5 z=I_H$J0o}jQ<^O2*&|ru!tjP1%d5o#6E=;e^N|CXQ}Bp^xsFDzpy&D!rF+1~34rvb zbpTpb;yNs!&Eb)%R9YlWJ8ahf5RTqO$(lxFp><8kg82;=L*O@-WoXFh-(%#CC7;E) za_2kipPR*A$WJ-QI#-o>)t0#>o9-gN>7QaS#7W3#8|K;Q1R6N{^zZxNx z6u-u9cFrC}O9I~SHuvzj=5cce{+_lk`rX!XvyrXP?Yw@|M-z65Iey*D_v7{}`aBKC zmamd27EGS^vXX}9%(M$J_by za@A<~jUD_G{7C=)L_fy#V@yAujDCWDpEju24?j2H-=FBm-grD_TnhjC^lCiX^Woo+ z{Rn>?4_o;$9OJ)Z4}biPw=yR11S=R5;J>j}#(owss;0en z(V`np$iew+@cWCa$1gsAH~4-3YI}colBt2yc<~0Rb;hS*7=%G4+oy3B0~4q(!^PC| z!%9KxHHTkBU>g$Ne~u;E8t~ZuxTv@TX&%|A1%}j>n-w;EgiC@;`5_0~wHLQ$x7}n~ zNQwL|v5l3rbY>u{Hu?YtT?Q{J4xSkS{C=-N0D6`LwU#|1 zg_uS5lG(Tj&#?70ijP?jO2cHdDTa9(u9Bs<2G^}TRCr``_B-!>PP2d*NY6vuWU^8G z_q8N{eBS}yv{@adwb`}I5GNj(9CS=<;|Z?d`{i?mhNT~VOtMp4!?B`S-W$`2osXHAu1b>GthmjY zcT!O2&%5@=D9N7$>!($j$@#5)?rq+*4!6t%wKXlm3^(Up1LFtcUxaGsVFlCNUTiKy zzCtg$3~F&NY?1`fVJGlnF$pW)@-tYOpM&?GufxyLhtFg0^X!lL=SBQE4nD6YpI6Jz zx6$YNm`HRndJ*7am1>^bDKVYuH>$@iwv}#s@WpUu&#r3oHc^@ zH?X4>374y_TgXvk@hsndC!(IRL=0!+`O*&o$Ik2x3qH>oCij`kuH{NEgivjV-Dj5{ zws&jTniE9J=P-<9Fu0eqXYsp!>Ib&bQw? z-#&G|ed1R0YVp27c|<9{oakW993S-lnsIp*o1fiZLy)x@m=PCB#U^i{ zDl(NS*CxJ!mGYhnFe1?w1**La@cERLWJk2p-)EL;u>wPrzU z8clLI+S4xwH(cU)K%6B>s8h%jjNHdWKpW*FwUIX-b7KeOelLdTq6UOZKCS(0`~C73 zSN1X^5r2ph|Jt03*^wB@KzZMb!yLY7@<@8oC&G50zXTEOz1uGYfm<~u2<*581iu+0 zEiSHi0GTra5nOShz6iLsZV?I66dy8|@f=2|L&+Eulz!`?PcOR1_l`ORtiB-J6l>eg zV|b(aDrrWu_rN&8U-D09VEr$PQ`I3nX!Kr&^f?5`>p%yX6U7GWt3(M}`0QTsfq>sb1qK2r zTSOpIU`Asj8LpWjD8IH!^~SmI{!{pa~)f*)`2Tt<{f zjh7hERS=(DgeCVV(Wpp&j6EKYd2QCq-`pVT%|{^fMVr^9M###+8L9#w!vEvOMSSr224;UU|2$3>)#m5H@830d5B_rX7`_ki;q$lE zs-3{GH;WQ5aPK8x^I{$;8|&KD8XZuU^|*pu%zmr61MGxQcStIpRe7-x_v`WhhRcBU zNX*7)6wHilAT_{aSwS{cDhpD8NVHoo&o27Im&dKsU#w%X8FjgqIGTF1clu%9{&E$= zBG(OB8mY}S=PZB%9lGDW==Ix2!)}|U$iKHfoo)4=s9@VsTSL;#gOlI?Ch=(7(9&!L2?^vG25f0Sh2DpYFDbwHE zaEUv^{S_!tw#z}Zlo}!;t8#hyVF3R*SKHNHu;ecPFPnG? zHezRsaOtg?`Rj+f;u0LUS~#gPb+e6B=JxN9+M+$2SUo;QUj7o z>a}2T(!)N(m8+H~TTGA={+*>3C^6E;;vj)~sk2 zU_g*avM03pfk(@MFooyQdn$*p5dx-_J}5!VuNf*4Fb8l?9G znHltU(Y$lEIneDaP@mFRDnOaXA8K-Q@^ZIw8PqR>v?`3(-|7uIW}sFSRp}l_^|g!) zG+*=RJ@Pg)tP4NE>wW!o8nma@|G{4W=d$&GwAbHjlm+m&8~}S7fII$l=Y;4i zPU%2}|E82>C5>`e%I8C!xmC}$Pir0&dB8YB@~z)D(C`hpz{_rj@@9jGlwdv2j}G!- zqVEh)rFIJ?hMS^RF0wI;(!V9NF)wJ)K&M>PAXa+tutCD)zHx&zJxT-)rseLz`c`QF z)v<#J=b?fJ5tc1_kcfc4+Oh8~?h%rN0Pmf1BW_U z|ImLVbSeWEMW>(+9TN$i%F|wr9?{_;dFZykMFCrnzZa{>t(gVe@;=>rv1*QeA zm*JRQbm+~ZaTv3k5Et_}3E4G?@zPf=Hq_fbJ?jr!$H!;Cw&}7$-UCFTb$))_?h}BQ ztzMfR+9xmDNA%Qr)rFGuc-%Stg&s~?{Wt8P-EYyu*~`DT4;hT!VYhS6A2B&DdwTnt z{`T7^=f|+Ry3uC$F{bzNJlZ%@p16081n8j!M|Bxk0&hjzJUagGw{^r`sTQ#!K(UHXb!` zU$D63fcYN6IxwM#01%5Hy$t5;>UrgTj%WdUcmx7X9)XH0Va@pzd$V9P|JZchyTWwn z_auiKQBT2g4arycQ&I+)>OxVc#VdMEr8{3{^oY+cvXgg(xTHAyY0ia5yAwQW|Kx8_D07SD z!_XZs-UYIMa`BYF4xT-J?>5~fBQK5zAPc=}R%rG&2#zn3KnymEqI3! zXgAU!kiRzgh1U{E$EWi=`%#Q5ziUNxe;{PeTy$x*nL1TCNpj{r^nzv^!@nXgTGBl% z*vRhh^Vx31&xKS~ZRuo2 z>oXFp+Lt^-n^Cc~4@FM&q2ZKU7s{>;Q;tuo5Ch{>iM?TCva79G+f%j(qL|xSe${Lv zuN5gd{Hoo6(;b1<_Dk`|d`2n{z4B~qqoP&Ia#GEK1&6(;@k^Dgy%bIh=A0l`5=$UUxrCe# zQF6^ns+XzBbfQ3<=R~I*ds$%^q~oIkd8kN|96OJvXyX~jb2Q*b{c9LHF4H{8D>=-- z^c|qdjkic|NL?)FpcW?)UV8Q@r3h)Xj1|-iRhTWg<^oFl`6~62Cd27tE2!K(Q=|f5 zJ`GF8U{$vr6=^}0k<>IWe46`+*PUPDn&6r{i1M{2wzGmeEP$Y!WIoq9Zn|OUQClu~UB748{FJ2)JRM{(6im3l3_pL}g z@3l?kncGDpWn6M@U%8*govQ+ioqL=cETfUjoD6aoSBME|IF3=f8&x$mbR!STIA2c{ zUY2xyA-@N$gkxIiED9(hHKASj@s;?-h1yX#1~UMNaSHvbOhoP>5KeBoH?ZDPA>tbvzE@%P;#>lK-Xm zeP-|7Wz8|B&fKNTJ}TGE(TjUtuW1taVXxNAGFgdhHBFRCUa3jdN?xaFVgCH9G#Nhk zzDASH&@xwODkbkV`*I+Dom(?)Lwmm)GYQgz-IhtvY>_SZoHzNQsk?4rR!mhqp#s%Rpx^KYkd%oO#b0-lR;V8H<@OZ_YbH2;naw}U z`tzQbMDh3*#Ty>k#X#{~{nes0ayMjwfCmlo1~o_+J4{pN{0n|W;|OdDjO5Psy=u2K zM{)aRk=&jwf0e-l+@3n6H|87L?k$JJy z7$li3?f*9%YlhEf@@NIaaciqcSdX&Jn>R+Q2%7fp*CC_gG`&VJ@n zK91gnJiDa6OYO1yQ@9PyEAc~k5}KFo5gijlbvHK_SSeA6Ju8#3o8*^@7At9DpQ*<# zOmJOWEtM3RZHke@(!5Y?q4bf{)eZZB^UU%0gEZWYvRPr)7jF<;X>P)FV>TO5nbMVa zEr+nbgtvucrSFAA#S%7>;(MK-Tk1g3UD^`nR?$G^kk!UvDbZ3oi+vYQp|*IZU!Sq> zW60sYuM%I9KaH9Zn>#A~jWIFCfM_8i2h33r(Qk#jj9ywSe>7x~1LX&9lQos!%ty2y z2rGABzG2|XPk3eTS7O9^r%M365o1?Wkcvy{A~`0CL- z4SyP1uM73~mx95e?+4;37jK>JR5XL3c%8+M#~c&}Cwj6}KDNAsJmRjN;LeFm+<2ZV z{Zs-%WCNM_GCAV|#rvyDLsBY2%SS0lYkcEK2yW#<9Q7s~COdo&_gw+vV1miIXj6wC zJwu+{S%t$mnkJzwtS23bJmOQ$jAUl7l@Z8aw~7d_$~lp-fB>t+7iY)~!eM4s|@Yo>Eym)>tpArDC3lhaYVMYYz9nPq?zk?gHVO4vV;iyJ02&)?SwWA=tN> zo0-ZC09DM40KNSRL%`tvXUAY`!$H`y4?-h52#53O)SfIrloT&Dn^(SMyLW}jmyPX7 zh!x8g;g5aDyJ96#|2fm8{ha$IY!o9?&jHgMcZ*3 zkVy@N@v6DR!o9?eq2|+mI``k%`^Ii5!P7YVB?h z<&zL2qqhvv;KtKOMQMp)cW(V}&RC zl+9_hKib(zB{u^&x?9HP{A1irR#LEwnWz@{$5QvG3u*FMH%)O37A8Q zjk@8@Y^M|+qz8n)N9cPh`fP~>36VFHimhoZv8r8ZC_&cVSyzCs-nk9?)+p-RUcP{y z-$M)7@(P&7KFO`;{q;F+v_`gzpUPVDQOaNR(P4KUkZchs`DItGJuUjiw_$zQI(*X} zcH8}n?&zK3^8J4H?&hxLsJQ=OC3tm0!7coZ~m|uiPMt$@u+Ke5^*maK|&=D8+ zsy)u*_ca1(9s0^K1Ht7Z!JTT-9FjsR-d1daa5P_;7^zl=FQq%x9P#{+epSnIC>qUO zyQnh1pn)8K{pco~uab&LG%4buB@civ{b;YFM zjYrz&C-rxI32W8-rc-46oM5@}bPhWFNm>Ou_*l!tNZ?kp2-CN8sYtPX;cPo5xXK8W ziwsPE>fPjfv{WQ-q8UT+#{0-x)Kh&BxSM&fn&xP7QonNks-0tMI4|J+W76b&I#=9O zMI^zUhRd~BdUR+wucI@VWz*X>s+#!+Fx38fBQU}N5?~MNScM|D_S!o?nt)NY4ZLO0 z!prXS2il|&HvII*Mj^D$tm_4lH?!>x7Jz*MM4&F5cTDifd@V#Tt?leOdp|WYAdbSx zGPLdka}ZDo`4_5lKn4g8J9qT4kcCGA4S&wlm+BqRFHus!7F*sDYz*wY0ay#m$RoX( zq0k1gVj&%yNFEe>QbC=cA_I|WbNUpG$Kf)gyW7uxS}=fOJGmd36@fzrsv%9mo#)7z zFbj9^?ThDJ=3@)^-Z+YGPSu#*0)HZ(Vcz8M2{!3LlY7t>N&$S{!5^ME{pYhu7$=AG zo16Kpw;EYZ8DmuFK)>F2Ej`~Pnf*Ce7-&JDV`y5PR5qk_zzmZ$v}`$P6v0?g&)K@C z`>gRK(w^$Ko-nU9t&;FKXk1a*ZwznZl-^F!2S^a6Dul+>V4AIljqYKi&z(?hkv>l8 z;}k!RRbW8AiZ{3>`xU4*n9>vNXd-sh%!GgE9}yqi+mzqsVv!aUz2o2%ZA|UtLLpaJ zqdt$(D0XO<6CbAOT|7BxRu-^a#@EppbgBv!KtMaFi38xB9r%UjbyMlZ6>y+}9RPuH zPyz}Hf^rU6m@L1#StFsDt9Tg(EB)NH%9|NJ!7Kb4W+S$N5OL~a{(;te zkRVT(c2`9Lkv6fHw@e>}?<3Fjj$1Um_z#gT#6s4b-kNPjaiJ!O_bSXH%4Wf)$#bS^ z?Pb8Qax6nhX?R;veCnN6GI|xf4kvW=+W&;hc|JIf4`KEKB*m^p$WQhfuTT}XKtW!j z<-+umGBp>hwty|F00rytRsQ(w^2X&m4&yALukxPD(+s0r)7XkU!<#1)tK@e zeORA5voX@;7D@p@GV^5|X1h=nTq$#_9ED?CsL_88{T!*xt{4d@6j;uyC+(fRA2LjW z2poon$Nxdv_W>$RkeueDM8Cxhf7g4-e9?giF-KhOg)7rQG5bvf%y4T?uiSJ#-Gp%r z(xGWUsW~tm{dbtgPi>nO(1$|ZxY7zKE}U8T(Rwx%_eFAgw!aqWa2WBIL))<<>(L>C zmCSAZC_F`{;b7fV`=)UJRK+#3ZKHl<8*QbcF2!_h)TApdiz}O^e$EI;rDcCVeIafV zc#&#f>c_R?CW_q|@bpvXy7srdePyc%?+w4G#Rv9{k-779o;dP&ZWy@6genyTRzUV- zdAmuBmXEirIF&&64hPPb%(;^xp-Lpyvmomo*1|ZX@5tcqirCLkk+uwYy4URyr=Zi( zjP6LU9QbNoGRCPmLQIPUu=m?5oEBd0q{vW6_(20soqeU>3hh#&1vV$YXX&!CBzPvD zQvY9hMX6*|)lI2n*)g2WlZxqIq8dxEhu7z-X)xEL$LuiXxgjGL6$nF7l?g@o{uNvJ zn7RQhGPdouyIn#fPQrzR=g?sU+~OF8&Yz$Pr2*+8{Y?JoPI5Vas!c>bExC-t)jfJ})y$GZ9nuxT-Y7{7eeG!{!Gt!kc{lInh{!jkHH z21Gf)q1ryh(Uw(4#6X8O^;4yc!CD2vDp<}Jzg|ZL8-8CbeTB4R65xRpnJrodx611? zVoPyDy(aPAgdYE-K2*=)Pidz?WAs_8OM#-(J zRq2bAy)z<8y@J;(*4TY?qF-8HkWtQ-1<`w{tgMp} z4@_#mU`Ckj@(;YrU_tF$)Bm(ZA{iuHCqIswga#Ty`+L( z5YadS9u?~UitVa}a~YoQpk^CyeN7sSu6Up;jRz0c34|@Q19p-v`q1t<43yQ9@C4|% ziHKo}DL{Pz!!oI#gyyM!1)=VUAscLDfG`%iLLh__-x5>5e6f5qg@}La-$(1I@l2oM z;BooYbg$gnky45+o66L*X)UTQgiOk1sJd5B#%R`fC(o9i6c!c#LcRuxS@Or`axW+ej`sYO0;`$W11tv=_?ktY&eIZ z?-b7mb#cyS7iaTiJ@I@C@xm0W3zxmg^C$FQF?(*+3E0u0zzz#G*Ojj z`fY6dSmrCE~)0(0<%10(D4UbA6hETg`imx7E~y;&^7I48$~#!04h(Doy3 z9^~Bk@h#O5&*;mqm-E%)<*jI^D0#cs_gdpD!lLiO+gAX^;Rm7&Nh*$rDX7e@!)284 zKsPI5HOtJY7WHK9jwZ9W315G;TmnwNgtxR2h_4cuzjRVj8sut8VPI&4k^G;5sZphp z0VM4}y=74^g{1Jn!1%;logfu}1~>7rqC=}*tr>bXpKA)mvNRYOWNak#B-OYXYVWfy zNXinJPqvIzmfB?-Y;F1GlvY&fyUe(6G@3ao!i3SiaOXf@Da?^F6O%A!H;nYje|8rk zyWb%^H|EBIJU^nWKjIcX&7reSc}c=DF`+hHOHo|;WkphVeNwY6x~dtA`(I%H<%?bB zs=4EbnDbR!jioI+)art)EK{0uN33VsURD0Oo(Ul;3P#Ac%r$hC1T^1$=ZsS|%Vsxk zSu4saQek7^i>jVxI8V$e5Y9m3TIL>p%B-HC+f~%nc{O9(uAT{a8r?+Y^TjEFZWObI z1IGe4pDWI?wal64VWFKcgp#l433W15ofuZX{5>rHtX4CNSJ{oWFCdSW4=Ybzk*%?_ zBNrO04-iF+yzZhv%O{mRS9IR16S_d;M5;)CsV;i_YMRr0O+&1xk6Ym*eoK_Ws1!^~ zCpT23(UhFmUVOA#OfgMhXkF$lUT5LNyP3Za)5>Y5fW7#8tI!zsT>JM`*<%Z`uZrMrxiMl@iwFCA$(uac{l=VL+b0Ou|6Y;Ql@$ z`!Y99J$IQE(R2~11pk%J{nPEP6wC5&pueU_SO!32Sx)<~1j~m1myD4}z+zEp6`K?Q zin}*b)03nblUnqO=ZPIkdkPo&p>VZj(jFKQ{1`N4Z2bJyd1CJH@W7~xS@=GjiF+SSU&?m<2 zb(;`2lkfhhO7~lLn`CyMcjlZOtd>fpQmIrbRh2F;O(h_#fxelUv>JJpN)%CcuxV9w z$CFReLuQ$KirSuRFQmalj#}4W%e(T0&}&Eh8kFaYNF(^3STc2xrh1K>yZ90f36}o4 zMg}c?%IyY`oEO5S#6G)ICABhN&pBD{>l}yH|H@Bs||p zqSHOSRCAA@eUlj}2%>mq4cTAcl^DxHy!6aP6VpUhQ{>33s)5-S=DB+E$4YTpx^;N> z35)gV-cjB+)snw=Awwu1dwxwWjqtLqVhGWE+5k2;+YX$6#=vNGWPH6jSgj2?EQm5) zy{xRpHoYCo#zIf?f)WW^xabd^0!Y8sFyxQC=C3b(nyUQT+{8ETgk2)!_x6fe&|r$F zL{Ls-eTl#XdlIvV~IGX2^$LCAM z#j}+VTrnaz61LkG8JeM79PE`u<@7bhQK> z%~5flD(##60wScIgb}`9o6yX1=l)mj#Cb_+++?uJ;jYM;urRZ<8I;fr^$M8U znsSN07UBe|dYGEmv##pA%7^sPwudYJToiuiaHw2U$Mdjb06+7VpNsVH!0pP}<}2+X z(03}KS43TwO@$G#sL49I>}W!=hZ+Zj3uPj}dd}2m*J%LZF+^4e@iiDslAy>S9DhZ= zh+FA9_>8H~68)?#0wfdX_Pb`x5R5lbc2DhEBE%#~yQBiLS}OBolo~krHdMM>()FZF zE@?Epo1ZT8MY>$wvz%-07YoLz%NI&jgI&^u?miA9f&)BTBxQDF9$%}Fqe1r@48O&f zhC|~;4lI95>WTLpNk1R5guWvXb&A`FAOZfQJ1zPsy9>8o+P2+4Iw>EInS+iv8)-j{UoPQs3w7+%n^B=?HG%?5} zGgUcFRp(9qUPcw1s&lXeD4q_fM9uZSiwCG;i26QqFgR}RaGe4~2mn*RX?vlSRZwkC zgmz(P>-M>RDp2;;;#TFE9)}Xlk8&YXH3EGw;Lc7YU4+XlDRCBY4>ED*!ZJiH-PnnO z+GPIqVwrl~SG@w$XTfzzO!%D-4^_Xbev^!720e#yR@ zCjF~SlF1==Ws2-_E;6=*km01|HI&Aju*8NF zYBz^eYGBwpp`JZLNtmQCAm`98b4E=&D}UR->yg11*=8okN@FgNuo_GlU>yPE9e zHUc=pOr|XLwAZU6!V6SFHogNZ@j>81M&<~Q+kQ4#%)%9C$o+nH2Liuj7 z$N-gW7D})EMg9Z2%ue&#{au&ou50uNa7u)K37+e=32Ton{2{cg-CyoMSJaw@rdQ!H zMpd(7o|J5eO3jlnCa2B3aAaj)ms$c;J(3+~^V=`q-z$Qt*W*VbXY#xCCd%0-15~fq zgX?8}lMct<-|fM2IIh#@4^(uhegc9usNy+BlxB-x0`vl>*2$@fNpSqI@*AJKGKM$ZF}*Q~D%*QF-(S2$(-$1^;ny`k{4EY!1id zf0`F#Z`WY9C4GahA~;YspG=-y5sj$RXw^VNaKC~KDGSKN|3(KrsT{SVXCTB*EjqBh zM(LiFz^IA#)dKCSdC~e~uVVZ)`r@+Im#<#_@#WRa$;;<0M1jqF zRqv`%r{=Eyr>jJcrDZBbqOz)DNC@5W_`^wW(#OYOc6^_EhwsWOyz3qOG7OaWWULw= zd;7oi&q{%u4EOuTwQ3Ged!ue?jqc$0$*;Z9xIY}Y>+O$*AIH7X6L9a3Wue$K8+uT|-t63w?e7q!WF zXx<1LDxcf(`FdMM509XTmPG2OOR_45i*$*P^%y|V|;OY32sVq6rzj>4y zCx3f=Sfe7FPJR6rduTY9C>@1Yx>X4wfxcsC`cU8Tz#LatM`XE{is zDS>V|qq%^ic_);IXk%BF5KfP~XGg=)i4EIE%P~|=t?ohTp7XIkI3&DRTIaYw`0!h4 zjo)^5Dt5NR(XfA5TBm>demE%KvHPc84-8JMs;v>o;or9yExZ*dA-tb~3f_;L1l|g4 z{3YMJhxS^*>8&7!Pn4b23V0Roq{bQl6gmK~ZKonT}>H|76a5)g@eg_4xb&bwL*Vw_;Ec{i5 zNtE#*Q>w8Eckx3HX)^(1Xk=Nm-l)>ud>osjA0rWbWGe8S^;IlgSK6MjH-+B@A2Y0x z$hrPln^Ag|ei^03?QF%G%PV>Caf_J!reR&gYX<;m;_l}#k1;OrBu`R|;J}2x8_csV z3VsfhM_;J*gdVIRp_rHeT;*iyaaTq>c$K_S$@9QHH|Rb^uZ^<0SgWYCMY;( zz&Hq?_Zk_K2mk&UWDxfB0s-hDF(a@%YaZZai+x3=W z!kTC*>RY0rCJHRV2{e@0#SYSBQMD8u!h>0i-1l3C8;Q%pWcaqK+l67qI)FEVd2m-% zfRJ!- zMoxBzWO4oc#w~U9&Rpoakg>pMy{)%Ie6rk-vF2gV7T0gt^U#fh@puQ5AX9JWkj^F@ z;9Dx0A-jifPIoXG??p>po??w9X>@x9Z+*S%58h3BgYN!uPpAloz5NgGw2DMcIOt8r z$HUXp-zVd%@{rK{h6V~6O#%FdF%kq2uL&-0KuL@-iXA7h|8p~QN@+b z#*1e!I?w3+Cw(NDhVh7wR8;Ac6W8rv)(#e2-X{2Hi1Cd&5rj?gz!pRUWwUe;-lV&v z-i!#gUGPiJXS?vMGxW5(;7J6fYk#1=h)l_telbIN^q}L$?L0}R1b(8uL1kVpr*#|>3O5lME1A8VpL@kC=JAUQPRo)t#|-Sgy9@i`G85W!~90JUe2eb6&P zrjW`Y6gg=X?QYsKt2G`!ejI>*{}f@8Ujiu4$;R^V@|Z2d&n2dBsx&U<>H&q)KS|R? zuVfB1;uuw??Lg%Cg?f0|i#YOOYp>dq`Om#+F%P=L;? z2uU?EK3Jfb&Se4<;QrS58$?aW3$%+l-k=dm!hAqT1*xKR=j>4HQZkO!spwXqBln_nq(j68L5AEyl3X_2 zqv?H#(}fkm;r4@bw(Az}S2r^&CmA-lCSN+^aGFAu&h7ke3CWZ_bTuHl@sR@Ff!RD? z-h{L4Un%NQLPROq%b2c(VT-?J>D@TLUB>B$ASb`bH7x>jH;&73I zQ+m4mOyuq$y#s{?OkCpy5xzyUal-T-oT|9P)F7Cri#b7N7bSqJV??~!2+6#Dy(Thq zH)#hn2_Ta(gBAl`M%AAlPjG+$rAL9%16h@<^8>>=7^?LaDB;ymFf-CV= z9x&}O<)1c!-}BqxE}OT5JJ^|uw1f0W4NHNatsHVf>Ldi4LB3-82Oe9fWlPv>HlF<1+u^wf=Od|tc&U)zs&Qy`B^>=S6MN=KO-7A zK?>c@y_f=mTLls|C`cbSX|R~x7Qy?ov(qQ=KjYxT=ol7_T6I^jm^KO~hO|?=Uw$|y zPzx&}d`m0t-@}q?Htz5~r8CQ8jA!n^GLozP)w%Tt^- z0EC5~d{X0^)*nXi38_VUgI{y;i%uw+W8?JO`78W5gxNddwIer1Ni|0NswSlu$qE7R zw?GhoQHh3sa`}xv5RJEF1t||m%PKbg*hI62@SRP0&z|vEnd5}dF-OG)ZJ&6$&}FEdlEGyUCYB}&fQ=RZ>JV8=2$!P#J_Gp;l<<5KNvLg%P_;qcqc#RH ztS0~ajep1R!sIJYTyq$?0ORupn;Z}q>sQIj+m27QBtVw3V3vSWOK z*&$hE^oQ4Sq#lqXiy#9cb3QB7o;1sGC=Jtz^wYmnzm-`WAs<4T(*G=Zq8JQ(Xl`Jd z0Z1A{HV)p6t?Cl|_(=*yY0QtMtZJj#q9z9@Q&0M67h^r|=|=_S1q=@5Jaz2+kUNP2 zxRiZ3lG7(VR}+0L^Ji@WPP)I*S(+U7PS4&uy6$wy#z1;Rb|ybAyY zY=Azg5rLV#E!G>A2V&JpW}vx6^esSS69uedW2G|xUJ6fM(P6#|-6zqph>!f z7{pqg^&5&E&(VL2-D|pm$$Ib8*&fe7m3$+3utsk0vAO4$?Q0i-FHr?zW^9p$wlo)wayk&^y- za$z+qB>aQ<;V}-3jTDaN(trY>r}8I+vnMQ}4gIIM%Lq3&*}pmR z42;K|E-d#8Inn`RH}(r%LcpcrdH8pM3>N3i6NRi|l#%g(+;vlB* z_BX$9b-$Zf^P&f^$tcM2HXu)&(WqGwyzNIMcw?%Jp_%add|D^e13nE-xim) zgO7)d`uyF{mzY;+0S2RAvm$dpGcMj>5O*s9Uag!@NYBcJ%aoQ*^-_8bb3VsKpp-9Z z`BJaFqNS@#n}wIR^Hp|}f;puGNi}r|=T7R9k`<(rdwKpAr_ozxfB*r8M^zBM8X#sU zd5f3qb81y5N}L5!{m8*vS=Lthn0a4>)GS8TFq$YD`nmG@}d6o7PJ<6YG;}6E7}MdiP_;$@pQJJ-UgF# z@4r9v21KhId^p+fjmCizY-Kiqlz`(0poGJ(pwn77ij2QDfw=OZm>W`-+^_DK)QqsO z6ef6W&b4R4!%g{pmVQoW6K-mtS#FA}3725BPJVTjE`gaQ{M?{shL#gnhb72va4g_? zU8&7}YeIJ3;n;xJ!?^IkRnzThOlz$~4^%fDRIobbYrzHj!kku+7N@-~o+dmEMTLQC zVaKj~%JBmptcjfio|Xuaa&v9$ve_)F$T@~;!($ zJ?$R!&wgi$zDOCXWid1x5gPT`e(V{SH3n9FBHbkYRTQTiqmoCpascro&qwUqlUNlk zF{gL`mbM3clbb&j*`FurmkEEMyA%aUanX!Dg)P#=fw#wOHZinw@g_us04JFLI?)w~ z7IOy^505fXxJ|uzQ;r$DY`|+O0L6sLQd+1e5!+V zkt|dBc8Ayx@fWyF)2BRKCREycXEYq1O~8q^H<}E(C%u4X@USZ~b@F|`H|mZK-v92@ zb)6M$*#^~?dA@qDjOhHb<$`AK|N2{4bE?5eDt%^;`&fok6`CiFM@P=} zFKRR!q)MY5^yjegtnU4z?Tp_KKb%!T!%76+&eQGfGFZJ|d!t?@Fsud8de2ILee8|~ z{lU8`Xsj9m_qr6f{@`d>1q!y(=)Wbspbi1_ zq7u-k4x~{7Y>QQ(#+58VYY|}2N`ZBckEF;PL2ul9K+f7ykv2- zeVtKmFZqnD>Hp4{&0hgH$p4ixh5tJYvHa_({PVbEY=q30Wil#dKA8Bs5Y`lzVL~>e z4p67Q#-(~`jn3)QQPzV+dxkl)oLRuq7aCrewUIcFsE|i%qo26m#vsdunbf^0GY~|h zH|SVykgh{P{UWjU%r*T=e&vv zZ9eC>kei#4sg>4WD{5xYnCUlvcRdoQ|uUmwch9?oQGONEjhRbdzN3F z<)_OWT&0#SBLp^K4rE}I&S$B74q7iqTg7-4-Yj^8x9>Z(RlBO(gv(E7q#8QV8G+EQ zIy^bJTJNU#xXgfA>8MUfbrY1Mil0WBeWltaIrms2bx`DR&h+Yvb!$Y<3EG!y^KaP^ zT%Jb6!(rFDI^Q;qE&MtZALeq|c{b!Ir6mV$AOdAfIb5L3^Z6DWAOdQnB!{ikwZbjr zvm(F?>rSKP+Bmc`i9ok{_UJnUeySUnf(GSFE(QIQU=Z9i&|9O~Q)S`CMkM%FechZo zgBZR!&O^J!y{CBCEazW#Agu%LfE{f;1`2udm9N$*hvBbU-e3K5W$z_M=O3|p48!&M zYk}iO=<#Q-g=2wcjYUvt{4b%NP8Jt4i-SZRJbKe9Jc#l+^&n(=czPCOh30_B$Xox7 zYMNI9mPA(}E3`2nX!j{b1Gd^+E!ZcUR5HVd#*@=9BZtC~!esC)**p)hYv9O^cE4Yu za;T4nKv7tFpI^SrP|K&2aDzjZYt{-QEr)k2`JDQ4e|#?<%q&t5k-Km?H*B0g z3=?61sfS87pXPrG9@NfL4+*01PqROV9NeH(50Pm$|8w|*+O6s%;fX}~0a%RIL8JI{ zRxLNg)k9?Fl%x;Z4TM(IY{|E^G_hafaH!U=WsA|z-pvO2jbV79;seo?K{@pm7tIy| zW7&(8NSz4X#ZGUdSyo(6#EUhNJRdYwpHS7kR5!A~dogYsiFT%;PmwAP<-%!Fe;UOn z1QcXFhc^9`<)nf@R<8?In@IINUlX~4lg#^st-Ri=-Vez(jVCHkq=0yOjUAGjE$bm~ z(*)#n>f`1isw5U}&p%!XbzQ9JvuX31a9@^TNNAP)+6CLbe)M4Ax)5=!4fDp-Iz5?G za9oR+FfJ`-ci`yjN2wwXuNB*qQ=_zudlj!=cn4e#8;=n+=TXjliT&F_hdQIHl%x+r zLQFa}y1Oe;n>WMNy#we~`8nb!Umkc;RB7{LzgTF6Fxitrb_AxeHXGQ%E=yveWJU;@ zv`9qZLfQWbWRil2Mktfw77G=s9GqN&K2Hz#(hMK4frzGTmtU6wW%auqd%^Y;AA$M4eP2caI=4w_ASK9)8d!KUv);3rH-}0 zL_3X_TS9I8YxMxR_;j+@kD=HD#^-j$;!t!yJepv-p zoN-!>0wK}{Jp@pJv2Hr^`1sGsWtIqV z^>S6wi^HAS>Z?vaC|^eAO7{sIs|)70TCxgY&4eos`exzULiyXrP>~)-saJT@e)`w} z{_HM4%&sz)#&|*jfYapf=nEZe1y6g=T6zwlY5*tsd<9Qmp+QylDF1x1HcxeuS#FmhD^%W8Ujic%U>IvLu97bcu06Ky?3IyvTOWlfHg@7;?K9kU%~zk-4<5AiqdHG8tP$; zO()vABIty`I2-QW6bPDo+Cx(M$@qTtr0iLD0$*Jy;r*W)Qc2&AYi$yqxgp!ST78XTgH~QvIK1s()m@3gUIHaV07=SPgI{O=(;C#@#AIGAoUjK;p6Jh#Jaqv7c*zrex8$)Q zxFruymtwCRzm&kdQP%oZd%b`~r6o$BdH3Eb83T98-#iRR?NVP(I?#IAyz20wSBv@H z|g1?MHGQr!_*R(%nov=>%-tCd=b89F@Li4IOTau_}-N>%q2 zf%bxdNtAN$ZnxVsRexY_rW>@lyWvJ+)vep>&<#jW2b9D+~gQdHyY}$k=~*bcewHAb#<85vlzBVmm4Iz|1e^8p{~b;rVdcn z)CJY$4O0gsv~$68`IFRv2kjJiz{YoJlq@rvgy}2XJ&+;ne*H$&lAAoaouz+;6mpP! z?XRNdUs<(@c2DeF3pJsXF4>weJW`}iYnm9R;LU0BwmJTs==rt zTor-qtO<1=fV-30$Xl)lWU)HtP2IoN7|~jEU?DSHvMYuc^>LpKnMgLcDR!{d5q2Z{+AGStJTHP&R4gHa68?cnM6!J>v~4(9BkV3>)T!`XfC(73Vs zyCDg)HHY*+m*>KnOx5M#oBByPDB!2Sc0r?hj!@zar)~P}=XC{;W;2824lKG0l>+wc z;{%{-hBE~$?CumQFG0P8r+jd%Pw)uPmXAaEuPYg(C~37+Wp3RSO!s{oS3Ee)W`2Ar zx-|yb^mRdX#6O23y8ihvqO7?)AP?)C1KXxp`n+`{zOqB|%oZ#K--9+;X4z4mK3E@; z9VX1)%~%r-q#@Y-{?1v9@`G{kZ=todA6|JaRuRu!xELmsVZQ5+NJyv$O-QKl*_r@` zM@J9s8`7u9zW=^%b9o8z@Rjl4&drVC0l1Uy!Q%W-42%u$Vfe4V7-_e#fIx+-Zp_l6 ze%&7pKaP8&-9|)TFCzN;!EwJgINNQ+vy3z*1&5>luTX`8AO)wr5xn%>9USy_8;f*_ zrmJ}jPj?VlSQji|q^@(5VSU#_aO(_>#uqPE-BJNP5;8Y-N* zv8o|BZFY{VeL!JX7W^Z#vb|q`D>k#PWM)HIGLN2?hOW4gAIg#NrgbfcFDe~VlXI4cB?42e3E3(K_#%mKQG|wU9 zyj7p@)GA$)nm~*!E$~v*M`a?nIHmm~>hg!ZSoe;dpYM9~8d!ruCVl&dGo+P?U$EV328@UCUjF$fX1UEL!8y>S>7<|JSG0VByea^684wX3XBRR-0O#5Y3Up&I%$M)8&4e&PVAL z{92O1H|Z;%F0L>dp54&b;U|ELc5eXotPULRsL;BFd4xyMUAupLT4Hvaq(;9ml6ts(qdV_^-=@p^KA%RF z^n@Wg|J1$$DbA~ApYuA+Tnu|Y<#=A+Ogys8znDurtNu-_ELdZvc}M8mje7r-i0vAP z%p8_J_V%g9%3YL{Zxzl=uA0hm!&TEfcr@gTOfF|gwUzQoo)MJx5zv8d(Y%91x@mIO zubO0!tTJX;fWY%PjVce9aE!JE0k!5%fhIy)kdc4RvjmgR8m}L5=Nco4{&N@gO7_@Ns zSr->BIBMWix*K`7@;dXpmdK~;X}$Fs)<38^Z4c7fiqp$F^0-bq@@(T@9@g=qJnqFq zGp2~z?|HM04Lbon)uxTOFQ7I9kq;}Dcc?zxJzJTnhOE(4e@MyP?L5J0E}E##n80$8 zhxyc?du#DATj6oS65I6#;PPIsKYXuiWeozXbC|CpmdZ@-bFPQ9Ds9(U9o}QIs~-me zIh^1B@D0X>%RC>~g37L=lzq!j zR38kuQ}Y-+Fx+C0-toPv&K5^^YufZIy;Adq5A=%|cx{YdVM|RhpJ~OtN|s3<*>|NN%QEV?!})sGJ^f+6fb) zG!tQWL;h1NX4#6m_cQgl4S&;vv0~6-&S-dP&=BV)GSxIkqGB1-kEYHoJQP)iX$ zMz)>LLps&sRblE|n{SmJCn~iBdxcu~UA(FEPoE1>>9N*bniqMiH-ETBLz77z8bb~7 z-Z)|Y4bxm~{vI$m+t&-MLVTE6uYkqwzANoz-a9LM%J%bo=ANS9S16)hP_-)rQNQt67fAE<nlZpOEZMZR36Ng(wpva)=48BYC6 zk@zBSf%@ckJuU7$zQkQxSx~mrT+?k%s5-6g633XUqcpE9pC90Wvo0(Vxsn;oo+Q zv6KWym0wE<;&R(?<6?!0A<(g!&jpVT1cTP;oxlY%V79%Ao5MgdVDB7kp<8C);oMx@^yIH8+9F@ zJyTFwkrt9}$xW$YQ5lQ9jru*iMZf2*j`LwPfKqQ0xd7_1 z$=jN<$vmWHVN@uUnO_T}dC$nEmVarsyqIN0e{oI3`f%A_Q_`C>i3m;F#6^xkWuY9{ldobAPS z@?%KFz?HDQPJ$9@B`MMOZnAm$Yq~5l`kuSP|D#;^xw0PFmC;PIELP-9)%&t|x6E$| zW>1(LyLi$(-`;xNx!i0$5q`BLJv(<*O^o|LbF*at4$pTk zMJBxP{OP4?@>Q-+ONPbds0F%Ng1(!sOwwKyn+jpUuQ2p4?e%8JdYDg5dR7m(|D;?t zV0FGiIwqj}ZUq8Lvl3erRx_su0!R4|C9R6TFSf+}W3WVH>88Uf`O)5n$SU;?F(#+( zaLJ(;K7M0(ii|~3zLK@r8BHrA$n@q{5^q0BdNU@>C%xa!dIKcQ+o~Fq{&>xQdlD)#fK@}Gh;>mEoe+;dt*1U(0owb1jz-r25=-_CXkf-X2~ zVd#L)Igfy!KoYgyXn)izGkx&=33@HxRhv&c&r192AM_4LXD4G)__2TR{)cq>-0G5^ zj3zJr;N{t=0{BY{_{aX>aQKnPGPfOzPS4g3#9`G~kYvMQuYvS?^b`XZ$*OxbQ}AGs z9~?NHncKlZU;m))Vh1Dr+cGU~XDj&dLH}^O%4UV$cW0J|u9TH#tMf*71D95f%VvYX z&u^D;y8GnG71`J5Re15_x6^~+$p@(1`QPHkbdiI;TE6h!5L5dS4z-xr(q0ZmodMa6 zN2B3rG8j(!gR|b~sC!^}ImMmypSR(xAjqMM6}>7fq-B=Bt4vrp)g3?Ds`D||b@8N0 z+D061EFybJw|J#$AD~sFD6PxT|7KJ0c7C@E7Y??P3MLU}>6GkDgM2l(o$*{BVP`Vo zkR}w$B25gvAyf?$VTV=vuQ9!xH7aX(!9(mHIMj)wEx6wqWo|_k1IY--4=^w4M{Kgh z?UWOfE1+g2MjZK!9UM61oCKv9OOI~pmt!f#vE|Pe+Eb(hc1#r=eTU{m5drhy3G137 zNHLtw$@a8_7{=X=op!)u0BON?JGfhBEAfM-_TJbw-H0Xo{I-aP^O?)N6(+zWE6C&q zZP}Bw*yW=Qt*h zB6yT9pVvL+I`&jG%uxarq5o>1SsoaH*;$V7QHDwH%Yv{;>WRe1^&Xjrv~Bf}ra7?d zyF^nzM9tIHUB3MEB+Iu75ywNQO5`Nb&}j*Oa4YW2)4LC&J~Aw+1j$X=yIbN@L_a0$ zF^CQE8bsrN!_Q%X-mMta5qFCCI=xA~hs{K!TTQ^j1>7rXJN^T|Oqu5;{Um-tWGnPf zGz!`V9_0{9!(SSj3u7wsXpYaiXT8bzYFgQkE zhx04{+f&;(b~gw<$nO9#UJ(W2JKNuW7XoQ~3n{L@1H^GQ|I{afS45LP0E!(7=n%i5 z&{NjnJhsJGwd6|A$29yj;%QRWY-?VI;G?p9C#Ncnr7(kvGZ-qmjhdv5ELBJ$B*GW} z%vECa1<9}{eh*}Qt1;Sw8g7CUQ_Z481QV20^{)?&5Ge1JA(<8*J_STpsscl_=8Z__ZLUS`zEnbA>#WH|Dvanl=1FhD; zgEmN$3ym2sZBi=mLpLkJ05`;l$q)WFIb`RBb;uB`3MMpBHDM+g@#eN#h+hBqxJ>pG z3$$Ht#`ZhgBhgKHWPA>qGd7ZFDBwGrj{C2e)&BFO78mWqL z6#wZ}0zGbQJC+Ji51oab1`)%&zL43p6xFa^h&MP6?=Qo7eBDwOXmp#+)bLTcHhIh~ zwRC{zad?#iDaNZMnVzfrrid_Z(40|7Zj-+pEHC;|&$r}EQ{btILcys_Nsmh}RKILd z)$X+Ja<(VBp~uwj5ZAlMjZN@Z=%k3IVETkz?qH#JUT*n%0|tx zF$p(YHY0ON$&%?4F2c#!D^&!+8wKNpM-GMMU^_6$9%$POVQuhh<~-iwwT#Wc_#q~G(B0|E}<4U6`ab!+ zy*-`MdgS*_xP*7X8-MwUlqJuh^k272298#X((DQgUQAykF%)FQKWUHC^mz5FYzFrUuyyL8E*zI^`r1=^F~OOee!VeRQFq(i*SZi*bxOyZsA&#>q| zoU0^G!sRDr#IGV&ChEP4MA=n7OVarghe!taavMH8!Y|A49*FT8{^hloX-Yx7e2ybz zg;vE+*WsrOKqk>oFL_@#A!sDP4X+{vt$aqrEr}edc(q)=3z@lP-j6h1$*RNmx6!KEC`LfPlO{4e~@2r4{Vq|;%>RBT2!w-xa zPp8kxzxs#N`ass$KX3D_pfeDs$qxGm_;$|3KjkSW&Fl=`@@I=^jmUA{bYk zNKc=>ifHxQ_`1kKtjgBWRhZ3-C|~Btj_@xOUgyP1Kz+sJ127skO@6`&QW-A^$&$lD zI=)xi@Gt)6{Pv1YD;C_RGqPNO<&xN5`~tn1fgHPjzEGC37Ca* z$~kfJB7PCG!Ydfib6`>!c=kD8-ct%uP@KD`+v&?!&}J5XPUlIw1YUcYzMO_i8JUXW znzr7azQ7N6b3U-2;wfe98QGMG@XDrBY7U%q5-^0U-CjBNBE#=DP7|! zmjzfTXe}s5raDZXitm){$usyDIDnN>9A9szgpFj~RI7`Hg0Rucc!w8?EDS+1h){mOX~QtO4AvG7H!ARlazmvBq0B!bXYej z6QA4sH^-0&nB*Cy(;N$6jo=(eVJ21s+17F#@GHI}-K0r&d!uc6FJHz9j+uT_w4FqvT%qZ+IC}Qej{KrXwV$GwuhLY0TEP9bTw+rq zzhUy}S5<~Rf0gW@prxOv6l2Tgr=1tCfU9q^WUlb)&g-4mKOqUoVGXW!Z|G(|#d*CU zO4t1|FZh0*BEoqbhebALWf4G~ho8g$&83J+$SIl@-}BuKIwAZGc}Sp2GJS#bgS!fo z3ESJeAX$bHOhWW3eF|h%c9`%5t%fCZaMS5?UdZMn2?^Z+{34vCst8Nd^c7Ake&8#I zY%s51u|k!g;gr-**$0)JWV_tPJzxoqox6>&lMi{-u!sRUr zuvagh0UL_N7;neGB8%BA5I;%6?F5Lo$nO%dLqyvt<>yC&w_b6oaw0HhCi8XARV3Iq zapzp-_aR?s&v#zF#+fXLq?)C??yKnei=Ag!%mqUDYWt_BSTaup%<1#+`Ag_Xl@RHx z=*3U8thgpimoD5FNW6laIOnhe!|fMOpC(u``;1bU44wQ7C7Mu4fgb9Tcp1K+a#j;E zWcVoXH2ES5=UjY*$jjC;B6=MZD-!7W%U4fv!&#wlPRI}3HdZN0@NF)^;b6AHIUw4{ zGy%?8NZ=RgTPu-z$*Ce78Rce$i)B(MNgN@aBp@;TwI)%*0zaEbLG zT%BL(bN>{`!LTHqHNi~6-#l)!#7G#~8;PTuXN+VBjfk9Wu9o@jJfQ?6N>&274i@Uq z5eQthU_W0GhEYq7(98b1?|Z*Z&PM&yws|>*%uO|M5hHQ$jSyd6qi&uJU6z2_1w5dj*OcVaHUq+m&(Vnsmr&TS5LC)8vOndugl2R5JZJsoE)Sqhhse;v;13VCSWvNbIcl zOw^;EDRzw)8YG6md5BiFh?HL%yy+MQu){z8(tNwi=Kb>Pvu~}hJME|6{`w?S+m7Dt zca3JG6|9Zc+lyxNA|Z`P)AmL2w&ch5A3J|+Uvw^#$E}N&(SvJwJ2*>vlHY*Qrs+e` zPAm!2!CyT)-?>!mXtDa`=_PYo5GBtp*%XM9=e#v^fR58>>wo&<1*GM}zo|R5QW}fW zL@7-~DRTM_l-Z7BY*G_~h8jQh$Y8r~#*8^94Cib6kMo_a*Oz2+w#i)c$*C+WpR|X~ z*^ipC$e6P4n4m~0^-cy`VP%tnVlK&VIxMvJi0tAt3;WlD?qJeAJj4ecCuI0%zn}Id z-7_MT_CK8U#=EA!u`~M8>n7a}0RD$D#Q64)4@bR$gl&PwkP?@Vv$Id?Z(A1;2LRDs zWn@ufr}MhA(@;j!9}IegR=wZOc58ZRTQFa%@J_oU2zTlo_b}{U%N+Vz0rQ}U4O9K2&XG@)JU%~$fJWF zdV@n&oX$b<-tQd^M?F?OO2PKT>(fuzfPR1$7BZQIjMup#G%FKAgA*A7)L&9(zI3q~ zo+!F3(p7&xPnWLFWKU3mbij2NC;Z3*et5eo2cKhw2Z84X|BuUT<#CP%A6oLUSq9mI zd3PRP=garYbXwvfzK0$pAT{wB$$1Q!aP-bTEN9HG)+#4`LB_3r@%+eP=bCnB*A&y} znMJVTjF<7h5!GTDKLpbr*`*RMrZ(8K~b#ILcq2j|h8At=m6ItOuvZ;#RwDcQUm#p-^R7T0OIYQQ;yE)H;JSgs28 z-=>F4?18j{zkL`T2REcVh|<8WKuY6~2yE~inKc4_HrCMi8@jt&%wI+}^bO`sYGccj zT~vaH<89SK@$!Dus#-#Dxe1Bt5*nLBANcf%P;`Gk3|FC#-4gokd-#oJ(EW2+n)w?2 z|3ReYi*(+fJFcvSCr3L-mE(RDu3YaWeENDj1G*=eyTyL@hQs+urUJ|G9XU&;7o^ z;vobB0CgDo!o0Zdm4VU6PK6t%zvER-*PgfU23o!t4QNV2{`;QVz(}tx&j6`+u$!zR z%jp{$bF;CH4|aot2hbKM4yKzg)XU?Z{<1q>b|9-G)b{C!^nJp5O7a|@9Q zKG3pNIKP^u&Fyxu4ZF#gb_L{uOwlq;4u2HkG;)mHP!UnTAr_(x3ORwI~&s0SdMxwi|Gh zR7<+SW80|pkl_?@IICEtR=-L>BSZAD>coBzKjQ~YFE~JtLU6nANO^IIgZ}KkRR+?E z*3{Mk(L_dWc+!b_Yl8k4E@ z;k#OYiuLd7)8Y^>i#@c!E;X7dyYnjNWlDl|`FTtfq!OriS%SNRoYdM&_!S+blmJS-hfttQ zRnhQK^pR40lzI=r=SS@GY*jk8h3XC8g$_Ib`Pun8w+PBoRvw`sa)VwZcaSG4lDl#X zF;=6_e~1Uqr&fjSQRaFYz=P}0e?F>USYhd8|NBFK^vf92>;+23bEU@ktUEaDjtrSe4>#w6K$F*q~YB>UGnQG%*e4T znadKnSrE+a?!wT59dsx=&U8~3mr)^#zqJyWK+NgMKv9KzD@#s!wO zLL2`e4^l>jDa!Y|j4a?Rp;2$9iT1DV{+)AJ?BAb-SK$2AohJtn1nIq<@H34KM5DNj zx$~jm?AUSelB{l{6NmE;MT$uV#)Me$3LNHQV7QoOUgD+Q*{sQu_-bpo?syuH8+1_K z5q;Nynz4g61NwZt?-N-N=i8U+U}{t22a$qw-%>)oOBYxz^7zSWEg;v8mw(m7oM^iu z+*w7}ML56c*?`QVCU;>(xKUij{U(9kR}^y7$6#Glg=n59h|PYC5!smYiJS{RK)NC7 zfXMPDD_J4E>=Cw@t06q{ZMp;6!)(H%LrwH7MHY&&EB=x^OFKpn)o!j;eWQGJnmjaB z^QH>e3+#LBmw3wuG|g>lXd(Z(+Jm!kcs{+{n{IB(#z;8AVx4)Oq`0(T+{t;mxp@h! zC&EF$@!q&A=9?hp-}vq;9jEL>Vvdoq$);2$(X1YZ-* zSD*CZFZx8(tycIena<73>-Nb-vH7HhLf=UgI#8P+DmknqQ*vwa>`nG6Q19^I6)yfN zQpvV#Jc<-4N$eu!Q6zd*&BES69l_t7xG3OdZd_4>k&&EAB|%f|JP1ar zAU*7ldIx9HWo>fOJ)OW4c0`*Lxz7@+6@iz^is%y2Eq8J8LO4$@ap=3+RiW~*FeKRx zmsz;gkdABaT5#LE)o@^tupUBq3yUT8_-2SPCvw2PaXOnV!UW=_cN_5Il>Q*w1^g-& zVJtq4=@0mn!3@W(#>fXF#Kt?V}Fe=*SM3+2k)2Kn#50X9$2 z+nt0Q`pJTsvDp;81M2!Wng`~sS-MLK^68Wal=n*CTCNL8HoYyqGI2GBZAaxY=sOkB z5wQbGtU(dmI#s`aM#SO2DYH1G=qL1d`CC$1&Gl+=2&DQLW9N05jvE;0ipOs>F@x$X z!r7vwav|-<^e(b0thK^u6RFr&0WVtv{#J~;`J=`r*V0ux(YL?QXqIlL>_# zNEY+^5SaiKWX2?C`9ih&nD= zoK->fx|7Qrlo-qy-el9}c)fKM?pprc)T3O?;e)m%ny=3inZ}r^_JEMPSy|jiIuhwr zTrf)s0}l?&dFK>SYWf42Y#cN(u{03{wGA$!g=Sq@Ug2Mbd5#s8E6fn&UA)O~pB^eSKNs4Lk zQiLW7tKy+od-c`_<^0hmsXO2Omo zQwndxh|m=(!Jr%d>8*OY=0{PhZn3iJu5vm_Q$Tl$4yi-~VY#Wk>8I!frG~xMt@U4N zI~TbFbw0DKVj4+ngA;SWCMYz+GgvhIGS^+>th;~Q zgMceE#%Mff*WDi;{*IBiSIlZd7R}z3WHQm!wX>@c^fSYzGhoxbnQHC91cuIbhYcx+ zw8aT2)5uIf*Z|aA=wk50Jd4R3bq4$6Qvu*w8{$GU{!F!R*J5R9sibA+EJWulFJ~Q3 zgR;9Dqh|R=XVL4h|ErR5(6QH5guRJi3ugcp2u=K|$0^16JPuc`2&VlJpbVBbmI{uN z7ZQ3eixvLR?;M?7+JC$ISG2h=z%mhs<;UNdd&{?N5lG1wO~7!nQ}ryI#Q9=c0ZG*=2Vc=rP_E; zY{1&WcfxmX_@2+X4Q=P;01H=u97k{AffE9KapBi&49|tJzG6+ErJ1c5A7qb*XcvklmazZqAv1m{I zFzR(3#rxfH&s98f6dnwZouwxygk+8{y_5Z(tNdt0P7#js_pVO+C+}RPgVPVLQTBbX z`{VxLu=kte%P+m(-}MHL56At%FOK5D5c?QAKaCGY{ZkiWC%rQl`G@=e)jM$2KkbrE z9Od2)#={Sz1J}sMXTKl2%FjmK1K0RIin(_%pZbEHrP(9nyQNvEi;$M9dC3)zdekU$ z&Ovoh9F5z-j?s}KC*2EF$jNArT6P`cFx17ZLs6%3-Qz3*v&cRMi@OIGG0Op}NO;PT zzZn$TyyvhtZ6P1wxb#{ou?ykIgd#J;V@RC66VCV5A_ZM)^O}Vld za_gQL&s*)MHZy3`u^kgwG99ZU+eD%O-h0H(p)qgI`mm>EIty1s-}WEDkiFV$C)T?V zcjs}%CLtcWC9>$9x?Rv6M$*!{LQp?8H+FOlAJ52M#t%^cG3HhSVD7j|SD|B_kQH3A z7ENFdlaxC_2oR7x^S1GZb075aR{gQ7o!GP43c_9#PHkHVDKr$b^QL4AcU_(G_p%v# z*do*AMu#DrbVk&6)a+pu8y-CavYy#zrjaUh%kq&M7#@cYLU0zk@H0!R(SsHoJ5z$| zEts6DiQn96NHMg_t8rAMq??APOGu@7TRaHUg|jim*8Qy-W8O|;T~6DQvk8?GOc>YF zX65D?ykT)T3I)-~Z{TNW9HA3c&u-y-BU(*tMx~^3jxpD_BK)~^Cd9fwC&*U3Zt1Y z>p2P=AZv?oy{}q623A*htkoL_8=vAdRA>uaH>lbRJ?Ws3Y0bBx>t3q9ZYYNDTGy}2 zy>@5(>pMO+AcYmJYE^5An|;or{DW!r;Jg+&)}3uv;07cSXJW5Ck=4YX9~AHH?H34l zbipD3p|)L%(ahy3p415yUp>vovT-}7k7*|81Ipa}LjL|aKNay@Sl$jcHk#f>=oiBC zGfF8K(Yb_+bs-2MhsLZ(g2=)BtkVJJ{7QVs7x6r*N%d`$=(WaOKGdg#Id%whY-uy< zTsgIqnCYr{IX7^<-cs8sLh94LRgC2Yr9cwAMDxG&;gv{y?lh#Vrym^cT1o}e)v2a{ z<-Sn06>8;>lvqOxI|_=JRYCc!5>Q_F$Pv&>9+QXV{RW^mRV{{$lh_`KEX=|@zy~7M z?qb9uPVxI&cp2xh1&VG4L`1hD58hVn38)#~T9zlY0np`*T6zFEIoEKwAvpEYFg?OPS zakov>wh=2b+j1*4r_Mfv2ZYP}(>x;iNY>Y-{OLYS6gqV#9Ux zcZfMDiiB|rm&{(GF3$~!h*Vw46Td7jXW+!XxpCDiIT;88${zJ_FqKJFAmWh2QgNqX zzGIkLGDt{$bCb`z@K)O@cZK_@<`!-lwDavtUYXC%`6cy4 z?9T~~*$SO%kv0+D??!mP8#%6qr>yanitc%Ixp$?QVWyqid2yXhSIsMS+k9n7E$*<7 zJ}3O8D?mvE(}Td{7fOP~NCiH41K-q%FLa&|0uU72c(1*)ca4L)Rxht{69pbk&aa`W z8k51OIo)F=-&BJX49(!)sii_|BF4c1)Xt*^3WXRbL>5jQ&gVI1y@PQFWL!e8>NHfT zQFrTRnYF@BuA!y5uh}*saB*iB^(7-wlo-9LP!xq5TD`u!=Nb8~x!I@ma%*8{?w*1gPu9%@3s08h7NhAr$$t#J(yyr z8Qo<&;Z!06ssbG`eOT7Ol*=Fe;-(oYuw9XZE~SI_uUzq`YVuv6M&c~?6nu8p!mnXeg4nUF-~c^U(4WZuH0~XPLyP@k|HIkYaG-y%Cd@Ut z9#U;EvK)zTFo(S50mh3#d)EsN)PRSQ_>E;}Cj9o5#h8X#92t)R<)s(``3+TlXV1-= zj6-iXSV|u88~d_!cc1br_m`?G0{H@kpaE(m?5THnZ<+LAD79R4h`i)PImzO1mi;Ro zq<8RyQ_*CP3_$CarSx*O<6QNwx5vbHF7X;Os)tsH1YIipRir1u#h313@Z<_|`!-s# z9E!2DAtKL|Ru{KVx3~9|?`u#F4?hMHn;ZcIM*g5Nk|05is{gns9zSV|qzT>|&QW+* zKHoZ3t7y8TYiN?FejamaGs&Ctm8ouC zEHCDNTrB^%n77!J;+DXaC8bTt5z09hw_>7dRjiYW7UvTFr94}h2cBwWu*T|%!4J-@ z(Wy#b$-xF^gS0*7*&b>{x2mBArO;w9?3I9?tI(raO6TjGA|G`$Uvxkb`bZ@$~r6U8D4HQFa!}IB- zV){_cFfJJ&V&0hdLd*}Gi>>sY=U zJS@)VE00>q95r7xsZD4ELI}l2alNqa6rAaCh}N=7Z%{*}OVs|TE_J0Nsd%o{Rjrft z6~0`AHyU*kwP^+h`r>5il?IoE?z~aFrbEVaq@ZK3cVu%TrS@pCvfcn2(6eML#JLFH zRFdq-6QGf%NU38bETU>5D2?_NokqyD^W1so09pc>d@1gn*HOk?#flcGT%!xAO*4s5 z1(F|CFfT}qPcXKGuy$D*8xkVbLuugjo?zn0#kOJ9u12ul+%&c~rw>~ta)hBZJW8v@3zTTjX38!bguNdj0*Z_BU8 zVBlsp7V%Nf)#!w;r!rT&Rp}+zk3+DGEnbo_q-3>fl{>a3z z4?#i8VOLI;+VuO=@~~P1bZ%9Z$dzR5EX7A=?1UwxBeNC`4@BWdV6aa5(rV88ZjAoA z2LF}jRrJUmE!U!Y!y!LZ)9m{);nB2MNEv0XsW)3cAk*9fI{vO~KGqubG9!tM%-f5&Nkv)Q{S5b;~|^W56|cD5F~y? z-2X!)w(ZSSp~yb0n;)K|?fa2#&Pw$#HrYcdu8*Aqi2A8=n^eLfEu;9S>gEm(6@`_J#b&9r{m3$4R*v5YTGR-j zeyb9%GU86kRaREn)CwL`KJ$6Aecyu8MYnroAn)ofb0+Ey{8+aFO`VAkhql9obreXozB z2e<0^@l5m8n$v8#8EDd2`&b{CxEyx@qaW)5>-s@;>jBd4H!T5Q)WDI3Im#8m;E9ldzm_lG`~!rXYCuj#5~UL_$8)rkC#t=m{E0FClHdJ zgv%uRS2~6kqDRP^p*<6#MPLIA)v0iDI6Rn~j(V@~)*9XRY2O$Ju68KH(IFCmx>?#U z?;wOa9lpjJ-)+(tyb~kCs~9A4&#Dr$8OZ<@K6{g_{ zN<6(b((&nW|7?QJ;L3X;!@*?SJLw+`kB5WtWYl}t`wbrud2+sYx!HXCrulZ4{NMRM z8kdh7t*=kNwI1W&e{Ct>{&xBJZ~WWe#`j@r9Q9H^@lsjoo`?2%ZRY%Eg%#?xtP?u+}43}L(FvWv~ zr(b|qq)0uRW3Gh7`QE+Yl@K}Q2+=vgCxanb`{?oxiJ}SGd{VO_fUwd+fNyBh7FS8ZP;KyJa6kw;-8M8S<)OET{qx;}$ z8Iom_!0S(G8syUe#K%?I4pw;(&hG<)VnG_@5u6Xf8W09C>F5zu1&d-(L6U|ua0G;p{2RU>nBT4l`M^aC zS*lGc#j{&*_!pmN*-gf}Ak7~INPq&6Ct|9NsJ4TfJjtf;-xNo-xQ%96aZN;ZRxt6> z4hkqlg12ELPx9p>V5AvWYyGJHERnik3E(tawD$#d1zMO|emu z6S85S;5P>)P=A`wX89eAjvU7mOpsFSGKL7F{Bw%Kp;JuwoM20lfLU0`xn-Y<>yTg{ zrHp8#<81yY2$c~n0Rh;MR~eZAxDSLL&5;7X^vA*JX!vXYuy+_V zx?}R2tfi0rv-iUfX91}(>JH9+4~9oUckp}gOCORrkd1iM8;^tG=uyx=A)9xP6!r%P z#~%*+gLeVhy#unSgX2Eodjj=rh&?h`{oWX$o%BWr@5#^ZexGdqzqcO+NBy$_Ks_3c zf^Kly9i82Ta52pkf)gZ|)XM7lxY(IMTEvY_`Xi0<+G?(s47^(g3m zAOjcyiowC~^!HK!-TSlP{qXp(M+*0Q1UC>iv@bHQgX3=hq#Yb~PrC1V*lI|?kl{f+ zieT{ZeGkf@$1eH50}$3Ql7ry@^1z<8$v{VEqV322mLYj++!e)0%p;@#DkMTp11ueg7HS?#)S z?C|zr&eGG#x4{=Ilh1^Ejqiw05R(kWF)RK?1RU$G!}_w%f938n*gs0jQb0VtP&qJx zdNn|>&z1wj!D@hnn#4|6R=J`+OlM`jkJJb$TFo|$W z@(vP@XZ9#H*7tYGj_}wqvk2g^NIlmJwa1Nv!}zVtUd7tBCcAD&4-rDg=@-Ax<0}6| zvW$8Zzw`zZ>B!9WU7ALQpFGuUGJ5;tUKh6F$;bC( z2Oghx4|^|qqM9~T!-$p4Z5bjbhxvAawDN;a_`DM%i- z-qKIW<{uZ0^M714E+1bs{`ea;X#8=$@%NuE-;f%`<{zB~q={&>Ow=6&0^7+yE{Z2+ zRmo3_H2qZJa>Ll;T;+?+fZo_|w=Nw-l;G#|4c!u6bwJGaS{`U3P9^_M8zHh(+?)nHmVstO5HZ8BmsHkoG@zPl z-=!ftGXJHp^TPKEJqLEZRkmUlVi~WZAH31#Su1xZPelq8V38Ddn5hSp$R33O9`$;o zLbwW`?@>iP#jz58#;w8IZIQ|htqBb)4wal8%@{PHB9&!>X56yLiB2PP+vQryI`hSW z!%RRx;CW16GY_?BIC4DBW~m)-tHsRGbVxBxp$j#W^R2D;Qhz2vCyOJ@&W!Yn0&VQP zLp>ai2b1C3L}iPbriSoK_svpaVD67brTsiFdEa(pV|~~m5o9MUc%v-7T(icS*CQJu z{i}>6Vwta1jn#^A+E6nK^57yf0k}-)TSIY{PsT?=3^qi#nr0m5vJAr7H#V#b8J6piD}hg;Wa_M0*!v}beX=Mz>BKo z72l;q_-FBi?Jq`LAU^9DD*=g#RRy0INbH!!X(tW|)6l(4r$ik(@&S~SQ{7<@P?D#` zAWaiYI}^^{hw}u)1A|6i0#h$^Xu8>uV$QgCYB8*q&oNY{ha(SMcC^fI&WMgI`cgvu z8jqD!6tquQqyVOrBK?;mfLoZXqUC`+XDJ}J@d=UX`8DWws%Z2{fu;zIggY2|9Tgb~ z*py_D+H)l(9m2pxYLg9iwpDV{5FC<3bfmptlA7zEP4Fm`mkv;J^>u^WtxP^?ATS%c(g*@hty%(<%@Ec3G zVTS?fxJqdmd(aY%*1|1P-?x1euq=pG_&OExUx@Y(i^-I9b*A5@0b5>TYw)c;zLcA- z>QRU0$=O;_p|YarutPrVN)9~`2?YLA8;Zohzn925|IchAHrnO%L;CQ;%-UOtBF|;Y z2W^A7diZW}C7`RUNMA{sx;RnsTUkktSFfQ}9sP|I<#l$Q_`%pzE)b3d`@^yDJRPvz zg%XNwFM7%|r9$mTAH}vL9@b+2H8&>L_?)Z4+Mh}px8`;vazkqmhSEp#^e5!11eLn= zm&)r>spS;S|4)sf{V-MHn`5YDqM^bN<=E|jU2(TVuMu$JBn-)xsKux7*eA16Y|um_ z>LE>O?&dRx@bUO*ly1y=KCyZz+c{b`8m40F8;jlcvC>w3??`Uq*7(P%!$7LtPT~(_ z#YrI3u+u7Np0v&M3~;A6C#PT+EyXo~e&V8(42CDV@qi`mo_<^Mmky;r%bpal0)G&cCt5>8O{Vy z+D?K+0Q6;(DHd{Ipb=bn!hj*AmdRbZA6wKYUmWPxV4x$LOu{jT52vs2n9V2gPH?Y*ECs z;}|m`wvM+w;o^i^2__W{_jTF2)MN*Gk(~;HI`N zw;YD6kh$4>{dL$s+}&;mgAXVBy%A)O-yaT-d)>kAQ^+w7&UCxa$mii#xf z%1k)5Si}M3y>BsZd#u*7;VakP;G7<=gquYSlV(I#{G-<*@n z@s$i;fvFRoiler4O0f(57o9?oa^7c(Sn0u+9m-I#p~>|@7uc-8!RtZsy*P070re4( z1Lb&l?q$CZ3w9|5m?p8w?EvQsy38e^V3CWo+OhtAow->r6 zV|J!Mb<#=UUDlko1!=JZXiM)awivo!)sE(7m%ekW34|twZut?dpnkL-qIIeZL}L?Co?}K8K+UgkPqu5; z#muN}`pOba%x?6p#m`}m<|a+7=J7W*GgUUfPM6uLXxbdm))q?3wZypbq4IVRwKlQh z6YXKTrpc_;XsSqrE=h`$J@uz?gN)AC3XnF>0#4gb z_tc;2jWSvQ^{W%>gqN7MSF6Ufr2%z3l;p~o?eG?` z2Qk(UW`i#AtjOnZEZfuAOl0C`zC~g4nm_xMiu?W$o@~9Y^U#-vYx%VbI9PIuD|yS& z3)A%hpAK$rY_N=Yptsnm+G%UMoHpJhZ8x!L*rW=?t}ONF9qyA(nPW5Aghf@B_6*gG zwyI!=)OMvkDu*P`dA>p01<)|XFgTjKm}A1;<{%}GAjLVk7EqiG{6XszD!d;5Tgu!eVY8I#*`+I$$BK_#^Jg)@RdavxAc5|%JqdoxM3 zE9!JpF;)1k64!IpSaE3`;FNZdy=UQHr!{)IiUX#>w!o0*9MC`EfY>e@+}e9G_Jn@%YD~@YsdI z>G6kg1qz!4g%>{tg-s_F`h!XwwtgHATP_@qd*kuh`|h9ujlUB#o;%QB2G0sSN)8WA z$3=j$wfvpk)oMw?3EJ;Qz3y3WR0H#$|3jGn?7^H9e1Zq;Dzd-%PtpBNHQ{TG;OGC; z2!8gBpbpl6^t1l}(r+xJ*?WV4IOOxFgZ##S3j2*R?7M@iZ6}<=w)6DCh=%l?Uvm4-lXZi~&*i$hk00vKY)XMN7Gz^IK9iM5VcLK{2q@cnZAG)p(B; zHGH6%)M_VepUoJv;!k9!5b#cbYPUKJB3Yjb$)h7ydP5FFf)57x8mX8N7O z!YbljgEqE~|sX8>dQ>wo6=UT9{jgi-kkP249cGZlhIh@rzoz z88-Bj=!h*X_f-&ei){zj?O>+*0N|om*Q08_lWWrB<`BCoSnEQ|lH*$uYK|M#SU44> zV%uO&sI-uaW)ZdnPxD>FZRB;Zt5mcl@f)%PXBG5Z+hm9Y^#g^^XE_u(42D`wsur(1 zsj3aJq~n@aM6pe}&4;jADEeq*7!hr1mSFF&E0*97_C7QFkyai2J<0EClVU|DE~BC~ zE|^B{cvdx+O>tLJcFft>k^k?H*boOCR7D}%O*=T~^&yj54LssBgU}Ec9^AH74~-LO z3(%U1d5gZl#Bdr84!UP`P{Liog%Ne;tHg*qEULRH<^ocbHtnT*Thhn6CT6~r3z=zS z;poHTCh@ Pd;5_A4FrS+_qJ*Bdv!YVa_ga6VSWo)i~vpx#8? z&YknL9_K{r@k>2#Q`W)%+t?;}9d(b#y&8B;! &fQow7iXH48`#l~iMvIbuXF1v~ ze#A;bSiYsyKdgaGmN-$NM}$gT#IYcjif47c9H|F!B`SsF1?;7Hag;ILGa?!K2qqR9 zg`XvAH9crZzW~<{s?JtgOz1pu$A=qj1Rm<8K999j`{(~Pe9X;!0ZLH!{(WCWTR&1$ zcZ&o~G)O0@Nb0O)@PXLmgys|EDG_;al(NW;m$AVC#G7S2aUDJ|zfFv)g2*FaJj6YP zYjXHHWm&_OoZwS(u34^{-pDE8fOHi&V`x06I^%Dzw3v2P+>3>D+^w}q&O-MNx#mvI zL<;SATt~u!AAG4m+4jpZSQ9&#)r0SP#sYCGdC;XWfHYfDu~Xw0A;Tz>&mbU=hX>u` z$)I~uM>@~)IGk-^K8mU>e!Fsur@;lr{=s5=c&Z$EE*5VTK*$2(!2_{lU#2J)_|t|| zS9~9;Ine+75Z4?N%@g=x)UP?XViCsa*6lJY9i@{+&86W$XgE6Q9{2yJH$k-Opp-9f z!ddpObPEytVWbbWIIwaLFl9C@1yd+vvst(((vR2Kijt6CP0-QP3#MA5bxMYHMUw0E zzyfJ%;6Porsx%%yp@lmAHqcZZKb?6Mjn0yGr^9g{GEUb(o+ng(sC-rBp=v&4GI2zd z=sIfJk|@z`O>KRp5n=h1#_?HqbT*zqD()I+6{~Q$Dz+eT{f|G7P~c$osd*w{QCxM< zUV2WmHJ84@kq=$@k|SxqljGjtT}{FRxGlO>fB({Ie&0x1JQc4xq7VD^=L1sq*P0R! z4~bh4>Z-1AHn-zu#ULE8%ijK+X!jW;bY&6nTUv>6iib^y>NXga4@$Hlgm`PcFX~;Z zf_@X2=>a8dKwMd!=mE6D)!dYSya~U6(P6vAZv!LKyubjf14?L65T|i7r3!&k0I3Bw z)$Ws)uuwcx=W^0LI;$n~1@Ns99(#T0ysAM7#y~?h(^?@7K;=4 z)MAlKOGK<1L7Ey2&0P=AMi;1!kwqFhe@jK{IW-tsy%ZYVm7Kz+zMrffWzX=pCxtEXBw2;e8Ji7rkgY=m(s^$h=66!R~TZX{F z#++6mK7#}#rj5fKA!I4{n*1lTa zKZfq*bV~Xbh{(WoHQdd|2<;`NnoSjBgyY0^r?+ASi0M$t(Ga8RF$XWI0FDJ8cfI}a zt&p7F==M4a;mQe<yL5sH_#yFCS_0|Fxz_bSt6-V{wF0Q7*(PZ4 z0~cLlwKj;G7aDxYvWAVAnFWE0c;+k5jwfeJRCY2zT*zTGIb^4)vPf>?m0PY+3hz;_ zJqrK6x+x0w%QyH{F7<1?jy_)wTp1;=AgqpH!*1d}6rO~npcmG}Al^XhP48fTuXD1m zM=o-{wcT&8hlix5m6|>kphqh7P8Z`#sr#}Ohp~6WKEOcd*URO+y|wk})2G&_r>)uI zYHR1GpMKi9yI$T*Y927M@6RZFo>QO-#}PMAW^M{{yDiH&kW)hDZL$t|%0DtPx6x2( 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

1@J{or0EJgmk_33P@ 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%0A`AFm1S~sZB)G+ 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

0(_1 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%0Ahr7sbSe632XmXFhh8d;D# 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 z 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

lMA1$DR>fJ`>m2qujoSr?T< zex2vH^V57BuCii!cS-&Qv~l$Pfs4h|BQq8qa)Zf zYSmq_#I#W`Hl*F!{rtl*ftp(pS+}&}{vB+&X5$v$Q#!LeMt|lGY*RU-K0%SuQrw6L z$D6}#sPTUO5$HuPK@EC0q8o7+levbU!fXZ^&>G4eDiSG*^(tSrJ4&0!G@{;3lC`2) zxVq)Z(xkufbwY=!ZBKFA01y^_GNr~>tv~eM6I_e-2EXRw7oAWt$Hwiq^8@@igxPz; zYe#O3l4^|jQ%y=Ak`)5rZ-F5Gq8ttXJVN_2$v%NJ_Y^_ zl<<5KL8xtvP_)6dM|BKhSWW)-EB}e%g~@lGc;+x-0mf$yHaWm9$PHQwmz$ePibH~t zQIj+m3VmY<#U|x7WXG6+*}++)_lH+=q+XCCiy#BSb3Q55o;1sGD0S0`^xMBvzLilN zAs#}S(*G=Zpcr&~Xl`Jb0SFpH4i4UpE$R~d_)Q8~Y0R&stZJj#qACX{Q*ZjH7h^r| z=~o3M0|tk3mO4&;h@C_MT*y8g!RZqotBGdI{6(99WtmL`Y2lhb#Ot~(uaFpwT` zIg=k3-md5=%#-kj@@{}YNL_LaCc$<1ncS5ZtE&Jb5mSirg3v$_Onc#qytf+zdqUG^ zTjmp~#NV$aAe;$5d9DqKq5rLY$E%qDb2V&RB#Xw_==tqEvCJI=^#!hASy%e5& zqQiI>x=o^E6Zu9j)UJL7FtD{c`!^IPo}>R3d)IUWll9)EvqidOz`R@b>_T%&j!K8l zKvrq_G`UCQ9iV!lNKIE8E2}%smhsJuzz|v?xm7f^fpF^M!LbO7sk0yBO5PLV1*9pr zr*>+D9VOckj|xf9NJ;-ZxUd=(68^#X@aPA|MhaJRsXzhHQ~49z*%KDfhW=CBW@I%t z*;zc*wM=nHXu_kr>}pyVbd1NCE-dy7xzfSHZtQ8*jEr_1B$EPm>(r%DcpcrdJvD9B z>N3i62$AF)#%g(!;vlAw{Jq{NM1UI`W^-!o8*L#>@!@_79iC0+7ghbS5S?~EeBKmQ zviR#MW?WYj#N%j{Xgg20a6OW3pspFVk|bS4P8Cx@$Jbm-J>2vs1m~V`un@s6BB?cY z=je;?ao}=IpQamx(=RSLLNN%vb>Mm5E$pMOkdr=2i+uLU`P8a3nBwB#bti%LuexNzQ2^34@Mx$nh^R^$6;FT#dhH~>$pe2p@8TMGjeFtNYrfNIV zuIOB`>N)Gq^ZDI%ep6i720k7#>hpI^Gcm8y0u)BSWku#rGcIy4h_{shpH|K$q-W*9 zWlBq@dMSN|Ih*4qP|BCIe5u!7(bCn0y@Z!H^Hp}8f;y!HNi}o{U!Bw>B`ZiLck=!% zZlgC$0RapQud2X&H9$;J@){r6=Txgsgg6VN`jLaTqO7g*F|)o1salMRVKh)Q@P9nJ zNU02OrV~P)R@EehJ=*7&qcqN!=G!BEpay-25<&{phb!Z&*_{BW#Y6q)4M;8Y*3Kf| zSF{m45~IVR;OT5ZtqmsQ-rwK%21KeHyg%OWjmClEY-KiqkbvWRpoGJ(pwn77iip29 zfw=IXs2fri+^_DK)QGUK6(;y>&ZTFvhMV&HEd7+uCS27(qudmi6VAbCo&54LUBY6T z@Oy(A8Cp(Qoh3m|gChaYYf5eQTNASL4aWw&9>#?St{QGnTeQ|r^gwmfK?SQ*z7|}d zFU)BLX>r=?;%UOuP*fIBE$rBnPdR?D25VyHfTsmQq^r3$cG+x}Rm2>_JyjPw3!aJ` z-<@@_(>HoKmIiBa^ss*e5#4Mk^or_824%GDWCi_$oKn3xC|VP+{%stD^Lf4sZiwLO z?2z2wuJW5zfUnyi1v`NsbWgem{nI~~pf5tkYEcZ$MubLvb{>1iWsQMVpGY%Fe-*{( z#;D{GtsFr7$nz1q&Lmbv3(V;~zoqU0b8_=Uk^Om+exC3I-K8i6}6}AWy2i6|5 z*~E~}MNWta0ZuUfb)pLpEoKfT5|1)acuc)|RgM{Cw%;?By6nq2LzGUUcmD*~>)E@- zwsZxHi-Nvh>P78jVZYrep#w!s?+#36(^NNee z&E>(%O0L3rLT>7XOw~cUNS3M0-676H`~_yyG?j--g-UzxjE2M02^i7#Mw3DJxEIg} z9(F}0PQL5+M%~fDyFZ+=uCt=e+o0Mq&sXo15uIJMT+r{u~aT)t!H|o$zIUg1hfo$>wPLI-{$-4(sd}PKP1+kxu##puN*Sf>y`)szR~XA`BLTmI|ohQ7qfMT z?N{B`qZz*?I3ju0Ug!K3a&t2>rPBI)MU4y^Gx_FcSCT+2E~tzv?w@y|5A!Rl^+w0x zJk%O$!NE1yv;6WjKUwBrDz$VeA+QNEAOodzK1*dfXuTYD72{QSz2F|+zVB35?W%Ge zE;Lz?Q0^RD_qj?7WR5u<44a%213i>C(Ah@ZZw??z4 z^1_XcNUU2myE!!mF>G_3mv(FQp5SG(eEqTuX&rC}>}u;#P{^CF%vz^hhQDZWfA!Cm zy_YDRzsK$|6xZwT1&$w~$6vh{js%)DHbJHGzl3@^SzL=*TqNq?(VI>oADiDKk^>?mU;Q_#XhJ4y{p%3mKJHm0gYlQzY`CuoNnm zUue`4F-)Rniyw_iE;Pgwk^jV28rR%>C6DTKB%yVLK=%cqm91_v+Kv=v5J4)0O&DfPwv_*Oia zTBIH#x8ZVb=s3R{CPD#I50z{_&HoZSsGg@D5=7viW`7MixI(EOBGYXC*Q^h!x2lhX z#}nl{U@=+;jpDD_wOkQb50ROZliuqz5K>XIC394egFq+g;qxhJBf~@D#rr)xhR1nDObwO(rskY~9B3E#dc~jWR=e_FlkQ~!^qw;tP zh}3KBlGJQjiM&k}kkhD-tB0tNShy|!cqNo|v7%3>&1=GYS%xm5Rr+feZ2S4qgMsTo z#IZNb7gOu@WKzNLEMmgAuok-mM_)fm6>)j3IG&smrKQ}f$bR7+a5-$eM%0`~IrAm@ zZwDRfjINTC-U|sa=~U_Nu0(a-3|IFFpjYMhh&TE2z!RcMn;$!4q2WieWUSb;2@dhvuY`$Y0yaJr3zGo@tkc0SbVrRCtwqjZLT zYoNd;XaA=xaoN`~lWJLYyb6~q5m1^L=vG7SFdv(~-#*RNtQxL%1p3ZC=K!o@umZki zS*>&+vR5NP>QO|yjhAaeZTxHX0I~RVve)6zwWiPP{|!W8Sgri_NsDDV%|25dCX4aT zX$J#RJDceHrRLD=btrIBC7Z<}ohK}^h;5VPYEoR~x8117XE!Uvp?)hB^ZKnQM_|u8 zHQNZy$7%X`65Ip={+z4KVgasRE-QL*m@`{_)#(TM%gEg6K89m;!R%H`b^+{}aK%AiFI-0`&wUIP z>2;J^g*WZg#}4qPxA|dqnXxd&6AA!~CjUTN=-^SX(|gj=V+d6PIL_xQNPUHNm20-e zakOYOt;V{I-{m*Ug0TJRR+PX>O5G|gSyfyJks@rNLEpVW9U6;vk0oI{7v>bO`1aE&E~ zc$S!S0G3yFU^+>Lu5~oQxJubl&pbtvYL*5nP;+?e!pKz2g(=Zos24p-C9?@mF_l~CoX3XX<~%%HioJ9ETms`pS^HP*^&B>p7AS$n-FvM>4BRDub2lKhOMN@( zKGs=-E)oR6SNb%$qJ^+Sl#UTEp9R%#`t=J-8O zOHWzZv>EBsUt-njOkiWde~sZ-6c{w+l4?&n6D!RT-l7tBc=6|Tb(mIK4BMj14U)Zo z7{0nt*JDCc2PkXmg6gt{sRI()x!}3%N$S9Zb_zUL#pZ!cr9VIjIS9V?gQ)oft2WWziJg0)CX~`GTN8$di_~dN1LG9DISt-cr{N+@M4SX{ z%Hk=D^1TP5QHM3sSkxNS@qnVku1g^&5XM~V!r(l2z4|m)4^vaF*R!=l=hqq|T8j?MWrlNhMe(90_t}tv zgcKJa_NVFh;89akBO)R`;_EUb*E>B>RL~Hi9zLzHCz~9MqKIw>JKqM2DyBJ@)BA#9 zDrydA_ufO}%Ia^1B-GX%(*M3V6UJn!EDzt*Ps&9BKLxf48kKW|5N{Z5({I15%YZbU z83cD=-d!jZu(Xf&fT}6Z6tHl*Q>eTI0+uGau!9)wpq`7b{m{7X;u0JBd zq3$&yp|Z}_1TcK_=DvMH_!Qaq&+9gqj}Z6Y8TanoJQ(hQJLw)Y&iBQ@IPmU=|N5Je zb_*K_M7Zk4EG+7m{n7BlxHsBuL^OL5k>3xF`n|#FZX=#$q%kQt9QA*LDij1MIO&Zb z(|31p(A#Y+(j}^{<}sx1Ah575Xu?Qc=OM%Tu7~7a%>kW=(C7|RS)n%;cFS%3EQYu9 zlO-e|U)^#4x$rEy;HLI$ywL>;pQZ_A=n*#bDO+p2byr1i4l%t;R9ez&lWPaoJ&;v7 zV^(#SDJ+>;k?-YYu}5HlK9}jH8*wpm!?a@-|Z+4d3*SplHFol^QOnWj6a( zWofSO2%0lf)%)C{$pSGeaR;vMPb6*Hkjf9_Uhpsgi-0Kuv*{hruEWD+dPe?+P=-f@ z=LUUsH%!D963_UA+nk4a2yKky2RlP9d#Ov<%NV(lVH(1Qhl~{YZ<#ZzA~^QWlKv&x zx+FD$7+G52qo|L{gl}<5`$yE}iM?3&j+39Cdh{7t(H!&8 zmQCNjX*)bO>d_!-(eUp0K*^L3w$HQ$i#o#I_?(ohC(1g$_^T`~E6nh&Mba?{5w>03 z;`)2#P%6lK221c}BWRJuu_|c%YZ_=liFv}zGzcB5!20H|!x@@q{Ydg9JRWKpiS4C@ zmTjeAz01bzn;Aj!#p+;>4W7cof(6PQdcvRPhxiFL4s9k=SClqm`kuAg)arytjvRJY z5Z;(B_tSJfN-yEpk_^5{vwXT%h0*Xd*P1yvhtzWE*zqKuu0`N!`Sl{7(_~R# z9F!JkjsJC>|BDDEVJBZ+K4w}gv;>ILz3s*YwKv9}O{IB84vXa!tOGjpqR+5k^_Zd^ z&K3)0fiL5vcZxMmTy<`FHw%*xn4K8h5fZKmW&#)uKb*87q7P=TV|QHgr@~xm2qVr? zlD2i;fE6J-vLa^lz(z#RNXDSPinBPaPY66<*a-3nub{hj|Cm~0c9Wz=zc7+|xP7H3 z@856I$$Tm z`5x{%NE{fnF!)&)7tT0p;8S`Ud5`is^Slpl70WkNAMT!`%oIb`XsRbtGEX~? zbDE1LYBR>LT;yRkHD~}wK)Ao&T71Y>c%87=cD(_(te5K#-)mY~g8=JX=BtRME++Rq z*F##Bw(IN;?={)gkAna*`=MCLx`g9D^2hNqTdZh)X*go>d7pKK>z=1WWSj8ow{^z` z#5%wpmAD8<3U{CU4H%V+wdf^gv6Nuhp>o6^8s%tSkRu)Fdt$oP=PXq}iI6soH7}=$^7!s0(LJ2a%*m(-O%ft0%$WK;?tv zYPvNJ6hnu~=>fN$Fd;%SVRqN#KgD8}t*CiF6OY^QH@z4u3N2=ghK~jfac?41O=Bb~ znlb%q>O8_j@f5VqyAN$->-jvSQ#D={s=l??t#aZ-rJ7(bQwzUoZ7TiKbRjA|)_P0x zB5(EPch_iWJgGx{sKMVGC(M6fnw!nv13G8>dVyVtiJA2ZSnTe*QeWnMv$CgbKhJ0G zDO<4N^%X5-JJ{Iv(7ZwyXQN~<-?ees^5EjC4i>38g+aaAaH(@O&2iadNDa*ObwZy2 z=*stE?|LopudQ{av;-O7v^tyIV=qyndKNTX(OEWJ|54a@rT&9nV$|oD#Vmww#y5*a zzFehAAmu5tvwUwEPWemW_#$qBn)17z6n7S1;3>38ZgzlKJ7{n{1Cxys4*aX~l0mAI z!|ajr50g_R22ScRvkU%S#?qJZu2Lz6#hro>h@N*MDk6|e25F#3LwY<#OcvM~vjG1} z`p%exjJ@>ePo|{sA3MfaN}Qw0pQQwGxo)^|zQVu|XjskXf_n$@mek&pXGq38x)8NQ zGA`iLP?o4V21MtkNSED9vIyWpncUz?{^I@E>5j+mk9(6h{Za4D@b^H8`{S+KKY2IA zJXdw9b`NV+><$h`!+yQG2k%D1<9hv%yKlOqetFfC(eUv7!Rh4J!SKUC#G8`!_)vNx z3ZC_?clfsC>+qyE>N-Aqrl7JSqkoNhg!q-UIOQuVGO}0Jqcr!Dn^MD~G8TIq^?P=U ze$QJS=fi3MrQRlT1Jqk4uWQaGvyhsFQK3|3b}bO*JtK!&{<+!mVwM&C#T8-e!)1Sw zmxxrZeipNE1==J5gg#(aR?U-U8B6I17Vv$D#lY?Qsu?6GAr@me-wQ1Q%sqh`wZfzX zBgxsm4^kXn)xzq|lO?%t@6&=31O+?&KKL>LVa3#xLCqW6dl9b4M*V#P%EnOBF&FAj0|0rjEuBbV}h@yIC0`M2I^ z+#e2VAVQbzw@`qt=yeIe)trLp!DRf!wGCRHgn^ly;#a~e~mGsT zYp*v$R$@Li=vh7B{+n{yfYtd5>6n1>yA=p1%}R7pSk0Usa2(}7l&~uPzStJ`kHKP% zrH2lyc8 z8#JEIa#c!I6F0T7f+k7;Qe{Lda{Dcd_tGZD)7`WbG5Qw60JfR&xvE10)m&s)ihW*? zIeGkvQt}apa|hV9G0|404XL13h5% zb9+l@QMo7qB`(VMCWLd7$?m;y>0YG7s`BTqGSvq^pP<+BQ?X1zB{u# zbcL)mTb(tsYk0J3Tr?X5etxrz)7{69FUh$^pTdjBzn>fokKaS(&VLuzrimQ%B@exF zd&YwUmM0xJBsB~H+gkb1MQ+o#G~i-WkU|Eo>GoB8cBTsW4M6fg-p zOQ+;y8sw|N&5XzT2s@Jrhcuy37HMM04WX)-2s^COe~szmtWjCR3lg!v=TIk(wqSl| zl(_{}bR;7yet>aNKVXw39;cj`TmUsIG2+NHc5va4a}tzdEG@dFU5+Ib$Cf=?Xit$2 z*fCXf^c@-#ML5iZC9G?TAjEJwC&$wgd>D5(w%Y;s0i*?6?cjEqt;7!++IwTmG$WSF z=l4ZCoX=e5tuO&5S%D`vXu}3P6r0~&kK~Lx{uweJ!(GPxJP4!9&rKZ^n0qxS!2>Wg zgIN%<{l+%+7MmM;Ru)&kM3l zQjaG-?)S*Nq;08}G|hlrKP8&_C2F3oZu8~G$65ZU5Pm#_s)SDx37wYkgj;cEp5DG6 z^>M+HN)X(X<=qmWBKj#|$sjgFHi*W5ho8a%ty|HlBkmOOReGIzFPn)7x0-;33z%2Z zcKio^nKH{u`bqo(&sON4NEEaUB;^o7!`~X331ceaXpT?2r@hJeba>*E4B!CykVa(U z$uV6N+~TPtTPl%-4s*hZuh7|6bxTK=fA(S$yi!6!&`a+uUFlIFZZpul#Nu}t!^UFN z{rW)kqFA)&^P`+>Ft|ovh4V{)?x`&tyBh=_J-U{YCrl2eh!5|}~6 z84MNKMh((Nwkm`W67GwC)EI3+3^&1vsb*dxViA;7_3saj5XkS9 zA(9gBfia6pT1Dn{T4d zcR3|!5Wty^0VEwEYsyB=aWDxpTQ(zeO39Mx6DG!dbt2tV(*YMcff3pP3-^Tj-aIoE z6_E>CCx#$|v!=N3N77=NJ&pugYIxx3#+psr0Z$i<2^marOiM%0DzZz6h%2@IqW7#N zM==fbg!Fq}a)84D{6Uyb(~v+ZLX=yWIMK8L?r+Vhpax+aTbvehWfQVgvL*LDwG5p| zkhl!DNFgM_gR2>Un-boi7wcMBXRAx3;EJT95p`4wsM@yz#f6NLlg}O8<4UWZ-DED9tXh;Mw$9 z5<@{&{FC-LO`pclhMa`)M+6Q3&;oJ@q)9lt&gTiO8pWuXp~yl#3Z4A^l;z|ABc(6G zohaRbQgYPINkRB*C)^34;AT0yyUlZem88*&7cihWOwttt_-y(z4WaA!DqOCXDLHo8 zsJ3WnPDmFbL6V*4FSj8mX`C;^86x-7^w}0Im``W<4KE@Et$aq4u+WSe~uYwjf>U-AS>({!;Q zcYYk?_S2WVtoV2*rZ8gDnq4z2p1*{Dc~Pnt<;kU3N!#g5y5OhTGL4oQ?w4o>{(-_7 zEJd+nr_*o>q* z2Uuv>H2Dc9NL_eINVXgn((%36f`9QhUvDqyv|_YuN=qW5x7Y1i}X1!6numanwHW%o^oD*g@V?Ca%8H*WJi3bWKW*Jzpw&WDaG;SR!WwUtea|e zu}}~;dLD1{Lb3hGShjHc(PFv(cDACOP<{|g{>4vmI+f+h{`={t7cXAEG`^&cFRL`2 zF=)|N{4`1V7fAy0PfCY%oig^h#eZ`Q34=+VP&&=A0QLyZfn;W4H;`j3#{s|KC(?DA zWH;B^k@x%n3qbV0d7R*w={JQ><9yRn!Q!Iu*)t?FEnnO$$*l|Kvoa zm9@J4a{J{^NCI+MgQwkVdYDgfUayJJb+^n5ex9d@a305DkAeQ{B(m($ohsjBv2)pKEwIJQ-$$_tu0=VEW-#UA$pPS09ln2CVWP#VF?}Fbo!JR zviV3tLU#ba2xqCv!qPN-fzyf~_|72*%*z+7P$g(MCG}JGK_w?SF1PRuScHr4E+hkA zP;yKYAjcvN#j_`{48>-Qw_;c#i`fkjKS{!^1c!nXfx8BEh+dC+9N13;9NSy8Zkm&SXJ2)hy+8UqnxzZ9lXFXFt)h;)-ltx^bT&@d|R|oWl+bx1R0nBv>;0 zgj|>mo%{|f~ttKfTERBR$376S+rO$q2=cr+Y=P2x#!blUHY(SX)anMCGeq-=g2-bLvNgytAs zMj@iYBjS20mDM@O=VW!Q-ld<1ORNX(>ikKc+owPbh9&8&32G9a^SI3dBcW$+B(7?n zF_IxPB67F6T;@0Pgc6VlSqa2CSg1coz;M-q{d`3hj9PM(PFW2)Q{*-eM;R71cw7?< zhb0ku*ZX~PI_jSs^-d?F9-#C1Z)kWJKALtPy}4-le>_&c4f5`iB!}M5mWD>5$#Fg7`P4$`6(HQdfw|Bn&@HkW3j^6Hfjb@}3?2Xpz^JeorA&p4W_IdHTu`3VfpZHYEG?`#-cP)N)u6vD}5WvY{M}&sR=|YMLgGu-B5EDF3$na19IO$Egr-Ui(zd!AbcTIa^r}w4TOu8Ka{P$z<@$DZS zj(P(L+X9U)B`zChXP?yGwk{$L0HV7}&!Wb5=VfQRp^TLV7^r0 zopeXw?$kT#q1zKXw*PPdx5wd&74f0B|7-u0$X*oLcc;fklR>X{IG&6TNSj06o83t} zIO@Ia9{e%s_a>w6;4N7O-)1eZF2RCaQ&crDFYEN@1kkFR{5Lrw=PSrOev%j2iaKq5 z>ApGbjrMzQ`-9y^I9-veMtYe+93A}78yvFYbPj^|e(%k2)MM476m(C#KK+CZ=m%(F zA(L6ic#RuEvoawx7?B}BJ(D`KrHfVfMA2oDuKM$Nx^#6Wdx8q211`Hb;YS|u!<$t( z_#7+T3p`i&e^_QKk8w2E(2|eMGRPjxyYu)eU%p$W(-IT$J+vSJu8CEBAxf=jwfqj$rEy~u}XN&Z^f`VdxfB}a#05E#O8q}O2DeURtNB%6o6(-ZA0K6B!spA1b! z1;df%e0O?{sKq8{%iEn|KNrvPx!*QeBtkF%P=k@r%!=zy85m7=D$F?j9j|h__q=^K zQ1iuTKtmGp-*;38MtW^|21u=g-DDL}PG3=yFd` zGk+gNlZ-CFlAVRO(9gjmfXy?}+~LnVW%(Tg;NqX;42Xk=7>qF?|4saBhy1=I>-Z*d z**;o80fUE#$0l|Uf8Uh=5C4^2-+-rr543C*&M#+abE_R}!D;fjT>-fuQ?yKz!|z2n zja+3DHDwlprK`ic@)b-37G1gxi1GDK zWsKBvz8Zn)EYBSo+;t4Fk{<=-^Sy9Djdv9eSjmrr^7&pktd`*%Uw%Aix^-xohr(-S zmHQbYnTC?x(w}#5v?vvr0t${Kb{cS%R7;w{W80{8pWzg7IIGyDR=0J4dmh!*v+GyoSw?tl0%JPCDn=`RNtf^)~ zxIs*o5@A47@@F%}-*@o)5+89sYl}>+58u`LQ>=eipB9JsSnQz%cB#=!Ih|KIFH-`n z%g6ta0hD_8p+K3aqT!>+Bc=E#_3neu_c-U-u5=s=)d#){9Y_HA$(fy7 zIAtk2k5CX-gI*+0kjE;LyYdJzcB8)j5Dy+ttqR*WnJYDb2iITzdQ?HN!otb^{e6G* z>lnlA1xmzorN;QQJ2>o)4&9XwhQ}ve8m7+(hVJQvKT~;oP=KS)!S%azws20ilAlDT zXe7-lI>D8Ee&y-XpmH6r3ENYGwd~DOv!Ua% ztygCFH91fbI?`XaRQh6jn*}Y3=wg&0_V4-$)6ZJHjEHcTkt_XL!!R1v8jib-dsq(b zx)|G@$OzljqquDKn*?@0QOH9dopn(Z zqH&(UH~S%aWMj-HaxZ)j;fAOIB8!`>M1}M&kFdo|4I#<5X%1))vk6IunrK;yODM*! zcqVxkc8p%C-K$o$jq=rLa@SPNnkrx!*!S2kk;?}p%`K{EA^*ADgS&BfHoe%JZf?rP zNI0^@I`ce9acjZ2le2Vl^8%Kha0mU$d*h~zb^5HKh;F=o3-1T4Aqb8aFem+sEg{=HnJJeJ4@qKy8Ak zeie%_7N5rS2Ykxm%bXPFPzuIYXq!Q8#&;X|V;_Hj=N#Tv zb{q7+=;-vBuFBm8`SS?>L|+i_U4Z|^AGfp%@(1ez_Q!4m{+Il?Dbnk3vD+a3Jq{NQ zj3<{}lKP*z@L%vxfXmZv1OL-7c=~TydJ9nsEG?&3f>K)$4y?QtTL*?#)pH*VJE}wx zs+%n<4vJzMBTA!n-Gn{IGHx;NxNe~& zuZpwDr0JuJUXN@-uWx#dP8`<*qlyErv9^Jn9`` zKetq792z{;SW_+KUT=s2_L`utI|;e;lMORtvnhH9)b(#P4$Nz_be9z5((yEz z5b9%$o!4D-T){whJbt5r8B}8tzARemDy03G)fx|7Qrlqk#?-sI5cc)fNN?ppTU)S_I>;k}L} z8n4e{nZ}r^&VZ1cSy`)(bR@#5xL}qN1`-a;dFK>Ss`>+-Y+N)kury%>wG}R+g{ECu zUgBScd5;y9E7TC==FZNcvu)|ECgA7}ADs$s4?H~R#R2`{P{+{$*-G3eF>P(*XAt+8 z(+R5zp-yQ^(jNmTc-8o^tx2vRWA}}~Y^tyNEjmH2VefTo|5xhHMeIO*ompBjjij}~i8){s6q@cCteP27wgwx-Hny61 zW5ZN5tJO5<5!^B`rH=E;^@q`O@(;D0{mxYL*{#7QGJpzbO$19cNvI+naEx6%Ak2;q2MTaA)xoNSm6)-&C%JVtr*8W0Ii8+!buw1?=e?MM=lD! zS%#N2AKlyy%cjlK;y*BbvE~og_&Hksf)8qylb|<@?n!f_ikko+*KAXJG^`I*3wCmu zAtyAXBNb`w^fPH{P6fGLs*U%=0jzC&Cw%vTZwmR<_Za(H;JLq86>BV6htYv@8*tk# z>;{d4@tAeQ<2Q(2tv951A)5v=y$+0MsB?IJ0KXxT@dp|YSYd~)Q)7;0a)9DC0~hqL zv!a@FF-sx1XLU~?CPZTwi}utHqh8lhyx$%7T*V_t;lc38S$cd-Napy`JKpcP%HNF0 zEy7X$&eduE_^qpSaPr4FUNy>$b5I-vY{LW=OvmcTR*@)x_a3l&Xw2KQ zKJ00k&cYRuxBXWzTwZN<66;-vxAVB-kPwM(2`_r99vAe4k+ig)5Y&&&jcr}R$2+oj z;Rh)H7;~!uFi%{itI)Ae$PO;qizYCKO3ED|1PI8|yluSVs}K5kt^U~6ZtU4?1#U0O zN^M&RDKr$b^QzL`qg+zC z$C&$D;eML_5XZcsA+HV1Wa#P$9HVxc&GD7lq3gAZxR5y{}p}23A+Mtko;WGCsj+sE`)8Y*2L; zdcr~BqBV0v*L_rd*-#YUwVq#XcxlcGfFNP(Yb_&b-@TChs3OKg2=J@S*HVx`IY#tFCsmv zN%bw0=(WaOKGYquIJU{+c%;p!bLZ3!Vy27c<*R|q^_JL95mHn8RxK#@J^kWn*HS8&rcN~(EVqTKEl?|$q{JFp*ilf#s0zw&m4NcWM~;9#@|bH_ zzHb0(Q&nTgRuVfSaS1aw53qrVwYM0tiBtUk8ZzTNv_R3rfCzy_oX(SwV$n|(sEHfu z6mDV;+`Its>ISa=F*V{)$hI4#>hBgfp(kizuGgAswfKHX4Er8aMMH1W@B&Sh&?5+N zPJ`>lodV6wmHT20VK!&sq7WH+5_j7~Z5y#7vn|(BbL#AadqB9nJIOObq^5cxA!tZ# zIy#-44kx|AVOtBIQiH}-4;!wlzk|(5RwR^DxMlVdb$f1rN2F>>p7?oj`2tStmm62T zlAD20pzKi#2UD0-86pljEM<2J=G%sxy#*8Rkv`>Ah!VE$9h~L zPH$`Z;yJV7(9X6lcx662XBX5Gu|Fp`W-BzRMcPF8z8m5DZsd3xp0dW5D!OOU#onc& zhM9J5=EYSuT{SP+YxAYWwYb4P+MMuASAddmrU!<{AC$xrBNh1I4SZ84zR-C>2tZJ5 zLlo9%a&`q(Ri6w-&FLO1`Kl_UU}(nbomwKa#$p^Rfa-a4N1+fM zg~-N)HR>MSEV5SE$u+bz^EF#11San6p}u4!iV&k$6@sEL zL#x-9_dX-@nwxz}E4QYNhs(OouErI!blDl{&`aYG>n05)F9ybR@fGzX{WK0?WiOq9|u+%e)N{28bH?(10g`L+#@13V8phzZclA0 zGw7XD{$8suq3Dozda6Wq>VqkEn$lgi6GkP{p(@Z3(}!gZOnLm#A8wkV0^8*|=n^`3 z|LQ|j>@ir1ShiiAA6d$4cU;`cRcI_j4N&PKWNwYhIuwC-^;IbLtoW`TP^P`MNiDC* zMPwR4LHrx~kf7&WjijA~ePUO?yqsOQ?(n>AF_A`G8<<2Pre3gA=kM;Y!tIpySl-ok ziD{#3P-bfeQzkf(c9e$Zn@hN-pPmtS(_~hp@Yb2Mw6F*+q?4B8sNLAo*EZMUsY*?k z^tEA#U#H!-V-Sw}ZwEsfqW=qhp5EPV2l(s^f4u8;58=P`X&(NfkKVi6Dy)-H@38l# zKjN|UG)?7IBb%TZE5x=o7OLq4Ozw&&kdLob+CT6T!w_mY>kx6tiExs|;Vk=CI!JFJg;UXFNd};G%MyCI*m0&>*V|*_Czr^^jN+l? zB0;wb&x-UoIRD%|3?5%XY~MypmP0X?HiYMy((3$XXKQO;`Mw6_@bY6IvB?oYVB`<# zBMBVTsQQod;^E`A2%6x1;T(mx<@2pmwThR)3nX-0VsVfPr^>7`JlaDI?^e~-fZQRthRp++xkJ`a zB5J~g>$W0Ys>wbG#nY5jhw3gKd+@)hS1AcPGofAc3@_!kL+OZJ^6;;6PV&Fk;1=3U z#Qtl!ct{!fx*p<53p^l2c(M1uP#JGgog`{i=piFLx)O9&Q8y}k9?2I?$R*cI*W2n0 z#+teZt^rNuhArLWF4EDZkOZ4TyXo6(62p7!deE|OzN%_*CgEQwN@ov3YTy^!>OXiC zZ117qH{F{)dZZ%*nhj(_YQwYXg`)aU)i5p|Abj4K^+L=qoa9Opf+!5yb+EWpXNRG- zN%rZZ074PN>*-dT88AWv_0+L!H@I7z&sH9#k~vDgYEYZdaD)(ok79aZy(u`u;}EH3 zm0qKSO1G%}QQhiFM^f-ytE*Z!>r2dBgfAL(0<~!h2AXlQ^htyBLU-IKUem$jIa1KE z*E+Jfky3rM*jcY&8PL0AEZDhl-&BI^$Qz&$rbww{1uUXsAqb836P-rLwd34*=Kxv) znS3GcoX=6lT*ZnMsXU_#u1zC}Pyv!(RWL3{j42pff?2yXjSUHr%AwS8dQU9k$hB<4 zs#A?%y}4-|Z%!MwZVcB?zg3g{yg;weq1tZk*8wo6%08zvPvm4+_U`Z#o~v3D{P;g* zaVnv*AO%J#UIH;STGwa>+Dq4c!D*6B^wOJu3JyY zD1UaiM~@bysUYPTxgM0o{>!X5b4i+D|> zDniNXaBIQ*mLRiwcec5Kr_1jd81_CWXff={$x@qse_0$>Yk+=r!r`7Md=CuP313>h^1d0PAJ$lZrEwKKd`FA5sJ?K>57jjLwn%t1EEZBmIcw_8 z)^~_BcaM(0DVmS9M?EopoU0+xV}X<+S8EWJY*k0MB65hopXz8L&WPULQQ z__Y=|=^}1GVjpVJiZM-tPE-?7(Oh-#R@#f=3ILV|x2UausopKF`BsXn0l0jHRY=zN zYLE`+UKOJGxf-C;A6I*{uqspo^}5e$${uH>dKjC_Ln*G0odbyasq&aq+#xNc_{Zwz zjuk2jD;tZ$Qfd2vMZl~azu~l~5kUP`#a^Yyo#d;mtg@-)Jf?uqzg6vbmm7iH^VZjD z`j{5!Dt)wXH8_CVGF)QB zY2j*HwJ6>8h{^`DK39{p6r$^UeH=ZwRnL!SnlIO!X3NY#QGUxGF@<@&O!;AY)oGo8OL`J6lk8vV7+Q!PA#R42CPeeV1{kVQ;pA|5FgY3Z zUf`=Wn(foR(GOhhP`aaoCjd3Gv@`D@ggPC*#24Q!(ih~3k?vItl6YrTiP?-~${y*H zXqmwpDa$Z4k+5^cu)@?mLGh>8Mmjz@>Yq-~7+lF0G8|0Cz2pAD@Mt&~Pe#4Bz27l` z$m6rUi_PZiSIyVE4NB-?c`R(i<&DO=k^CtUm z3qHeNKeQejsQG8zYn@AZ0z!|uVBiP2s^_w zg5@lWF)4KdhG6U`7{qM1F51BkwRx4MKio*}Z0kbbMr3L3LZYv;ZPKi<$8$VUR}jlE zQ#$%XT^_kITy_b;6blv}egU#bk$U!uxfB}bJNJfHcJTMueZ!N}{&1i~t^iYONOR?5 zL)ePKZ?z1MH{E2D+NHyew1?@ATVf7!W5bNHQ|2E}O)Oa02xen#n0Fv6bYVj?e0iJ+ zTujqLMV4^8n%zMlR%Y{lhgq%ll^0*7@y96tOfAOIKxY{yS>9j{!y-Gka~!EFW)-!L z@eNxsh*(`Mi8KreAE0(`xy+YM@z((%Iw$yKFeG~)P2M3;G(nqBYE}f`R$2(~4UOC4 zE-4tQ4IT^*2tlXYCW$!HG{VFNVT9EWc7Rn0e8Xa6W5c)Mlz4WJA3k^xoL;5DasM

Z>^(JU*j2&>Kt#$MV%0fk8LHjLzPzI*@+X$BzRc@Bpw@xw~c%>szJVr0UOZ?A}; zrHv&k9*}*poRdydY?S1LY}hB*%|Qv&pXRe!ehZ@`*YN}cq!hbsL4;BMDaGN?DJJWj zU`vsJSy;%qWuJ1gk;2M3eb)=d!#AfN zx}#pu9|tF+;cxxJ-eJ(_j>&Jbmp=4Q-wofN2BgNQJ2?F#7`_R*gFk{_`w+x|9K@sE zcpMBz4}$(NIlOzMus=9BdVkm-ybZ|d9gs~O9QDb%Cs0p^*dv40?~MW4ac^|+j{NNI z_sQY^NBcqWrhhsBsBea&pc|ZYN2mRR_eb4PaPoe1G932^0*3_dpg(vsBHbYK=#Xwn zSlV~)q#5>slFEE{R1N^{DKLNss&Q*y183SkZzObGv?ItGA{QeGriDym4w zGI|bRlp3Ge5{$H&)W!=}2KYIgdLOs>y`f@4Kw`dHrc)-i3zEDJ%uA#A2B}`q!$y!w zxdeddHE86S9t80X$0_Eq~7a=*yF~*q5M{6uVQao zlU=u?`!J!S^t0dQag~20QiZ(vX?UyEKdp zzj>Z`{QQU4s9V@L+j{i!(fN7jqD6k6pFjNb?EL%|3pQK3t=APb{yaZ_O#YAj zr$hel&)r?}SF(xqNI~+j^_qT4Hvc?toc-gxaq;lH@#l|Jq4DS0#?QZ8ydpJ<%|AO0 z2ouq0nW#Gm1iF)doEMMHs&YLo()446$qic`XX?7x4CssfR_nq+L7b~uy`1zFzUIWf{;}@f-lm7E2oRzXBC77cc|I&Si zfwH1jt&p<_cB_{^Ews_j4p?-T`CK>_0^g<7twE3Aw}UXKjj*NdP^t|xBLe7CxZhFJQm=ofF)dDe>E$wQF> z1(+v=?Plr$C89^6gGasIC=;#%=u4`ohd5T;&$u>tt1UvAp*Epm`Js}#qv?YtM5MB4 z&}_AAa-vhu+;+K?vd(;Q;4l;55O@~TZ04cn4M(oW*(|mFZ8e`c8V)I@A#|Z;a`xy^ ze4(dF(8=O(vok&YqCguv?@)KgJ* zPKi2n#sV$N3Y)LO7wJjYO( z9*#V$vNy~8`jp7XqA$hOukla`MM3*?c?w`iDbjyA0(gYUDq0-KGZq4J3sZr3p9meB)q}U=cvdCz@`L))Y6rdbO-|%p-nc}-ByW7LvTnE(UF$HBsKRxo8VCz z-zM)t(xtiv0j;}tSe zULl1{6>^_DmM>l<;8zxK!*&DGah2RM_Mjyit%X~p=C^$nuqcRC_&NphUy1Y&o5|#K zb*A5@0oz{UXz=YmzLlG;>QRU0&Dq*fp|YdsutPrV$`yJb0to!44it%j|16Pp{;xSk zY_!YihxFl>nYE7+g`dli58459dH>VmQb1RiBF&OCb*)6jZe=A`y!s5S%IL2oE3b3v z#P`Oga)WRz*dLCK=jni*E|gI0c+o?iDHUobeH6!%NUX*FYaUFl@i}*ebv~6Y+?vOc zhz+eJ45dl)^b~Scj7mNFOZjyv*K)Gv|EtE(zMm-Z)iKmE)=;5{a-4RsT=BF+s}V5a zBny&lQEQz-vQMU^*r0(%)JvMu+`Y~m%*SJ=QF<`z@xy7Av3f2^4qX~xVzO32Jesedn1S*zdsxv^}2)I9f&ax z#&o++$miiBsVd#u*7;VaMHV4NPVgqczp5zZ9GtK)Qa zl_%b2yw^3Gfl5af9Mp9l&^gzh?QP^*`*8x8yZ|6 zWP!~J9K043---hlA5b0vK2VN_=Uw*OuwajpRCGgBNQs8Wel`!6cNT9|-)=ROQG-fl zmQb>Qmf)QE!W3ku@_3Vh}Nkt z5RFYld5jsA0X4tCJK3&T7bBy#X_h6JnBC}Wi{HZ>%}ttE&Ev0XWU6d_l`gYY(X>}U zTiYlt*B0Z-hsxJMl-k6OPehi@*eukZ9Gr$`oEf0mlmENwXcUP%O_OP>QB{!$S&|ed zd+JZ)1sRR66(DUM1)R2>?x{c37iH7{>Q5)u4KFcuuU3s|O9Sdil;nz-?XVW9Bq~~W z)gfvrmqvO;RNoY%swt(aCL}SR0wkGpV))w-vzbfiv;CBl`)W`9DJfIjW?=1msnRMA zi&RAD-c?8lAWF@Znpc{gRkTdQk9!8(h@5e0IIjyBj>I}(nb}}XsBDpx!cEd?cr#n6 z5VZ?hpIpf5+Bec_B?klY0nk%R@z)^aAPdPSXXDyGW1tHkw8RaRVB7dWLIMDJPn_i2ruF1R(g zfBs>54*S3Dmd#JIkz}75?cjOaA%CKlsqMMfh(|tt5e3_l$6&%Ie-qq@xN$r@tia(q zPre@x|HFyH`=iqeBp!Z06dt-zI5~Phu0Uavpz!Sbps?wrLVr++!=vwq!y^|CN4@d* z^j&vQfyU1Sji(MYn8LFHkCMwn)A10X94$Yyw^}VoI6?dEsMkI1jcQ>2%YO*-Up$y| zf=}>*T}Ad+|0%k^swRA`5&ZI>8o@8V5!AsNkbd$XK>C%1G|M*#h(kP&I>>MQr?B5B z!@fJHI(EW296LMrMm%JSN0uBal0PX1!%+nS`I7X%{ayM;C6U&@A{M+s<3N|1Qc7Zx zrt0J_b&Aeu!>^)piex9`b_X(9Dnx(!C?~Edt2|&YeSiQpU<`=3NA87blEt8=DO$?w zoL`fwAu8343yOgy##7*hF2;MbsNp@;q*gnj3-v0)zr&(hA@M*F2W&yx-WRXkBO1P%;~itZiEUaT95Gh1;pm#>qA%5a~EC-t8&aN%1YIVP94BWGu;qT|D%D(sWRHf4T+BBSCsqKM4 z`m;OcB%zEk&gX*?5dOGUMYXz`Z~*`<*wlG_C-h>|^f6Q@d(wu@bA zQka{Ei;Y9r2H%gxZlhJM@rzoz8aDKk=ndOi?x!GX7TXT4+QCe<0l-bK?nhO9C-q7S+=f zV*x2bo0jR`=Jc^HiJ6&lAu??&41KuYB<7pO@$S&vuXNO>-Tq))Z`_#G;C^eunXHPX z6c;&iBNgYiJ_Lq2;{1M4Z=!DI&UspI)sZYTz{uXGMAs zD(X=ywy}Hc_h_gnElT>G<*2*(9y&U0IpwDovk#V(0Sta4>#HfJk&>h?rW*` z&;M)Kn49qe6sPX}yT0(YexQc#76F>5lTK0*)LDt(1HQ=#jVH)MB68;_Ws@73vB3bu z8)ZCkT|O|rO^l*~h$CPm;-11YIeeY6sNqUX@F}_1ELTmh=aeu&x(u8?G#*r){^iEWJP!B0J7gSdq}=u#*^ znk^~Vss4))VU+P_V30?{gYMB}(EUH`W=)Zr6 zj~o->1fCuDYYuKUiPL=bZaSWfT@MC(I}qG@}F*ob0Q&`CTR3zV5&9RAZK_iOA6f{WFSqAK9I}S zB8jJ*&{~{+8(E@GIh|Dzi_V62M~5eUK%B18c?GDvEPv(vkgE?RPdpYvbR98mDun2; zr1p5B5$h@w8c$BU$EPP(0L5LSTeEpQozGSQxc>9sN2qep`qaFU$SAHl-JX`*W@~PJ zXGJc%^UaE+cCYq&2S3y#JXE(zNA=UUR`Y2iX(=dPKBBXC_2&a1`)f@}$r{pD5OP&# zD_iMthqHtDKpK1dVwLqUZR_A48IiZ(4N_8M-Y z2mP+Mdw5(&wlJfnDA|A2u;WF;jzhy9D?$O7lErBxoX0sCy7uC}QP zCCIn2deqWUqT#XNKp~csv`4-%sXL!P!kiv#U5j7Mgaj z39u-c^{p)W4z4Z4k23>}t{~J>l}k$@Rt+Fc4MKA_-!KwAn+ zOjd&I<&A1cFe7MYldLstVp5!#S2!bQ^(N!)=?c7cDT_HV_y}a=SZ@MFn9b)_1JPCn zJqNy&P(Mq2SvS&J0}+;EIY4~}o`r9O`*P%%%o3G*&4L!1OG}`7D5HF|riDUg(&84> z3_51U`m_{uNvYFVv$SIyo!(La{%Z>x*8egV?leVsTNZu7~wE;!|5HY05u&Z zIT}*b{4Al1DS%_apIgCxgmy?tZ@9mXA-D;`l=Qa|<*VD2*jv?x*trKL5Uxq?(gigg zcxK%|Z8cmI;HwBeW4;Nj{>Uen+N~|(=9La#x~%0RW@ka5B7ylT^W!Nw5{;h>EH30Q zOb*#-n=F#6XmTrcN|8M(^+%EKAMc8S{R$2KF-HA{{D#k$SFc9NtAN!}Y}ilShr*MR z6nJ4K2FV6GKlS%^w!6nW9J$DQx9Puof4WaHWnfS=WK1O4sU6!~=TG_nGvJ$9{vFTo^nr_iUyQnikrQNd{VY6J(m|K^| z(x+4irlR9M!DFxo-mr|VHL2zo*Qh(XsOH7228Un{hr06? z+Jf?G7^vX|<9={dnEo-9#QaUUwv}_w*~jvJfHl#y!4e-@y#3Fmw^AIKE$ZR`MPufAf%E$<@hu( z_cI1m(!C$fZ2#sHQAY}E1v)5o?$13s$n&X7ps zJ!-b_PusVF%eF~y3zm;*@m7aVBl?yF={Lgd$W8JupJT7x#nbG4@>ynDO;FJESu#0Q zJy|?I^6T1DByY@B(dCUbcJp0Z3*38kZI7ZE=i_di5r(ob(H zSu6aUTwXf)Vj6u%DKe}WxUJMyJR)fHd3vefcr*hSG(RS!Ooi3MAbGgLw%Y>Z@luz`j82F*kl$=BE>kMZH2bD0@5<=&_s_SA7^+FtzsMtgcok8J$Q|V zqv{3UjsOYY>|4y<;sY&Na9z-W5zD?3U>#OsO;$}A3e>gD<3>2S*NjKG4ai&zHDJ(q zoruYAJCK_Kfi}F*Y&omuSf5G^;wTcF|Pf%V#~$0WRZk+n{p&4hwrC@NurYCF<6ow zUsV8V&Wxh3@8T(~1AreORh_EC9I>+c#q}-}%}dTG)=0@gRqL37L(24P)4{lgM|L@n|iA?#6}6tXnMTI}gu@_o>Wz(E)NEF7*GR+`o`$DB4%gCDr$xfavnl|W^t$#UAd8V=rTPEa7 zgoonL%PJPg)^6~Ev;Drmw`1R#fE1Q20i~P%r(%O__YQWt2d7tu$5$u4z1_C8+?8Rp zNmgX=BrJ0ZB9|c_xD}5M53BmBX#z*toyw}jxl_3rQO#XRt?yvvbuLjQsa`7YNudO- zPR7rs;W5a=5XQI7flI1ENsuJB*b&jLqY@wLv?2P5BiRdq`(LUm<0=moWeJd<2w_H15ROWm6)d{%lrZ5&F#NN$0$ z4yw1LBHIM5S<5*lrFD`{ppqM80|>?}DfnSay1rHUHXs3P_UIguO7^dLd3L^LYpV4* zZq$yjLK|?oYqjRRi=kS5JO|uumbk($+6*+`7bjexR?`ihuSn_os+X^7b8&^s!Yp8A z6u=Kv2H+L21UVZnBqk4d4b)r{KLMG;0_as&yKabL01rU$zd9vk!w^71pkpCm1S}R{ zRbfDcl1f8B2)e64=G@k36sFzII*PSgy z`nI?yogz$~I?DV|iO30g$ViA0_bAMqg+=D+C zGj}PW-ri0L+fGSvJFyGYSuk7P6WwjWH^}iD{kKCo>w%W4?RAMq`S`Ay5!(UcAtFD@ z&+N=g)3aLX(}8_(8y4R^d3Ifc6uh3*nqL=EmVN%G0pxzBHtPb~Y7$qhD_P>R_&Wvw zsKO)EfCEmRy;yQx^8c&M_GZoq+gAZRjjH_rl%1ntolBKoW2ujnm4uh_=P(F+t6>>i zF!spuxUx6jQ9PaHRe8=w`Mv93Kb{@uvtslcJ$HS>pguPI2|Nh<{2I>(@~#sShCa8j zA#qZq9}bFn?{+eO5a-VR5Q8xz%+(d$#N#ZQ4YM2&xD!g`WG1|0w8_ds0zJ`O?n*hD zSkCw~TIG6VmSD;x5fifdNml@eFk09Y9o(c%Vx`Ly&q~*2HInhAY&w&~=?CMf<28>| z+|n4?qKyo*qMRozu<+7r*0fcg)Jh1VjI^MF0F=GRN_5P4fJMi3lan1c|pm;4m`yUNcLI zJO4`~7+U^gJRQc#2t3&a`4m&=0jPfr+JHO**anCji++alM5mUd8k=^6e1Lbj+y|Gt zei!0#&jb-h#Z0s;s(%(LYF1sd(Q1VF0`~4%;~Dji_xPFavE45jyn7X7GfrT>LHT(R zdue1>T&w>p#mCDvv{=gffEcrmoZ_>+;iQ(ed(TlauDDNQ zz@yPaAT`Xa#CgHALvk}~;gcq?(oZzbF}})QuI|CDK5~U9W?nT7n}=6+=!gX)t~V1M z;WdtBi*O}7Fvt^ZcPR^{L?VhyHX7a-`rwzRzF5a$s?`$*RJS!YL^K-Cj9@1ZDR&pL zlef`cFl&KhH$1XWUzGIqOl|AR&f44DFl@ckL-Wq4Uwh`&_I%W=tCL{SCJ&ww{qb*5 zgi@uTf1G3BEn#s@k1~d+aPELU5bA7LCxSnf=7=DFD#Za{K!R6Nc3?19Jwq0h@QX3^Y*KU#J|sUI4DV5P$?|j*PnF1+Itt8~4Xz0={TpTL&rrv69xIta zIv`7Lx>n_+gnHpmX`Plp8mp2U)rC^3__>>k`qYFxHUo^GUt7wgJNMRT1XFpesDMc@ z3I}c<$Zk3mkd4w$hyVC1`}?{1dnG77r7d<=1*okDZHN5w1I<<2R(?`>9s`Xc!1KU! z4uY>rF5{qCzS6p$!~#Qi_l6_#nVSPYrI(*)MS)n$cCIYQB{xI0faj_^KJWl+my|DB8KW=z~-hwhhU zH`Zqu2vJO;*-ddb%AzF4=w?A*`0SbPKUUfa-$`7N-ksnQx9}Q{;O*c@CVuG|&VcLlB<$Y-QYtu z20I$l)%3-5EGAXW=-X9gJ0*AIOFsum4XPSbNV$1;wS<<@TU(-444O~4uAi+QZhk@U zMgB_K&Tw7V=)Eew;JRqv7nmpRKOd>8)6rHCV+&uu3G(P#Dk~JM?$9=;#VZ^vidU|} ziuK;sJ9rkNfWV~*<=(>0B{Q-E0L%+GSXd!f1XC!t+9}J@xR>GxDorxCe~NL=hw-Qx z=);u$*e#Uf)|D|sl{BPW$()v|2Z#o*6X#emjYo=iMr?j(zw4Jjc1!i($GgR8k}d7JRJ^( zd1iuZRhSB5ZL(QL&pGqkI9momKN%QVEy7uA1PK=aQ$RzTs6?zs310k1_uv=WFY7Av z4*lHFxkK>h%XTEu&*}H8c64@dc)Zg)?(JNGf6!I`w0GQv7#4j0Wjm^P`<3_g$wBw% ztz^Tr* z$(2&2;JCwEsbcvgT$%0czK+^@3!{NN&>8MX<h$Wr|XRKc_C8uSrGvXq5@Fr`bb}n{J=;}^Dnb;@0p(BQ6>QZYEpfwnwxUY6VR)?0EMawKO;_9?3AI8PUal{6qk=?lX zsPTP>-bm;iG*rH7rpB33wdocf4CSAeSkQTIA;3VedQ^&koEG3|YzA%niA#}e5Pknf zr<@Y>mY1sZeDLDMrItjk6$_!lK^gY3gt4~p;|ODYT0$7BzmKO(Y*7Z#B*DRilPFdM zDiK+=@L3@RsUjscaFL>>+!m~di!n8&%wRp1*iu)v3)WP*NtTtogDox9&ZAqYT-(cS zi8|w{+s>m~DLE?^Eaku#CH0q_B^C9TeBso8a8jjsBc-!_+nL3Aj`WWO}LOxc=N1;6mxHMms=@QDd15Rs+U%Q#?;DJ&TFlG$B47p!gP7?EKa z;EkO3Chyr#!*N!8RH--T(+8$6qnm}dZr=tTHUk6MjOxtomKMbP;enRHc{-f^m``DY z9Zug5uWv-l-}r8LhILQ?Ylia^BZ#129Y9n|e!{7!L*3y_P2#=~@O2knvo2WB9)F0P zPmtJx)RHi>cMqrWH9{0Mo`da?0Jv`uCt5~uy?AlMuW||x;QIXLvW?;UBg?d5^hYp~ z3DRwFKDo4&TTqLP`N!kr2n{FAiKTu*QcPW~7<~Fcd^(|E@@Av+e64wL@$p4#?d@M+ z3{dX}u`)iKZ$Pfq23dE4YArz`(KS(i$~1P)eG}UIRnl*4U4X|B9yH+n`}KTqKE8ws zbxBoCD2&!xD8E|xVe(_XGR%euEUsqRq7t&ZpiXJ`Zv9I( zUc1IfxCQ|3DYu3;{vboU=!f3+-wx5~_Tc2IcYG`)(*E9F?}zT*)sNl1vmW{bxOAYl z-~@zm(A`M?wGBqH{(<nRm@4;{qo2)2`p1J+9aFd$uNYH5u8+%iUz3}|1}j3J)QzjBF403BQ%q%P)b z!-j-N+W{$f;fhIgc(}iAu#sE%=3Q|gzNxW`?7WynR%R8172puCqBHXXv~>mmc9ajG zOy;*IO5cqE*T-$!@l#YGpVr4s6%IIqoD&c2$ohTn{Py0<0D}$8*rHzrQne&-F^k99 zX(7R$w~JybI*p(ky2|v@btp^%rB3k#(9Tk+N8);>Z&X>qkUN@o>r> zN>YfYNt^rn4zT2?)es$QRnSIdovO}JuD{fIsR)uMZdFpAmR;4Jl&8mG@;`!)K+DR< z6vn?wDWR>20GQ}FFemifn;)tJXG$<9yK1*u8J(82yo%+UwB^(+pJ$d6G?b`86}=ft zRc^#|_VFMbj+^>nTa9STW@>gxq#Kg2!N+KzEur4J z!4A5x{a+Te|A6ho7~kTrRrza^2w=u*UTXq`+RuhGkJa+?0-DhmZKF;sAD&S+%OT+| zn*BPR3pw<;XzYck<++L}wksQs=MYSi&KImwnvd_S{gLR0G2b*my6@~AlcF(Ya_|zj5i{ZgTK>B+?8ILZVvzfTT&g8!u z{F2LWF9ITqI0*zPzx8U9|fbjoRiy9aknqI#56k-{__ zR%%qWq=aQDv8&s^d7-cF>S|JTefDOi{{30qfZ3&3Ua3Xf4Qqnn;m7FSJe8|dJihVo z&)BD@i2aV(j?#eKDR0ya85zO8AgKNGM$ceK{B_8tWg6F`fMF_l_ap0~Ns1=_TI8(r zSUr>j(pKgKBpR(RRrYDSLFc|o;1%9A(A`3@d>ESrt@N{qi0S(^aMqQyIpfOO4%-qd zC22d1D;5v4_JaJT&Qz36fXDYWNz{f()C6Rl8ZMz#Ik1~Jq)&kg87F;iw}W)YB_l{~lGogx5 zawEC<5;cz1H%&-M9Fb8f^y8f)h&f=`>lJ!@$vdt%zE8Dc8%q*T@y66mBbVRjnzWb&ztHGVa%;qqyk&I%j;jvC zbI#O@7LV66@*UGHhNs`CAI$>5C~DMQnr89jK=oxwSFpf?{z!{;5BeLg?P^NSgd94} zvz?Hx&)yl>G1f0m#Z`Q}$)y6&Zc? z=sCK8#Nyw05&J0}yr+r879FBd$Zb^%*ZJJNcU9bkplEZst0yGUD<*ryQR=kC47q_D z@Z#3Ca}WZa(3rix*P@qYw_SL*xIgdkc6eNA0e)ns$~v^5GZkvp1!~Tks#nG2oiavx zx0$_DjGaQ&TAZ4C)kR9qy2@8;RIE_tuvoce##NU8SzMK>)}Jm`k1kS%x<}Zbq79|_s@8_e$*RSUXt?^nAVT@*Z-Lv zNgSA}lrP3H^{3vuzx4q|rSVgqd>GClZ+OsmRg~B-eh<9v_u$>_Eb!{^sCV3jw}%am zw^G{qWxKxmabe$AZ!0>#THX8AVo~?0<9ViB*1)U1T-Hrc+yVz~F95@pbr;UFg}s$3 zce_+9v%TVDKHZK191m_6YD-b5zIcB+oR4yR4;yMluI`>xOW%E7m45}_v^ zDQJQcQK;FhF)(zOZnO}o-5!tWfhannd&M8lqfUX&Jk{oIuOje&{h-2}-Oh&#o;RY# zWz+H`jVtQK;%a7roC=S|`5=wQ-89W-Gwl}{PL!k_^Z6$6T5UpTPfIBbwa>a#hL)%f zG5IqmEj|F(%oF)0Y>(DKEW;UT${B8DpdJcH(>O95M1-Yl=DVf5n&dpYWYKJ2@USqa zcxm^I!zz8jmL`4)n_C6Z;kgr2!SfUoySKL77S%`Fae9+q`2-C%P~$8LRxjq+D9~J8 zx6J{z#YZFDQHfMQ$SD2aieVP5V{C>RTXu;<&Fb+av1iMeO(vR>^{@E#V<(imapfSD zLC?t|87Ax_$r_*!+uZ@`q^9>zqfQ#8PI}o=09NJaCRW^7r67(?&fGLLg8SA9eU(j? zlj4%mq9H^}(e^mc8rWe8CzQ%#!>O!tH;Iag;|Kb^UEEIY=6P15|C&f8;f6XZuSB2t zaVRcwsFGw4{5I9}Ru_Z*;86+FmC9&JnRku2IC0}d9&U)26B=(U-JR9Idcd! z67_8(&_7mA2(<5N7A5J}DP2NWH3VfaUt$Ck`Dw#DO+Y;nrys8IR<~V@ickRcLIT+} z1Y1#~IQ%W2imUO*pO^9yfksi~&IOXdS*z~T^0j`$ z*T>Uh&2?Gb#4Tkq5v_}_wr8^qSmiN(hq&P$$});5Ns&E-Bu7bxqxd>MM5Qj(FpbKbYSY=803b(#LV%RB@_8h+Qeu=LDf~7#$?O7MABG-HORbU z&ec(m>krr(0Fx`0I{bq^SMUe9T5Ya>QqsCV=_nHvd;uXj>2ifVvR)bkbAZ&H6nng< zENxH`d#26m<)5BP3mg0LR4QS8y@4hlBex%>!?onIJbGtI!EjSiTp0E%sIc-_3Aww6Gn* z8+jdbin!Am)>*s7-)pxn^w-QqXn=$&p}4{39j4{lmqGO5hJ?QH z3T$i6DR`g;ToO#Ya}O%zo6fy?@<2}>)RV+=HHq(=(s}7x2D?!iJBDsJZYC;#4%@Iv z%D!_V>hMDqPKSMQsLMXJoMo_IWU;=M5qoA|ph1rv#K^wbvs3VSsj5;rQiUloARiXB zK9$IUwtM+uIe9V!0XL?0?xXYdOXX@;R}A^t$RNK2?Fgj@Mi|02d?MAeGbrnEg5j@Z zaj*~hpr@l)`?vsDrWijpCTf>^P9-3+oF3oR4`57t5PVZUfbbXHR=nGnUZf6;|iS`V47uAi6^+l z@<8EUn+esR6qoW-rL9C2-f)DvPf|@PMKcNO<~^v>Z-!Zxj~n!AV%WJ+`qC@e2)r4N zN8+N`P!}DHXOz9<>4xyGdhN z?X?PTGmIlEv0*_D5I;(W7~Ljq;5r9%J5);zn1Rq%(FXY3M^)hAapB%ngv&XDdCX1= zjM~9UU2gnkmda2FUfB7-JA3^pJ29yv%cH-^;*VgKCMMI1$WgX??ftfpr+Myj(g8O1 z=YC!gtZ6ZQOwIh8rqBQ2b~=gEq2n&RNa8a)6su8$Z6FV66jWnFIfTc^;^b3sVcRc$ zKMa;JFQC|9IGV$`iA6|f35DpfL{wjkN0XcQqA6>C(>%Y(I+rh67p*nrZ7V)fZpDDI zz7}n)uUq%W2Bmk$UTj7>Y9w$JhG?Y^hH7%9Hn}V!5tMSFD^CJMqB4v?vKS*$DkHh+ z5zYsCodSKycMyrCX$792f)>$pgCPlWM=R(?gM5cB-^QP;e=GJ^^#zQLxu)9MO;phM zwt?=EW?auE)8cxVZSMSx9ndVXvp*D9%vmv*ce*fAe7je~nW$wpP2Vtx?shao$GrV~ zep6&`8sfW2qxB59dfG|60XFWYqo#&CZ#CeSXG*bKQv>d=z|Nc^$N40WK?)P1!|D`& z_+(B;c|5I2Xy#eNRux+fxSp-GfX*xa&`_4~X8fl37&6@2t6i@SS@cAFrBNBYCBzF= z%acavFl#s1&Ec%HQX67N3v5mkUWH@K^?`z12~tPMbC@ez5s@HZXfE9Xxx_BQMo(^X zObdzXF8@ul)pkfvT?JhdL0LC-(_Z3??l{{X3C`4Pyzg~)8ZB{4hMs~xC#&(%yThGd z^hZ#fIw!`iDr{>79p>Z~#1u^MT`u-!4kneXrH%9K)05L*_Ii!Valu}KJb|JsH^WgT z>tZZCbLa7HTt1U*0mJl7^V{M#2^CL{LkL!nz7^u9U=nI0z@y-0xMH;gXPk+laVMS4 zz$cU(&g2it-D5#Q(I3dQ9=-A1h!FHVhZKs7S;NzqujuB-o1s{UkU0gI#$*bh>f&iJ z&144}n5uCVo;2_lYk%T2WkuSpit1KBifVAD>mPyf_VKRrZd9Zn7LPf$E zzNnZLA!wY5rzAcGf*s{8%U37&c7EuY@KC!Bx^7s*K4YD#r2zUoL#*Ar@lz8c= z9sMyYMXk0q%7p54!V>);x}?n`FPbde>J38bGTj?&Hi;+3b4g%gT}+u78!UhLU(V{y z?Rr%$EM>Q={;NGhrb%mrFll;x<@45dN6Fj|*Gq?ngR8D|OBW91ClB0nr8h~nYAkrK zwzMX;#w2ull{fXMU@6}eYJ{RR144$^_~U&)Qw zNRTS4Ng=hc-hyP8o3^pwmm2{xnQsG0?#fVL)Svn(+DdiO~#rpLKbX`Rk(g9;k6!Cy1A>poSmh5(Z_17 zC*}{MLX=L9saf8!T-J&Hm#G)MBoLY%R4mB>E$HyHWvx-t>nJ5p1ov2k=J~qrO zk|7zf4J|}2%5q-UmGzPe+TcP|Qt>8M)H@g~mKGp`USqKK*8Xvky_np;{mWWsp3mkC zKtghsNj#n9eQ>>NM;q&w1ui#~JWnqb%IEZMJRjbY@GKtFSe%Dg&QO{uv|Kf>d?V(E^uOy!osLEjRZS7FCbu zaYrk^@9wy#qox7tV26w`C#C~S>&w>3j4Vp;J zsZdL!AlD{^aM7p15a|7QdOaL3Q|m2$=~p_;>3qVY=x_N0sLo~x_%gp4jyGSnquV?i z-ra6~i2!Knht03cH~>|&*k!@f9r;`UW(|LNz6%Cf+O$Aw$lokRr{M3NV*Ou#O=`BFcqlBe^zZFL-WrF@EnxmC+LH`@Qu|wi|=~p$m zT86WrkC;!vYlFu>7y;NKs=*F98Q7OK*rFi@`z{n*5&n+I;jj2gj+ePS&H5SJKa(KG z+ZDq3ZhSi&h0OT%FVJMaCr4zs-SS)OQdlZig`aZ@gmqyy%b z(?aSq;k_2ldD?JtjQaI1pFRk3-^SyNuy7hMSkQlJzdjXW&hH$0G{)~QwH=p3+Vg>? zW22>~KJCmVqv5>SXj6+DGUXcNE7hKw@%j2?0LlWrFyNob-|q?`nSxJrX@Wbi*tFwdt=?NZH>Fwr58_XLG`1clnO;Y^td~?IDY5VZt$KLU2|J`2i>bSSp zJ?;NUwVLX3tRTO4Kb5Pzj*_TsX5rf~CuIa>u{r2;0=E;(>9qPnQ7Oy9OX-RtsX@(^4QWnQe|Zmw@h2~+$< zQla>R&JOX1EF}85)%axm1)vMu`W@@oJ>*Vq_+-eiomRq8;95rNY70ii9{b~yZpBWL z9ZN>Jb}@UtCH{Y{)%GeenjFQNpmg*6;^QiKZOxuvY&JVDT5EDTGVQ{Zoo`%P0u4F1 zO^3J5?EEEQRVJkvbg^ykYr)N$f^u>c_Dlsu#BWGxGlcIkI`V3&SvyO>N0$;?6uulE0)U0i%{6_o*wsqzB)bb9-P1taCjijf**Q6qi`d3|8#hN(L7&YeSOin z5Zk{U)%lx!(3-rxf9pTFXn7LTwwOv86c~=di)i0l= z#gus!^0Ix%IT0`NR59hXFXRd#F0fX|PzT2PV3dMh}g58;S9@NDPQD; z1s5o$7MPUCW}te+6&k&<5L9w$L25QOIuw-{$S%sc;!JS!`oXQuS-;r7`HEbpt`!{hy{-F|Ox2QM6rZqz;Qb)$D@ zr>BPpQUBoR>@?czzU%EpCqmBMK8;R$Kc7O8hPnqv(09{~U9n(iHT;)ISeg~Lf^Amz ziU|xJ;Cp9I&Obs{I1@Zxc`&_^c7{(HXA}dhIaMrYC4^0klOds1Y9trs2kv~Q1JdPZ z66BI1gw3+fhB!s;a%B~`GsRxnEQLv2rGqeE?DUa{J6GLP!Fb=nE$Za#=;-kHR6K(@ zwkG%R==6uG_o-1BM z5sdaYie^N*hC&wz@HPvLZBuGV)%1?jd?ut^TQ+v}qZZnmzP2Wum)hJK+^a3rLa*$njZkqme(*+?K$-^HWFXJ}y9dXu(PirR|8*mLQxOWTvu@miTKsO5*g;xyF6T*Ql$9-n_f|*b5Jg{zVZf7p7uUX zHccO0IkB8hvcZSs;t1-k`V$8u>;a~ zXy{F?^)QdPUWDtOQ@PFfdKXu>?W?2X-s>ub3OC%=FoUJm(sfO{S4IQL;)wC?m6^L1 ze4PSXdw9+Q3sqADiFzEthc#%wM!jlvcMy7nAa_BVuTnh$k zD42)AiW}8zafL>1H}_UN+f>wOrZqTZDZMe8=Pc6tZSSjDY;`cQwcr7|*dj$Hn`5*kjWh^+-$3)!VBpSV-QLaSQIbc+05v|5tfFDHQ?WEDn$e->%6iSOGb@E_9T%}m$m8gz% zNY_|x$1?lFz}(%R6N#Utwh`t=yGFqcH{98(1h04i9>pG^BP!>~2$$yd8;|KHS^e zY!Jk0!xlr_x@yuebbDe5pEtGi1sYVa-V|)v6JWcX#MAi83Javx+(b;fQ+?}=UZHHQyO)<0Ny z@p)VQdb8v;i4E@b(E33Feg8(0>V;adsx(StNNFrYkzr#i;H`RLjsL|9YrJS-!Piq{ z;lIiy)@F3LvC`J8s#?{WVkLAQ0I2`}`wPZNpcDQO#8*qe1;IsTW>?p(4{8Gt}E=JwXTz{g*(BUV$J&>0OKsYTKh+)Tf)kt!e2;W z?zrVeOXEoe4mDv!Ko%wgKa5{HX)mv9BusOY0+hBd-Fi$|MWAFV&$X2D$fP=O+Pu)g z(Wy!55%jsK%Dh%h_y1R~jA(aY8C&0i|RiJ&{9LafnZI_um|V1)tbvXCR6 zt!4Qv&Bs|ho^NhGKmV&(Ik$ui^&ihLn-Dey=zEvX5Wq{r{f7lX@P8$D1DQivA^hCL zA?=QP_v=pcSb@bGBvzPBo#sV{Br6C~$mk&9jAfues4VUwDk^upq-+2nG-aFmxL+eK)sQfAHJm7q<9qX?u;;V6j`%zxwU{1Qam`gNCN%fuUD5yCw`7J z(&02!mq+Npt563ROb65#woNKC&lQ&H2RW74{7BQ&x2==Ty8pv zxJMDkFSj5$7Y{?)!W>60jre4(a_r~eQf^?qjx+t(TIWbeY~WHZYm*6yy$UErN+%{G z66MyE)I8Qc1?7(Gg^3@^j9X&WLj0XCf0!&{LEw4`2c39Ve+M6UL;Rm4PHLt9#lq<* zzMaU^SOZP8*(p3_spnFj2H5(XAxy9{JyDn@^s&kWSJApg;s`gNsQhr{Jy6^!)Co4r zsWp)hwb8pzM|U6q9Tekt02~O27XTHweG`M5Z9bh<__M}BN}P;D>E_x$&i`?7a&aH8 zU%vRK`SUMp*Wy%kd?(UkEDo+5)HK_pJRaxS-f)};+tI=dS;xdVhHLDR17KW{A~i0? zmSy0v^}+hp1BZd)C?nrRL}uWW;S1G4E9x_f8DL)`adxN0t;xgTfJ7`JY}0Y3Sl9$a zdKN)*wgvZ5W!5`3(v=LcX#@ak6!1rtui1`*c&Mq5CvDwIZlc0V{L199g3)t}Oz)Z83lq}OT84FxV_B4u z6sMH1=*hO4=A)4`KVkv|m)K&TlKm(q4ucYQa-OKb=T#vDfY3qQ2gii9tNB!h&6Us$ zlC9I(o{wS_B@RN5Wi*naj-j#ba-SR_Su~VeEl&>sc4oV?yhrc@K2@EemdY=FmSgi{ znD!?p_$S1LB8^lVall&jgS;SNi$-P{sXvR+-R;==u?kS*ldvOj4T4l119YmwJfLfq zITp_^?q061C-~nS|2w$U!hjX%g-bGx#b}0UJR1I+A8lL>Fdb z4t?-~_o9);li?hPi7jR_=>n^z`Hz2I%v#NhlNNj!_9tT(q!%dkIe`wJ@SM4WhiN=> zo3eveM8OeUAX!0^aNUmBC4B`L{U*hv$+%jOWu=m3DGw*#C?1;4GxpFcbn2B||jRL3akHLkvnC00H-q*@CH@2rWYNB`Y z*&IyQqI@3#`^6s^UpQmiqp}>tQLMYDD5T4XxxC;FxXr1Y zB45r+d7U&Jh5u19ai~O_$Uz5bW-9?YP}rX}nW8Y#$R#;rP1c zoY?mb~ZwNwc8lq8)|%Zx#F$q?b2+pW*Pa+pv-X@S_F>$`){c zJTIv4)hDE4XEpQlqK5ko+8yh120G}yXdso}J6SAZP$b9#2}4;r>hZ!L&BJGN%#ScT zCV~MQ=^_hO?-N!mIJlB-3jWK`em;*_bqjH;Y-#-&EuCqe-K8kJ1^ULCB`ZJbEoHr! zT2#6YLu~ejFZ9K{Qxqsu)qOJd+GOo~MAw%6JR5>3pVQDV5a5&B+vknH3Zf53Bf&DK z*K1;yXE*t1v_>_o-pVSrHX4^oYqFyE1N9CpX0S>qoJaq)4LAg62Y)*_{ORCo`*451 zd$8lmMR;Nj9N>AB$PRz?>F^mfFRB z%9Dfmx8XIitX8zgK} zI;HXh&RskfFuxhj0$jjUG|gvsBk`}`3I~TaI}ifU-TiPhjHeHqVz~F433&0R#3o?h zpE1UZe|Po{f4JhaIx4QOL8S)Rnc`2#C!ycr7oa{lQ>5-o@v_=t&pMBoZ21f_ElG}| z8MZRh2Wckber+IGWrCKVYpOHNOc_v=#~r)85;>8di=lQt##6`x*fhj|yGJ}83z30p z-HaeRXbgbY(LiiD{0RpfT&T@NSpsBr^=F8r0uhe`v3nyViEPE#OU~3DhW(WX*ti_L zHx*(dLi3|M1s88pAJTE5pD}u5`+0*t?)PkxOtr9Y5iATEo`|)tRWBV2cm2~t$oMorQ z-^QXDm6@$##Dtm2)-1B2^TrSoYtI{(pb(xFcT>S!)-?UsZj0=0l+R#lR(H5CGB z-ua(d!&P2&2wB3O5!tnF2@s^(dVfmyEQA0Irf2X9)WhMdJD0H5-eMuM*gtzze(e?rA+ke9KJEg!$g9_)kUN&7PSI6ZPM`q&9bYK}Sz0?A? zNNgx1SGqyt52MKJW;hUX{2lI}bvBdKeLY3t`7~@#Nwp!K>M}x4dPrLbwNhFhLKFGyv ziDp-4R6?`CBk}ItRFKRDcNg<3Uc8TIknB=olxt=x_pyRnX*+fU1CKWHi;1DC0{)U)Gia4_R z6re%l;e5B4Dw;P}$nP9BnBOI^!WkSp27GH*N$lV0g*=%vQnOa|K>6Awl$Eu*DCK?} zXLJpb-QGdshi)dPV!0ijoq{WnSf5!`+|8qpqE^U*1e<>XLGL(eLPjNvEYvOyp>3P& zsvl65s0hi=*D_)ll<8~1H%KZguHBT&MuWFi&L;x9AyUo2AJ~XnkuM zeTR;bsCAl}e8jy8U{poYI37_%Vwgu>CNoKZWQNBWk^q5_#3YalKF%ycGozL=+EH{#D)YoSB5U-~PV8AoE@y z)!o(ARn^ti^;UlK-mrgH3d7T1yvi&+r}m|LZ>j%c|6QA&*?ETjsP@l0ryYL8ew^p@ zU3+#$XWq1F{P<1XFY|qu-+#>veU!|6&xUSO9*XHl|ZrhKi&iwAxH;W(K@bsFsPi+>9 zuiSX#hFM3AeSh?j{VslF)cUC}g&V$FecPhF3xC>B@zpcCFJB`avT?~Z(c#AztUhni z9^Yy0_dodg#+&b5dg;ekpH%XvSr2|!R=M@Y8@}5#{c=ZV=ML%dMbd&!-}D1QU%Wl_ z*RsVE?pXX~=MBdH)-5DpmoOt8O54PWR zpRc#^;@ZvKqS!le;ikPGKe^@2Z|`~Qy8Aw_3hw>r)^zCShsKS3f6Le3H@>=pJMX;R zyZ3CoV9^D`lC_J!pR?neOGiHN(gz>Dwsz6Tw$I-=;r5qC#-2UrpN+`jeFJ7)ZP>9*}NZ(n~+)4jXeXMgd|?dxa4(Cf*+ zlc#*>=z4L@+P}Q>^2~4N%skS|zk2UibFN-DVO!+d+ooRd@QNQkANA}ho34KHEa$~L zZj4Xe^x=*-9KW9VZ)fxM3%;0k@Y5Uld;8Y)6;FEd)89UB>@DxUXZf0@(=S`}{<0t5 zn(|Wn@|NPg*F5s=x|i3Sy>{8Ul_%b~`=w#u4eQ?8G4>SyudkP!bkg^S-S@%4tM{(? zAlQ5TamU^B`r`5P`!2b1)#~woyWO$!fuDCD*0gZRq}{JPy!)P=p)DJZedRsxjn2z{ z+qwI_-?q=)@x>ckkGZ3(_wS=W|KjT>w~sISbMeW~EoQs+?s-~VW(}Wn-*u?&+#y}VEnSjuG%}r`tIV3tp~k*+bdIs{PuF?KUPQ6i*`=D z<>t%3{Pv&MPP*{A`{zy=Que3s{`qqB<{h8^=)Jr|9y;voPtQF2^>;72@XSBXUHt64 zo{LUh5@~qm4{zUEdh`A3E}n7AJ0H%fKH{lv@9fmmfywusdtz+czpwskRn_JL-`cfg z*ODbm*56jKa_%qk{vYkCf-qyYrg8zdXN~i>|(J?k_vHth`?M>xbh%eL4QYgMU5! z^}@IBUiRv$xwoym`Gkj7O!~5R%QZ(iAAaMzrN1_Qd z{Mjoe_~vfEHg@lgWoyno;rmNGr+oCn!_Qx^b#~jw-}4))m+u+2cH^+}`Vp&sJbH6_ zb5;G?xsf+6mE|YLjXe9X!#1C>`Kg-OTRtmUki7re1@jKQ=&oNIpI#-t-|)!+jW<5} z(Benm{P61^E_-`MMe)XB>#_H~7yqDr(==c2!X5nQ?>)u8;W>Z9O*g)K(Sc)cdBpjL z#$7+`+IU*5`qA|ryKjB5?TuO9Avf<%o-zIDZ-y*(Eo5pgx%JJfw_E;k>^Un}Zd>(f z*P3C?OK&^9yW-c&nw)DNeeAVcuet4y|A;>4yruVzsuK@>ZT;EZ<$TvkEpyM`wPJea zp{tI+E5;uz1gzpE?gacINT|-^?Gko%;0fvHM?n-W30; zst=;0PF;P$w2SVZxcs@+q3;$gTXM&PGgtmSar-xaYC7cK%#KgzueL8k1zrF1r!O|WRdjc9#kl34ZHYM>hP&Dqwr$__WMkl{M_)Q_ zn1L#(mW|1ta&>B@tjzV<20wkflUj&Uq}@Xfo+-}~yqzdSMN)s-99J#1f5aCyhm z&mL3Ix#_$Y{#xpqs<)rUSm z>7}b1Z(gu&$ZOY~^lr^1C#IJ?=U#USci|~x8gD7KcFV#?$0qLYyz=%NNDc72UHKNjGW^rNmxqaNiJ7-Vbv+?nd{(0Gj9`bM2QiUV8qDou3`` zq4<1i?=b~MubqFC@Z1Fx?6-VoJ$gdBxZ}sW-UcKwOvgZ@eZYaCzb=zsP z?sPfVHf;X;P6fimp8n2(rW=>=gU3CrO&Uo%)0LI_&-P9y?^hde~zm@)3bfV zscntRza8?U?d3}f?>PD974Loh@p&spZrgp#Y484YbloW%?tkmqji*k$WY}fHZ~u5q z&EA?-)1Oir3_jOM!ACerqZcRrb9^cUR z?}s`sFT17fh67(eVCgv@|KYUH>QB1zfsbG9etOMQpiJKV{^^a&ic-$%JJ)p2uVr5x z{@$w8*z?c%!VbmHy!_dl-`)1<;s4rV`OEEpxRxvU=IqmIHsAW;KPI(r8+z9M2hJT) zx8Ijt-(GsiQ>V&>;|@$6vHH`mxi3HK{pjUOV^80i{-k!%QFr}T{8`17*NrS2K7a9s zqvTzT@49I7!6%$_&{xaOnXvwruUgM++pv1qXERSM`}bR2?>3L#e8#!guRrdnU;Ni! zdEj&JFD?4z;c(@Xn+`pmt-WCBZJ+%0zQ?!Tcae|%;QZ>;kC(1L?ZPNGFR|*h^*1glsQ+d4*{^SSLbz=EM;9-+ZL-~R?5Ux@ zK5@yrN56P-(-rGuH-6Z1*>%@Rr|o=eLw#qaR&>rgciYhuO5Xm%9}COxS}|(jt_!Cg zIiFv?{*1X#zvTYYWXl%InUVK~h0eKq{bTPY7nJ_t#EL^+{+;lfv^AH3|s=`E|a z-26cS|L^@8KWkin$HHYTZ(lNX@fp`0`qtEr75ndC_h+W8ls1e%VU~Z^mtP+4KjN;s znsL|NP<;6EzA+~b-TuQd&n~Op^rt{==k~9L{%h&3pPmr2VP5a}Sr4O`Uf7_cMA8^F;7kv8S`yKauI_{~VBSszf=}mtU zCcX2o3;x*nz=1x`6?1BCd-bsW?)v7ii(Z;^&&>3v)`EL(eQws_hdpr3DK}m0h)o>2 zI<;S@q-M|fyRJFGf5+o@e>i5`Z70`WcbM(sUoU%T^EF@Hzb+C!boHi56VJQgrJDEt z6||lZIqcz!*<&gkM_-oy`{K6q&s@6epgDsy|FYC} z)>W^ZzLGuqZTmdwxstP1Szj$XN51jh2M#=F_o|at{d3*f4}QCB=}z|Md7eWLJ>Bx` zMlbVr+r2j|Kjb~z)aS-GzYsq8tX-~aPoB4PIgjKCH37f*IfFW7p?A0ED^Wx>{6eXpOp z{ldqq-LI9uc|zr}r_QX~^|xa#n&y3~X!6hzXTAH)miI6D=GNwt;eqB;hwi#!?$JvQ zA6?OS{<&}cm}qw1dBvnpPq#O2KJ|)@3wA&7Xy@jO4xf78Gk4uwzT(BBrv90;-m`4h z>NU?rtDd**_vzHP%b3mc&a0jB+a;gue75AwZ-4d-fA4P{r+jqntkZU_-n65Ff96%z z@xqtv%@@YsKfls_@|Mk^|LHv7s0m{lIyX%`Ev7;y4vuE4SGd4YTk$;bn*xJ6Zd&z6f%*31AzJhBWv$rr5Tj=RS6&Z(ZlqJ%79Y+he!CdDHp_ zX4jr>J@C5kPW}6=;j3QRcxrTvEOh>9mHV)J+YX%Z@7hPVetPgHvy+#uKmXGiMGIdK zo_63_pV`j7z2@E@?wtI|>sP(Cs%z&vyT`sT`q&AFpI`m)kn4{v|KYpz(#Q938?Rpa zaq+4zu3Ww5fYf0>&AVtq>FFD<{_D^wCELWUGfvtx?1Gsi{Tp}O|G?5%-yvt$GoKXQ zIB8Vzi4!iGxAA}rum6X$Y}u2OKm8=tw&wox?I+y!?ZfiYpWYpJ?(9<@Yw!BkF@JVG z`M`TO{q|rw`F7)9*B`&*(U)sWc0F-V74yKE&)@P~yt$?Lr}Lv{|HXFa>eb0>FS~Th zA)nsbT=zubge!dGe9!Z%Ki_f3+RHCbu6upN3ooDl+Vhv4bnL42pI0uq^HcBA(nAmZ z*G-Id?iG*yahSXA@DuKSeDhjw)z{m z-uBQHpZ#m+@yW55J@|3K&f~r~fBK8e+Uq|N|26iWDR&R+D_il}(Z$c6aM9YL_g_8z zzE_?uSvmf@qo2Bd*VmhGJn@qUFCSL;&7p5yw$OX>i6^bxz2LsaGu~UAel$Jgji#ET z&pPChJ5Mfnecg|X3!0}6JBZuccGZfC{R-}ScqqK@H{|GoqYDl?=%9jTIaPns#+%0t z*}tG*_dx{(!wU{5F#jh8;?c0|2=kGkPfjF%d#Qi`C@d%}D1Zv50RUt1Lrj%x0IV1d z$D$EAl1!8uTgHms6N_&;dsRWfL&NtkIN4M&WUeUiQi&+XlO>^GA}L4YxMN--8`#pq zTmN?1>ir6~op?|dFwbo!VDJc|kxF9ms3<2A(R{$>e6swf)cyMvcwmetnSdSJF~kT= ziU$|S@e(a153CW-*PXlK)`EgB<_sw~$^`43Lk=*)3M7*;DGz`nU!1#P<%InT?)`Nr z2yx?o4?kc65ROVgUl6*}E%zq!0GjMMeA^9B?K$}0W&*Tg*H9y%NTR-mVyRg}Qco6#U5q@1pOr;Z26YwaRfoRz667pZ4&huR*=y{R*;%c;t`SkQ(_U z;JkiXT|Pkfw!Fc`pxU+Yztse2)KA%fTI2-0CFIF4&QSh-y}-QrUOT{g_q`!mBiv#J z2gDSPB})=8!k{SU!ToQ{f-CO6ub`l4%Klj+yzDOr8X+YB-N9(2B$159^8xy4hS;c1nNx$5-=~hhPm00rYVFz z73n+=tVQXinLhxW74ZLYCRo$Da$(`f@&Ng9_Cx!np~`aj{|_c0e?2`LNNbW$rnIi8 z%&|F(IUZz!;^z@c1o&C9G@B=1#9sKySFoxcJ~Dd%ml|qGuts5$<%mCrBO;LXTU$Tu z98yp)26+0>CLm7+bRfPS%EKHzsZchA+n+h;>(_=B6hsd#C^*6dp`%-ekf6&tw*%qh z51srGOu@GYWDACQ^A9cvMiNOr6mrBR-#`-OU{l3&5(gK=LVVH}jfYDIs+Kil#%eR` z8ynlYdMd}1gcA$I0ipca1m&XvpbQ}9hFrhof(LQ@mVyG837|DOD1gDR98h?a6bcO< zS!HJ)To9KN(NtWNb9&{jvcIqh=61+o+0-%HSWRBQhf=s?>Gby3u$elJJ>LKUq*5v* z=c1)_;Ro-uLkAA{pMrwpP1Wo2RZjvI@`-ArYIBMS%oj`YfJw_ji5!x{fY=g|7Xx%) zLk}d=0e_AJ6mEDL23arxrfkung%*p=7mqHKBR02%yg~vWi#bv;3DLr*l2OR<@u7sw z=4Q(gUI@ujb_pRKO($?Vg9(`bURkPhIa?c}z-eVDT9H#MnvR5`yo72PkBdDKh^A)- zlVndy;ZI z!iS(>S^uRXaylK1K*#eHi~4*}Qtq$UahaEJ)N)c5p+^&g@kFv3#wmvS8$*Kk$>bSu zu`isP%7*z+nvd^uo)R)27X!+q_FpLEOQd44Xguji#X~lW+hVij79vuaN_U{nR9Nl; z`U-c6aXt~~7j!@dP6^a1cGt>2J{3w%pgH|jNb*9$0V9hvMQTFPM8ADDlxvC+8aEY# z;R1GWM2M__%!iTz`tDFwoqjMkK+RMPX}Ruq*Hc^cAw9IDeotpZQNJG(L1ZPOA$d@3 z$D*O2*z3T=)|3zql6m{jYc`X_YJHWN0muuI(P${)fTbFZE8R5U)=2aq_K|U5Ru@@o zQYsG3b|F@?;o@SA5P~C|s+Lx36`@`N%DS9+3JRg9*o`}_{^r(DmXIXu6=I;23&Bt@ z+3Sb|{efhtcYsRjY~&xFq2RzwG`C;`IH<38dY*MLk6*wi#CR~4?5EX;oJ>dK-3o^- zQ8*N6;i%YULsJXmj?EDZ1QUVY63`;!F+Pzf34uPA#Fbn&dbCiTaTS(a5!K6dMnkvH-63!aES~y9BbTZ!Sp!gue zFYCWlKRC)Q7?)-u9fVvSTsW_*utr# zGSWp^>=&0Z6_XAr6^`{oo0@b58jr_Qk$p)kkiF0#kwGAWcp;ifx`hxQ>CTZxv}6qC zW1kWbHH{QdJCubo&i?WP(XgzP8L;K-@?ENy;s}FmB)WkO$tf=9RE3o$HAQ9;v?W|l zM=+9%N2j+m^w%UJIn4KTQBzhIWdmJ+$1c<w{xz$H%D1*-`o`aLL91^k11I*+=bsW4T1+iJa-|Cl(4ngm>_pa%MYbvDOAWPx~<6W)C3y>1O8&x)+TEDHMUg2OK-`}zdX z9Fh#^0@1Vu2;R~L;OkJ#+HG~M5*FBUSrYWwVPibJm8*`& zdBTvAQS4(;5u_=-F(lggcCnKa9Jq6mnG7qy=u#2dUCCxuhey|aQ4#&+VAvo?y!ekh zUvYmZD)1pM{c&S4PoX+yi;SZtV}^fWH)%(#3Y@^R6307Wj}c7TZ7>Md$2mQ|agu`y zsS=mRS6oczAizoOzD`fT5{y`czCOFq9_Zv2Wf%{Dfyayl`Fg!hj}MY1D9?#@AL9vF zIbTsxBozu-xd7mWw+pPqE&@fy7xbs%$XeW1Cz}QlqdpV#xC0p`lPQ$#w$@~v=uRpg zagE7*(#Gl&tC0`y<=w_)GFlIe9y>r0nSZ|90ce?a=1t-NB=2DWDqrLRdXkDcfnoXah>#wP)7!Asx6aL6D~}T0Wzf3sb7Z$_}23 zwDX;PeK8MtMY|PnD^Bd|gTYd2rR5O&Azqa2rFOg5J-4qTQOvaSB?~*5Qh(mjIg-)o zG2j6;d_uM}diA;O9f^(}-q~3U6>T;q!@yz?R0M!ur*o zJzJG>s%wG?g)IH&^EA z9+#ct=?2CTXzwm5>*Tb&_U=xPHZ58|fEzkM@eTDts{vT;jGdBI4B29LB$@{PMG+t2 z7P&^dZHj${GG%xXsrtmaT;{w5!9)-{N|#WfZ(bX`Hg24qw? zM|UEU6v-q@78G_o5tG;l9Ag+1CkrS6Ahj$Y-z~5PLC!}cGKMmQ9EpNx69X1L1cDM% zjfu*@FuBr@?27{t6A0yoRK=o$$yiwFE^0{7GU*YPR!kgZio`f@Qs9<2N+;%l)+}q- zjLSYbE=NS#5+cq3tBj5vr{0o`q9j)4kz|e`nQ~8zDD!k|h#i6$S2-nus!pB6lw&`e zX@w-Cl=*YHDvGw0i&1wfHZJ!JA>a92j^Kdzus1)Cf*d=Oap%pQY>$c$OyYdNAhC%_T80s5|873{1}dBA1w^jL+WqV92YtrKq53Q9nC zCvq}&9&i)&xtr%&WPe>x%x<%HbV#EZ__uZxV`FW8XeTsKu1AUz$Vsl7cgQ`mXm4fu z`q}{~`P<2+xR8=Dk2mEI1`cwk-Px&hx~K@=Q~En20QGeP$6i1Sy3`D>(;egE3AsL! zv|}>saxyHbo3}_xDFV$akjm6zw3hZtN?oNO3{X&jZK6are;a=;eBFHx#e-!)n6xUS?66>-CUv zgDB3VL6y*3T&PoBiOb5RHNnR-2B|Ib+2qBmgO#`t(GXNBvN3L6Q7HwYN%~NGl!}T( zhX{Kk`+_KNIv`F^ELk6GYNc9VX$$SPU~>TXd`wZ1mApkI{h60+#)=b66`PPB+5qkN z+}r{swSqNTK|5sDkjVT5YB*ObsRhdPl1PvOb%Wwa)t;QdA`RhDTR$wX|tb zNp@4Z%M@aTdLwU#CToj|{0<^U6@X;MMNUa{z~&aEmnRwT1x*>Wv5d$k#eiKv#aUF> zF`wa4OSg+0qLsl-A18W6U=(gx6>7)oAYJ63>nz{P=b*#>TEQBj>2pun!oR@2(*qV`tMxu-fr@`!`>YV4{Wd6j!KqoBcKodg6? z*VhNVsT!y1{tW;P((O~)Z7xTZ!({_bZg}CGWCDFuF~~WqmA1o?x2UzIrM|h%?P6Qo zW;fKq@8r7bTKK7-*it!(d}+blMALW|qh5wRI~Sd=$dDXezh z5rGM81YHB!XBemglFK=crsMXN5xlS^NF@TAkSAF)h=swhW9o=^MEW}7eH{^ostt@= zsb{RQu_3Jm8^EIvhFB!5M;IkI0Pvs3zzf_?HIci8u53GK{05d`ku&%X2k;g4I8#z*kN;=s8Vejh{r)v9bzKU1`D1P zOz}lUHfqk|P|mdhP+NUt^Yk{Gwwicq62;;Rptu!uXAW(pYQDzXU=pg6@FJv=GVWSD zsvc_0XaxQQnX0UXt%?A8sVt&rnB-N=uWl5)gwT2b_3faB*u5MmDDby^uB~&FjagKd zVMdYX5sV>kWap@nYTigauYIna=^WKzSAH4H#-|ZXsbPbLIHD6Sa_yZSk)VvI%so8A zW?L>LLiUOd=LYS;IZh%91u)@62q_U%XyC8Pi&X4lI@vN#Q_E4^raT_EKBg&T0UnFQ z#M(SC4;jXTvpg>vjMxooipW7O%$h?C@bT)TUDV9Hj8}Av#gMBjV$&(LP?KxkS#N4? zt8Z#Vkxb3891@sPit*Y7KnY94hQL}~3@md&>k;D?2t{~uw@Yot?UL0B4ZDmI5)ft; z`}$y~&HGVmnXQ6IzZrdgdU?bC+tg>T)#)~pu9pZb#a3WKEIIiWKtX|Cz$Q4(OTj2U zGj8B)gkTqf4qzj^4Q7G-V#jPOy0=6lpTu(ToLbMog05kerk)=z$lHh7uM@2KaH=qMRtJ6_i(MYohNm&>KB?h1WRm_Y?by z4CE)Fgbzoe#6HCX^gvL84T%Lw6L@l%SjH^DgyQxmOVpGPDPcZl2`1%m0^JHMp=dN_ z2}83%=p;N~!;xqJ@GCU*#yoA46YmsO=4sg(f1G)g7@mXRifn=!&v#4jR z@PND+9!QgDP2cxR!L|V?6G>cUmMl4_fQm{Fu`bY$GGzo(Q4t|fDt_ssewYxp zyGFCNI>mw(Ok`V0Rc5I-06TO_!bL^-NSO@7K+Qe_HTxIGYXm$)?X9sj)~ctDf~(IgTpP zHgaeUg#`29ltz?n0+V#R--0AJV;E_n#1w-%72p;kW9sV@J-i#hgzPgI2JIm@UBHP{ z3z~O^#>*uZwqYeMqCIQY6f~=KkDFn%q64&U)W2sG70qbx?&QcwC9YdD<4CaW&!Dwy zoDplv_^I^n>%+bV7}K;6ZOq5f97X?XWfo=Z5=S|+54V((dUWFh61PRkaVBD0JujjsboP*3tmC9s@fTyI%ab1wk}&IJB#ysW`dl8@y_b&v(6%lPb)Db z_w^ay>^7`sE5^c%b~ZNKGgFg#_SxJ_M`r)cmzpY|NMwu{69Qm7qugH5nfD3?1;So$7k%_{hzU0G!Dia zbXZBDNOco!AVHKJBIU6lbFGqz$4Ys4tZ3q~vPaZ;ED)iA$6ECqRBgOS(464LAFo8n z+f9FvnHCyN&#IS(<|ja8u_kQh=JAD)f~gE;5b7pUQ0%$c zY(tYu^k{#b@G~DE4FLZ`Pxxd_)!e{Ff zbpTi<3mP=Y{28bjAuw%kZNQDz*@+7J)&Ayf7LoB^>Joy|JEVylYQs=cagp0Rg{ra3 zD3k{6)+S+~l_MAVwKA*=2fuq)2wwwhDS zfDgl}4rmw&@SI9)h7KSqi;D2Xs-H}QqNp1{BIJ4}FmDO11wP*G=hc1(`26~qK1o3n zQydiDUH#!*K+Z=jF6iEa29`Yd$VMqLap-^%P4j7&`giaV3=TcKV{+Dewu2AfkAn{n zIg<=_Nwb5Ge*g!c09WP-< z-s}S=Xg*-#|A`NnnCk;3_TvL4=JNp)K`qJW111jO111`Lz~Jr^fn5JIQ;*7ea%S z0&z@5)o8TdVMZbt>Lz7C*y)qjd7~!AT4nCRrp6ul4V+bOa+drP)W=#*B#)yg9uI%#*R_Ig?V&Q!a1)L z^!`LcAnH}HqeqVs%9OqXZX$HDeU&1%MH9t95c^qGRbD2FG%+qq3Q)CJg3LE0%2ick z#_~#{%&YBG`UJ63X(xe`q9CfGvRqO-M$#1&l=&*)k11WwPKQM@KNSroD8fZqa?x~+ ztf~NGQaL2bax4~%(8+XFR4GY`?p|%W1UiGku+sjRD*U6Q$flI2C07w@_66gz z5D$`-Ae7;MkQPE>(-xu6$NKQ}N zx%UU6iKGUxlCE|nCQ?xvi?d;*Es2MfglTk8l}`MFuPRMdk_ja5y)xdAL#mQ|J|qcc z+-fEC73-Dcw8|VvQc^?fm?{Cd0r2M_AED$SN~6WmB2Dw-Fe;D;VX(mk(ReRK2?3*$ zuFoltse}q4egPhh#F3iD$YXrGo&;!51ZY*KZ#1T-BkE|ziatWMz}ut1f`UFDAxK0# z@}CgikW{9Pm!wL0jFP7D1ZAK!kuF+US=uB`!>ooXm{MLUQ?n_OrE>hErP01sIc1;} zJu#=ChDTwH=u*s92G@A5sWBl0)UKw_BJo7GaE_fC6d~! zN+W0h=od9~EFk$t<7^OFpe%ByQ+b!-ynr|tD&;c3qd_e2qe&r>K!@b>RVZl+_9Y(B z43J}>5gA#LEX$QRgCt#D6(AL=DruS#gS-z)%QW4HKM-wBWZp48#`p3t*ciotPXY|Y zWL^x!Qa&FYKQB~aT0BKKQRV1zpfqifiB1tHAr?v@swIhcN`S0bG%ab2U2w{TTs88k zRB)&co02NbOs}f6pnyXW7mxPx>hh^@jj6&ZO900S$!f_;p<=YF98=W=&R06emSI9f z(%|_j_=+*mhH<^imBMJyfeImwL?@tYaWo<;5tJhUgFt-05nNZib97mmgbASqgo(mv z;SVI37=#QMFcSM1el+2eCVl}!Mz&>Q6>3^UWd%GEYR>8a4GU5YtfXR0Wf{tdB;l+Q zJR`GD%7pnk73PadZjvAz)B>Lb#F2zeQ!+|rOnC(i-n7tY0D3=J zN1!*B#C95@1iK6j=nj-}UZqHC8Z-a%V7UQ@T9jHZ8VBi)FMe??Y zTd@fL|J%iss6vGL`54|ziSYegO_2>*LiVkd+`B2Vb~nY3cT>coBL6s_$8WsA>ZkWn zVw|i#rU$y25+20GloXey&Updzy_8-qOw(ieZl$EMZl(0*+)5F-7;oSAofDQ+&Re8c zzm}qcGTlq*HQh^rBACzi8ZV}Z+Qk%6H=@RrS=4T(2=r!(KyIcO44XzTDs6^!qUk8H z=P}wDOz)!EY?lFADjii=Xu%`IY4vTEhM*`%5;COJL}R^iq<4#5WGrP)=U7WkuMl0B zvNZ5Qg0<8~L`QBZSD9r}H0lq@G{4Z&jBZTSA`?tl0-!huy%rEK=*`4he861MW`tXK zzs#bgg^%=FpnnOZZ6OK!AoMNbEh02jh(&SLSrSoS5`zel^K3qmh>Ag;cv~sQ_B=g! z0E8zjuy$pOtyQT3BnYh(T0lh#;i)iYs(F@lFd0BA7H-lo6bArdp^z9#N!SZD8#LXZ z(gaj5v=9U&u=A+|3UDGF#KZIYuZNWt>HC<-|o zofwVK&;<#%LJ+(VCC38l6h}z3EZPa2g_u6KN>(DkL+=GyK^in1j1*dU!-(S80X#=c z24Mn7_#PZW)<}_Z+9uaoTAL=e&8%*zv(&d*np>J?)YsP4T5Q#=@NQ!*Gwa(XH%)J| zK#7*>#TLrKzRRQa`P^p}r0h>lg!+d1w%KfBSM|n)MBZ&G*`E@ z)z?gKsBW<|Pj6{%YOR9~)B@bb`o@VZ&`jO5y2dsKGz)2#x*70dX`Ni%(12|fTB@hR z09vq%mYSyK*)8>xCbwB8H#OAOLE?lu=v(!KhC137jH{-hx_%mKsjZ$?J*ke=Y637Y zJS;~$Xqh>=4%4v3YWQ1&K9)F=nx@9K7I0|MX%H>7b=3_3thEqp8%sM1N0l0GRBA_A%1MQyI|+C= z;iAtzJVbRFRIUW!e@Z!}0?#>hMw;ZQD*z9241KRsyne_ofCv-DsYk{h0i@UhkjAjq ziFXTwzIybG*De^&s8Bs4?GmS|lzy|aqho}Z_%2(~sl244!_mpWdq>A8kk}n*l2FXJ z8Sg$y^mTNU!e97tz~4T%8=j4IcVp<+XRnl~3va5)a}%~MsV zN4r4DbKO}tC>4i(?lI2D(Pslm8lJwLu@(ba9a*ZWDsyo<~WC zJSTvk1Bn1+*iVCqKodP4M!1zil^#WHAh}7oN6#uZWhr5efr*v`mD52yBT);FH5Eqh zX`7p-D9*xeveeE!0v;=!%f3E4U(8LQ z>Nws~(C!9i`4OvRFc1B3O|G}pt4ic-qio8s=6T`SZNtc7?$Xk9I_*f8lbb58s;a8e zo7R$wKgfM7xg4j?zkT2iXydaf%S|lC`y9n;qxv0YvS`#Luix^cYv1KoIveEe zHFzQ+74axVMWdcq-42yMlJesu*ezv#Dq z6ra$(KJ1>`IFzEIDl2D9(6H{UF%KHXK^<-N`Kr^0hbu`PSA=-?yErYXj90(NBPh<_ zhOMwi)aAWM{k}!i`gxG`7%|F#G1dLB#AUqCp0&3&T+5H-UdyL`s3LJcm6dDxLe{l> zxs#Py<1OonIU9IGBki3C6t?DhTEiW=A6oO%arv=9pSmyi!DifJZacvGp<#5qY=;hZ zash24D(StMq-kZ;k4p3)4zx8&99%G@k7-co_kv^6NJKJhStk!PzI`AOhP4kosw~v0 zx_laDul~Q&vUML#yY#DvTGLaEPEn{4>1`VvV*mG}2e`7PGl_U-L74&Pc+pE1q|%0Z z%?#QAy4O28)u_;AJ8!{`P~=r_wyaE}FPJ{r4cV@KW#hSQFDLInK4QoT2F^zZI-N~S z<9}yR3&eaQC>a7TcKeBKuO=FTU8xX_OLDv|8Z*AO;I`M8Fd>>uM#ILG2HB^S5XryM zR1y!pNRsiM6Watj`Jc)4Q@+GkT{01N0{y;}vdyT${~2#T(&WxX9G{Q}Hxhuz*GK^~M~I}+XjUYvcdJ|}D?U{BG(AfOf<5P{?DYj>4YbwVX4G^JMB zXBq*fPf9C4*nlBz{GcL+AV71-5M4kTl)WA$R*Kt6)wNz#^>=1!2Wf||rK)8QHNp2n zOSQkx_})`&V^y`amzvyb_hoVK$+o5UFzNuZGJ3O&&$atBulMBG&9i_Tat4B)-;~~y zVNsJLoS=n)V^k>9eRtcKQ z7|@wjfS@AlxYE?s{2W~CtASJJ?W`fczup>(^wV8Ki9G!^bvM6A(7J12{dv1<$nUSa zh9doR*H9u)cgYn%AuBqPz)j<`!XpWW@JK-+Cq7aepBo^lmCuThG*95L9NR5q$4Jtu zYeAB<%7clLWaw?)Fi8`$V~_x=VAzn59k2wG4bBUKw!g+}a#n*eidYmdF<_?TB2@khPc&9bt->dpqX}}(WQJw6+WReun|{|AYRUHqmBN4OW@rNvY-q56#KNDYWHSmI}nO(Wa79z-T;DZsC~1biiiUG=Bav)|bECO>G3h^<};;c@_BjwbPj1>fYH&xIM&=r!HfSiYq z_clj^u(!2$I|v*{Yg=_oTUT3CS6yQ*h+xAJzhJ&RYQP~*h)$aZ3zh_AE*VN%L0U7| z^V|sl+)F0Ak}?^_i_;_$O)QRHb*Y3BGmKow6)}j4*1ATHx>d-a5t)b@_FB9nnvTeE zb%h|gstS<~V7}5B-aK%lrH=Q|tKJ4L4)}8cq`h?O>3{6AoP~>+93H zqjSH>SvnFCD2kGV0!&ensHc!?zVxI1)t7y%PybE-vBJswRF4KwT?U~({dc|3Cht=_8bEUyg!c5` z^<2|W)eSoyJz8K-RQf&F$)S<)nMpf(w)?ERbO8KIs6stiesF3CxH z0&-=pjK1rflb(_hMy;G)amKL7CeaiU^oT)%)~GitM4X<(mN9NY?~KuHB1NP;YbYx! zCfKx~kGO}BU$5Xz60-$V!eKLPVSwH#v^nW342F^exbWV4ULV) z3QE)=vYDV>3j#SD1e(VvU~VCQ5u42|sBy(e2m@{7LIPw=gvF2yCP~0C{UF|K6eN2j zkx_f3#d@tGK_EyTXg>Jn%{fJOo1(j#y?EO@q02OC$|5Ohaaqm5_k?237-E(kTvute zB#DbAwTpNX$a|=7syWoGvfUDKCV5V3FDVf_jnQTq4|=7Lu?ohHXl$)mFeqqK451tp zpAtboywjJak;!DQPsy-8374Xg{zx1PJ4Q{@0{-dFTcjz`Yqe(cFUFmn0*nlb8qVG| zPRweY!9LMjC%7jH3_XvcQ4yd}#4cjsM)Dqkj(R2fjOXIO2&Wnk$?8mSbHcBHu&l%h z1R52!c#iO@Ml=%eYj%XU`BVWVgQ7f1Py?)>cL)y{!J;rih0qccdfRB6MkvQZUA?mT z8%BPly8!yialZBd(1(YaVy6NL<9L&>m#|`doIitA%q5A-2}Y>2(s*yQ#lF42TvRcXty#L z1k+rxMkOWMj7n%?o;I|i`5F=&8c~w?Zn+JcC*NyAOm?r72~@%x=AT=K&(37^1DNR) z5}iU)TE?^byjZU{VV%$$37t4d3RQ?sMD~GdM}nb1{8`lLCj}?+c3(fCCDd^mV~ZNN z7zebMMZ@BNAl2dHuxql45R%0n5t`+7npHDQe3zlLZ1i@J)jjDHBlZl=04Aj3n!(vK zaDDv3kziu2`hqhPOujjr{NDr5PR>69GJCn4iX>4=P=f_oZF;~mWBMp9z#}10;|ade zGc|vZSz&-6vw{)URJ-OJtf}u6uw3RxvZ2{4ptb(4v zdyK9oJo)w&x^xgp;3Ez@Xm|r@?&Cz#ut&K?LtlIx7wGHr8F8Ef(H6)~@IgnpfP?n} z#fvN&b+9c7I^uSYiwJfKo25`0EG4P=dJV>7_rXXZpExaoG=zUWGDoiW5YA4#uR$mA zFr*+1gp_0zBY&fi}8hTh$7^OR^) zq&$S6mxg;#4aO~u(tv(a*8zv4kh)TDaEE>%P zNj=7kx~tphyWD7Uy~eIJAw5~~6E#|)Cc)sx;M0BK6;D?nbL>8L-D99^Lw%#SDIrXQ zsgdUdGE~^jcm;q0Xwc1>I53k@Eh~6EX)dVui2V3DtLCC_?#Kj#Z*oV(Vu3w}G3J!w z5YrK{F-in#QpkXbX4O;(jTrW*r)kN8F}cNTR7GZ{4b8Z0rh1EExikZd0D1=ZP66GvD4Su+5BNbxt>HbI2D#TO#&o@}OxNf(da&MP@`|)kdOx0(+9U zCSs=d&<6(7WXKlrDq|Cg-|3+bB+#L~9`&<&yN}7|G?>#gATGOU^PECk0!Fq1o+<-R z1zwLjaU*G0)1;N1qy+kO6ZvMRhdyYY$bR+mffCu!9pH-V?E%JgWk85VLoy%1Osh2~ zSJ}2grXefu&4T(+NcQ8ct2ka@!;o*-KN2mJS_y)QXavK;B06NUt>Wzg&=dOlWTIok zTw%at&4QqzPgP62T3L@e%weMA{3q7bV^e`u7W(>}Af(}u+gfo+PwCKyPO>Yu?kpxG8Pc)?? zYMfy`+POj~%2;W*FQ5)Sgz?~e)p%MsaunV~&Kky}j(jFw9MYM7C&y>n>^3R5z{ZYY zUB-*4Mpsc9-nz7f#z6NtAI!oVffSlB> zv{&FZG-zI^&A`cVrOFytqVb(&ypw_7aY#ljsNiAvx}Xm)L?>m~aPSF`0kRYnp@==f zAj==D65_{OBC6T}$`}aySwz^+>YoWKIy}mHEjF`dwxBX&zeZe4F;+(;$0|7_a7~2+aLa+)&0r|`sq*|a(qv5V1U|ykj zB@zVPmrYVayohXm-U9>;J3>~Qp@iGUD4Kjk zo)*?}vZ`hH=)(j~S=kG?5U7&gfLnR50lhPp8S#5Gk$F@T;YG71GCjM?)T|`#OC!-% zOFmTu&t_pAi0Gn=Dv1FxR+rXLX1ZO|LxC|vj@6ZaDq5&>QU))9LnZW4KnFJIK~tHoeijg36n0ZS$mpUQ#M#3_81k>8++ zK-~;uGN-6pBZIkqLT|mK#uJc;rBKGxK}mP3lH8KntqS&+bn+AnN@+);xD+?K?VX+) zpa`?LCI0^C*6AF_)$zpRuCLFhe6ft^8jeIXp0q~rkFh)1BSg6* zaxHXd=tn}nwSv2v`iL(W2_}1q14N18O+62?p#v_=r9?WQonTQk2tEg8{ro)oZ;aDA+UB(4zcxA<619*ucGPc}|juPINL_*Dvlzh`J zn&hh{cJVwJ-A@c15R26fA0>%GQ^SIc0fc`~%Y1(=^VuysSzYocQsMqqhJM1;sIoMW zO-_(tP55O{*+U-~sTd8J`q{puYY5ZvgK&I=gq0kKw6xKP>S*XpQw<1)hPSqeA=v4W z#;Mx2N76t3qw<_I9YM^$(aADiyA=0^!*s+ zqZs&&CXeVyp)Md=IhlMx42UYq5-$c3PqK@Oa*j#t44a@wg+N$VTSMq=!9 z1w zy+Ng>wLuu-$X-<;uq=l^Jyyv$67(TNf|e{&ZsD|xoh+U(39O8^G=}wKzhpGA$Vi_- zkukl`6UmvFpPV?cWanc?#K(ENpMgoDM^cPGD+5Y4pl0S*K0@DLeeD~Y3Lv{ckG9Zb z!>?To>+ACyFNrZEmPJ38s{Bk*C3FimCE1N>pG*Q0DU|j_Bbu$S8AQ49#KvYgrOC0< zEc$(Bn%1NoLlcdMm>mU1zo)FPk#5oSEgtO*-D)+uM$Xnwf)Se{s!TL+jVW}EekTYr zkQ8Kc6iV)6h0wr(;b7>wXFw&I7_vF9uO#3O6uTf-G9Z0vdiRj=hYua_9-9Onm;CfQk5Y{eGs(3T5DCWb(ZSPUOpAyZDRtkxK_ zD8|V!s+hw^eahj9+%2%C&1V(St|bcnvrxqfTE*|#IFt|ihPkvu zVAJp~?+JUuFo9{eAOH2Fy^zC&;SK)vz@SP>JTcWLLnqb3?!j?0i%N6+K4?xu6cV0+ z&O!sp=6>z=A;POe{qsRZTWnDm1RCl?gJjUtb52W33?_SH6z!b8R~Y)P8j>gHS(W`6 zlJ`-T7>noI!({Z~!AYu`9Ec)reMEzF5C@VDgb@uS8_>w!N@at>eno@b1-M@LcaqY+ z*w^$3_QS{p-1Jcy6LMD|(+>G105q7LVR2js#$ecdN%tG{TY^?9&wPlU#K~_9=9- z#4pBW@{2*!nboPqQ-T*)MqNBWF%d#Bg^_)c3>x$l4HCcaO#Q$WCqU`~XvZ(2kuj2Q zeZoc@{zdIgDdf_{Q;Jca{7UpiknB++>CqR4uydHLn8@N&wVj4`WMDf__hzE*9HZbT zY*)G(d*Oi0ijd5$Sy!x2E4@GK!OJn=3s{^ zcpQRuZ>c^hhtUcHYi!@uO&E1CY?L6A+&8f0SddJ&cIpN9l>gw?4mF?>N`cLrC`Tk7 z&%|m4HG|A)jC4aUke`_7%Au&IEOlRQ{-zs9YG2qOX-x~C&0UR$Vu0g5gWgkjB>g@2w6a`xRXiPhZykaLlF&Y zRiR5wSf={f`y20FldX>yo*r~Hm<12BXeQLOO$(CX-Sp!UmH>WqArX|w*D?g^o~iFA z=(ZtEj(sWNEg)w)WM?8NUq7Mb10rgs0Q{O>fQ3;=j%rd&Cb!}oJZxo2`3$}NskxuY z<2bQh`;M=x6RI&(inrp8lUOun2f9~&$;}ITQ;-BfF@hSnnzrN7uryP1-@@qgjw~eu zU6Qn-J)&{8bR38nY}@SN%HuaNy5$IKQH=}4!3q7UqQut;bWMYerdOmV>pDyugV!wk zfvRXZhM4U+^~=Wdd5^rON5oJxAxoAJHO5;M+l%RY1mxVn(7kF=+kOx#VkK-MAlj1@ zV|bXNG%aySeGH|_uKp%}1x zJ`tKx9!$iH{M~|Q?4;KT(8DR|PM{N~5e-A`6)%EKouGDC(hp)_wJPrOlIlJ`!e(}L zpTWn2o89JCkObHwiwQeFGNsN46d1{P z2$9*)1;OBjKhidm#{IU9w7CV2Om~(mzIM1-ERY)s)`gUf^n*}9xgBk5WCP_g&R`*I zF-6$I(k1LsQt9~>Fc3nR3evK8iAFD~*98z+f*2hnig+?=N*b&NMdcs#u$chVh_ru* zy%Yt64CV-w50FV!zP_ODvXu+uQqM0I$&MgNiS*`EaLgIV=%+Q(rSOyWJ*w$0d??ZO|5UW{`b(!N`Oa za`I@>z{kPt)67!ze>Aj;^l5OW9`i{Zp@ z*_c+H#T3*5)8jb2C_NH-FEf6H?d5|-xdGLnszGn^Gg=%Swe!RlriIr<=U4PokQt>C zPuvTTfzVEfCf@~_VFSwba*p#e0sOp&Mp*&ez1sZ@Yt53ijp`1i$C%{|P>OMbG6f3ZHpp{LZ>SE#Hp+-b=yJ)ksR4y`fkiG<1P z>=BrJKHAhA{Im2#MK_|{ner)7sj6}H{_0YC>9jGKTs1ANdRp2_a=3^x!8pv2Xirli zL&s9B#wND)=>msWn74A99b}ycvN@H?nOtU^BIaz3CCAW*2U#*5U^Q(~)o-aqGc5LF zS*sO|*S+)UXm#OOvX?3kd9j;Rj|I~Guf=?|1+Pu*1+FO65BmB50RbMJP@~cAR7@k; z=`HopNyaVYvEk8syvj~MBsOB$j^J*EvWPt0$|74)wSKCH6kNXjkl{R$XH3Fw7HKVG z5O%Y4qzXB9rl}xkEBZff@e9SvVvQih2gh4}z=O*v&O zBeIx&vZtKD{3XXGY$;uwuAkmE`E6+ZmRo%Zn*i^3fVrfIt*ewUzp zrAX0o1x3p(qqlA;c4*`;KIfh?xqV*D83cY1-IN>)8>t{r>N*DMoT5F+=CB7Crob&LxJpF$80bLB z2C_KOZ$i25Ko?hilA85flSsMveI>njm2TzJJ`%mLuK)y$hR7#xl!$6sjRU2-rGf6& zPLFg)qUi`-)-7ZzwbSYhwY@1{B_P|nq>P8sS@Fy&2!V~x*{m9BsK?htJ4wf*XduuV z(>IB}@tnHfrr!Y(+kN;YH#7Rs_G&u7f=-Mfofw%+AcV;rP z9Mz4pyV_>Q{M?P0&42NX0Y+!&>ynF6YU1-p2A5r{f zdET$kK^20qOh)4EwzR*8NO-bFLm?YGQKX`Gl9+o%Yf*i^kC>G?ozBw40>3SzEtxzw zI<#GO24gfDV(yrxW0L9wAm)4{%pj0G7z#6pJARlS2o)&bjPiXd&E8xL%CzC*RBVh3n7&bl4aT68a(k?k7ED74x-^=Jc5aU; z+6zOyb7IOjK5dRsrS^`FbTL!v9RUrexv)1(A`~iLH$#wIIzzwTi5>4HvZoi#Kr)kR zm)mZh|M~$`~$owi|6J>Rb&VYhjz9m2G) zW@y-f^2lCZnKXJa-XJL5KBntchK_8{flepC(vMxpFl}=qbjAE8?RFES_+eVMXFLJX@BS+guCuNxCxuwG&tu-=|qz4h&Br{*#IT~)# zwi&K9))+W@6#fF+4O2}!b7SI?0^dP1#6 zz?Od&Y=xxAYz={JYw&#^v`)vyA~66v!Z?rmB7T|+A zRVo_2bI?;0dT=c?hLnyzR!K@y4>U{Aa&1Wt?CY;)6Qy(`T1hHSnZs4?#z#rhE3_9b zvO!sBs7jrFH9My;4k>wd^&M&T^AGKfy9IXXVhMc5kllBVs#DCaM@Rd&c++4~{)|Ek znq^7Rvf*d4JX`8?7$|Z0!XpUhYDYT7!st&I6J}0T8-k2Bp>^Eyk`hNH@Iy#Wn6F`! zTZa{(-Am~v%y93bj+Z~+*suWy(-9-+%V6p7&mkc!L_TwJt{*XC-g!$OhQ+~nMSq9! zQc>X-gubUGp54GaUtYbW4EM3(b!l-61YdiwQxTHn%tf=WOOo!=67h@j(O5j*(=Ncd z1&fOElQgpqIb;qZj6eusi8;?at1t=3O^YM3Q`-;AOyg_((ws%&%url_J8W2K#yV`D zQs|v_H)~4?7U}>cK}Pl>p&)nO!u+B_Y%tN5bO$JVNlqFpI5!IyEtyp?FTXHJGXGi1 z8h>qhb$M}lMY(&uIu|Di3nHK(rCJRH*r~PA0((AbK5O~u!?3}!`32FOtBp^)}H`YP1>VMJa@c{Pk%K%4H{Q|OUst}-bt6DKiSF|0Z9r8HW_;76|RaytN2 zfck+g*_Ixb$qb+w)7VU3UgIc9(mwZur98AB(L>#R)fBcQp+1jmkzsTalPY4=Ls|W2 z{QUJ=s)D3VZ^Tv6X(HX!T9#UzQ>MaRgzMiQIjLp58(79o5$_M?SB{LfLTA-!f6k9MZW{+WL;Rs8SQX~8Hq7(`XwyD>ptdd9ev~^s0 z*#)LkSb#O$njH0MhR}dvIcqX%pjBjeJlID`udFZY|Sl` z1+g{fFSSM^1D1tymv_MIHvRhSB-V6E8`sn7tJFO$hm}8?3u=ld2M6dXj7QryLTcfq z;Q1G&;0cuiKFoo>zlMa7CWuBch~AG-oWWgBC~w zp*jt!rc{b)x>Kh%e8okcc1hc9IVmZ47p}f@+rphbZP>sAnu$wWj^3!HO&(vu88@I# z#2>iPnx&$gszn1x0%8(k&j&3jnQ1Upa1%*3)p8AcAcE&F+)h2&--5Ak78Owde5-~- zOLXUkti(*bWP!alVo9;HE@UT*Om@~_>1rg?@^m{hyko|97j@s$5>ND@3JJ8BDSl1} z_nbQ%j7Bp-NHKthohTv}j9R1PbXf8@CQToUB#od}Uoaz|e<6oYt0-zlfq90e2<)vP zelv*;m&LMuH-%L^cuUOb8EVSyMXHOY9MtlD`JA2f!Tu-%QjjhU*V@kSm zfCOQD}}?kEVeoO~n?v$V*NyPLswnm80(o&0j(Pgt+wOF_N~*;L%4vM1g{8B1__A_xj9;DL=T&Gs1@_-l zbR7cE^wE}4dNFw8R{+sudeC0(va?0Yh!NwZ;)K%WAP(=PST>=LMQ_|Fa*U=bXT^F} z$hfH*N!sfR5?T1hF245xQ}MVdrK88H`2olomntKoOG%y1Pi?UAQpb$V%*<9V z|6QWDAiYG=>al5jpTNn&H!jJD1uqTXHW1qZ+7yk-Sz?!8DJb4J1)uv^LtX&a?GNbP z0Gu$n2-Pi*wpY{dFz|{jqFTJlPdm+F{Nu|h;@v@dNN1HV3si5dN}aNi$KO(ETU)-0 zJ|^R@9k9uBSk6e*DC)@REG|RK%Z64y1zZ58nw1Vn(o8ZXaeu5)lv~YtbE2Z66!Gf@ z{}9@ls3=+Bci32bmSR$RC@IPyk+%4hyF>}|6Zi#?F4vzB#T=$Z@jQvdtD?+ZSfqS9`0S7m zYLCtS{PibEi>tVQCAg^ylR5sza{nUk zUk0up56=WQ1Y8`rOL$x&_q&CuBhoK9Li~7eDd6Hc+y`85aQ(sc0yi1l9G-SLxC|a1 zBb5;gZYa2HDK6ZB`cb)ApI$v zKDoVxZe>a|Adizcj55vU{N-@oawUA!TWt5)97df(-9q{NGyBeqawaVLwz&TItz-PF zcZ{3nNa_}x=4n6tkG{==ZvSxOhBe(iD;BjBKIiXq>h$y!PNN zo2_+7V#Q7OUcFI}Eo-~aw!9v?J$?LPN)%F5ctyK+08{_?HgU-{s?m+!pj zM8}v<2d}v6?k}#o_|o@pS~}>(6ZdX-{1=_SJ$2&NO~2lq?w@6Trz6^#ot?V+$F;xr z^_h|N?39Q88RNg=r%$uC#~pXqJn#Rq@47W#-Dzkh<$6OqZIEDW@A2LA>9-luWj(-l z8Et?McGKrS8Lh!sUYY@3AEk%$4E5h^C@;;BZkJ%}w| z27D<$;+GrnPaF6fVW8(m16*z3Z;(_T>in~Y^g{+1$Kuv1HXiqbkue6+8(|Rrl*;d| zGy^~DK%w)a7@Q6CjRM7gfTuqQei;lb_xEJ*Zz26dD71*@$FX+O)q>tW$|n$iEp(py zIsOMw-}L#64uoqVeHe7GdpP_Rlvgm5^;?8D0sJU*x~aVU2LRu66YJakV8&Pia0+y~ zOQTu(V*t;F4!D@(zXS-%sP6%&?@zpboR3aQ@;wax)sX)Np1&{T+X@rP;~Yl+EDSjFIe!ZQ zj=f3XUrKX-JIL=hJpW$sdrRrhfj?&=8>2Bj0}?u_M0qMk%1eQK9a8!c;O7q@-@kD9?~r~#YEPVx0+Kv>LHer_{x=}M zO`s1&LjC~%1qRbwIE*^ml_2yfPPq;BXRgMtVzsVXV#Rw06)Rpp2ub!D z8wTl4PQ^NZt+l|hs=OLj^Rt+pQRO;t3!MsoolvPMw=1PpuJTHEsZ!1T(sizKw*#U* zZo9H{F4{13uEFqP*B;bFC-R9VH5S)>2q_R$Es)996)Y%VT#ds~m2t&5nB( zD_fi@<<&f!)8p2F@=6T59PB^=t0^yCk5MHKe9E?7#H_N~ZT2!piA)w%9U4tBJi^Le zqEJdPVGVxaWmnj1Lr}BGLkJ2Z(^_5vb(fd&55p9ah!vWQGvjnwZ6!Afo*Xr97bI9! zT&27O@&mzE_Ij=r_G#?ZVWm1$A|fwr7DW+SeybH59n_@MR$igyw%OtiU$vKfGSs|eN7dnI@WmbHpdc{4P%4~m7+9V_A*c;J8Y&v zZJkw)N^C4!iBd}68z^fWYp@*X7tqLnXf0k(IEu|~cT`uCqES441zUj?mpEK5rMi-L zh>{8_6O! z5@l}QyqUAC<1)r(j90^1TC5tPW&?kKk@f5r-29j#jLE-Ey>w&3&!hKgs<7_YcB?rUxvd zo6!g6j-U^V`xf*;N=MO$&08z_FfX4(A2x0Q^kH7;Kp!??o#^AD9m?$q^L-5ZFgL`a z4-53(=)+<@0eui;BKoin7>GX10fW#7noZ~f9m(kD!d!+v%%^GS!@QY^KCD%;&<6%4 zp$`(8iaspvbJ2(SXEyq<8L*%an}9s@VNsBeK5X_1(TC|~Df%F><>H=jTsHamYtA2!rG(T9!p)9AxywH|%gfbT*d z7C{Z@!v=9b`miWyLLWB02hoRiYDOOxnMcrvT~`bGuz@bBJGI2y5feb2S+->#9vArT zI~oiIYY(}*2OdF<=?BddI0`aey6nKd;8Unz!QaPnJq`XIcdlg^Y-v;YL@is2a3;ZcDp0l(VH3evR2eeVmOwD>2vHl9 zHicj;x~vA_&Yuv@LwGasPcT+hb|>*qa3R9mh<}2y>ay*`Kf%ip-a-5mjHHx3LHrYp zM?7UaiGPBTw6c2QpWq6F8;E~`k<_v#;-6qQ!p+1#!AN>p3-M1d?gYzPiGPBTm9hZw zPw-ZRJBfdSk+rfe;{Qj4@22*TLjDQfM(vMqGr{*$`y<>y@OEl{gm)7BFttCzI|$xE z?T_#_f*+&yM|d;APf+_KTt)Dosr?aNN$^f;e}wZ1ewx}J;ar02sr?boBzPCKKf)%0 z8>syeP9S(cwLiiN!A;cu2zQ=E_#m}E@lS9wwLkGs@DXZ%;-BCaYJcLN;G@+3#6Q8U z)c(Xj!6&KxiGP53x5IvW&5{7F*0=1-UZyDCj)cuG_Qp-DXNAw(g&nxT-Ph;EhOCQ8 z4s3-OpBJ0K|5Pl5{rAPd-_&>a{1ol|B5HDHwaNc1mg{YZs-tYd`@JzL&g4$lr>}ak z_$crGgk?9Z*oWgrAcLxZ@p`O2(RW{OHf;3wd0Sci7x^i!E-^XS?A@QZY{fp`pyYkq zh<0yBX5b4*+_LW$!1tMZ*O|}w;D1#D{>_aA^f;dvCE!!qV}0IE3i*o8_~ys>@2mO{ zighO^*3C{%sLM<4?K3ApFt)BRImTy>MTWi5Sl<1aoYrfx!sUUDRAHQ`@T3p^Thj1v zO$z?aO|CN^q=2c;+)RN%b><@&s2YfW^Ar8v$FT0aWK-RS{ z1`;T?x+b{UcSlzuo2cKFfov{NDXMxZLkO%!7;l-V;0s)PK)|Kz-~n z76dXc=Ru&p8GNEX%Se4QQa|^fjCxd)gQO-0NlhN30I10m6aY2(GX_vi4u(;a$C#Qt z!PMl>p=$CpR(4v5DuSB$?@K$z)WT=p4<3wdP1@K-Mf{N$VacU}rba5L=opdL+kjq1 z=qDZHyQ9*;GVdc;IBwaG>J_n<)%?hN8T7Hjz=ZEn3HKIqCEQO+*dUbf3@Twmo%yH_ z{^urMh!VDFO4y<)VT-1OE!d2w!N)R5^txs|jWlll2Kj<22a*!{RVD2DFHH&kYn8wf zML7oU5V%HgyTJVo+~eRLTB7OU5ls(|XnJ@=)59a09v;#3@Q9{|M>IV=f(*3MKm!a6 zG&0bN47_{>CT8y%$nPsU0%^T{MJ<~4?5FYnTjcSK)^=CIB<$T^xGa3LUHy~RY{`L5 zUD#|FEfMpr-&;#{p>p(Gonv%lLAUo~bE1xI+sVZC#J25BFtIgJ$F^f5Gs$Ko5&Z*zte+MYa{!-(;QSlq~LA0{!`Iu@I`9FmEY8lW0&{+BQaJ1ahnIm!tE& zoB`GB_Rr7AA!dezQTK}?4wqG+)jN@Ra5q;}BYK~u5JV_yh++oZN8$>iG}5_2P!8oT z0Q5E_B|#ET=NI7YB_TYHMJUa4FsX3kq2T&-@1fxNWKF#H#HDsLT?T%2M}jYv$?EBk zU^P>p=S<*tN{_jNZeoW6lTc4Sw1#eS0mq7+2Vs1%iG& zix9rn8aCi!bw*42R7$?0Pd#MTBI}a{O6PXVlXpGhQ@kG_QVL9DM+7e&H6!O3`#Zim zOETY|rH`sJIq>-B>ovKX)EfLG_!*n{XljUS#Y{jsuP6(|u@VSg!eLsdw)#EDY-}U_ zQu!@12MQn^zlg~aQEdRzuq;PrCEtcMRZ#nkK*e~QVecRH)zdv{9mH0n{jFz!DVe%l z-er%h!0%1eJJL~Rs8?G5+*wHE^wjEI_3YEGvhK>3f!a`0@n7FqCX^hXZ3>gu_BA;(LF;fSW*`#mPUEhhx{`GeSNV#STz2a~@ z1qL`xPYaAXkSm-x+S!V8-G1gT8VfxEd&PxN^!-Q|!5BJBSF~Two~-TnRXXe;_jaLb zFt^y8UNjGNOik!B35;kH2ZQU9fy2QpCsVfS)W3sP<{~NBFT@Z285Ii2zQM_K=0F4w zb&0yd|EKZOyE4H;FzK=8dZA?8i5X9v z=c~1+&0cmuURU(-q>mcA^k#wf4@T>LI^?_DA{>0-(Z5+0_`hw+uK(S+3(q3lhJ z8vis{IS$K7BOWVqG05;FO+r8+5p*`mAHQyhU$&-rIh?aLGg`C$Bdo}dwdyqsp_g0A zne3jS<8aO*&$z1}Sum3(+4=r`7-wwIGxdv-D6SRPTgzLK$fFhC3z&Bp_%tKzA1807 zecz1{A2QV``f63!o<7sg^-pzc3DyNeJG8S-G=SfoWkucXeMdr`NZg`wn4w#q9?UdW)QslsPAvS;D{jgI6vN%l;+Q&hrm&H^;vbKRKRKi>xr2eIHC|x zA5Nx2Qvglw;g8o5nvPe-AA3M#)T8V?$yZOC7pdzIw(yI}p&b_+rmbx-D$l~G%|pv+ z!BeeZSMve>fru(`U7n1Dlr*kX*tDUR&AC5Q_uf8oGKnx({D;DmC5*F=67J9`pE+9T zWwOIRBgntWT*(%TRfxDO&R{aXz=t3QM|+f(_HVP5M8hW&_Jc126kS52+dc(k^cxN_ z?9rC%6@yP+m5_t2j*Sk*6L9Nb6KZGDakw;+{e6s0B@QAZkX;UvjjNu|LX2be0A6?O z6gKNq0k)f54`Mv4M@2C-@-yuy z5P);QYGZIx+1tq~p+OC#hvWv=<7jJj!8|f{I@+s&SVh*m`yuhd*oNP)0EGkj?~*p^ z7Ow4^Q(>RGX!mT;UC`v@$ivwq28Z;>8ES^A^!Oj(CTYoKK2gMNXC2LM7F$6~*rNkI zd9rZ0#5#VE3u}QqNit~X-wP+=jiOQjf3#djGbyG_B$C|PK|ZlxM^jEp_DGbucM(CRrVm2bww(; z=fg!Y{{c5)2Y}n~m!p9@S`y1y{_%AiGK}ne1PeZKbO~LqAy1^(}}EM}-P~ zBGy>tAF{}L1kE=5Fb4K8UeK+aI4@=_jqYGUQD~lTJWc$!i4S9yp0~A#TSVZ(1|8fH zs zazi9udazW!iDF3lBLj;=Ud*+o!lZ$MGhh~Y#&o3v#ydptjR4kORkTJ!t*I_)VDBdk z%Q?KOmey3XZft?~neO*;%H*j!8e%`p{D$E#B$!Q{*Y3rE0>K-VF_!q3@VyI!&8aRm zQdE+t_pLwEY1;NG=;a|(rwdF=6+>*${75O_hG$P2975RZSRtb1) z#?s0El0_@d?d--Hp6crY6XsdreiFcn90Wgf$TyCcEF2>eT-hah9S1--m z&u&eB_^$mcr?EQ(n`1oAFV|JwC$ zWx;iS$AeONFwfpm%3UF;ikc*MQRN6NB_*2h3RX`^5h;WuM4qetZ7)gZUZ_lj2efZe zTqngfi-||f})iOExu0Fs{3HU_F(Zms;x<85NCU60XCBRuPpKsxp&}~Wd zvPPlaok93at5V|I8;G*`RpWL}*gmT_L;;IP$-i5t{>PXrtwB$5IC6rJC8{th)guVJS=7;mdFNTp0&J`gW=R;=IP7JO8d=uP2x+7{xU+j1#%nJMVM@sCf znM9uwPk#&*J}mFc7gpjQ?$HxhYvZvK&#lz_((X0w@b{P8+uPDEv4%b)A=^s&#EJs; zHP6IpK&s(O%+c31oP6eodSZsx{U<0a=qltpRpQG6Ps-HHU{IYU<-jWdj((5wa}=G+ zRLqHNPV0%T^j4|w;*X{vInVQ4Cq#V=xuVd3j;65!T_h9h_4Q9_wKJX?B1q=~-#|_% zkbpH==#B1|RhE^OEqe-wh!wOHplapcVRNq+@H`c`Y{d+V1XjEBcZ}ViwT}<}<_WhH zST6q)Pb10k0HG=_UFjOH27{A=4F-cVKNEtvCmKm-q+$@&P-lo`eY9RhD1#~)N}y?Q z1~56|gE+hCrp2<{U-^EIrXD%!R)kKca0;HfpCV=g@lrU_d>f|~Nhv+G;~Uas$4dCG zuWcFkQs#DkDpW8z?UlJ09#@iwAW&foq;!Kl`q!FosqBWF>HrNH#546 zt)M&O%p3%K?D4!(KiFQBYU42f|fZb{E z0XG>4r#LgNdLwQfC4HthX~B4jOTf%_L;|6FMjdRo4SJ71eJ-Niua+-gUQs(58`Hb5 z9}cDu;CE8vN&|oQsfE`wy0T+RR4g0nzF-`>Ksae@>cS*EQNCBUy~wwg)vv%fO&3*G z6~{KCz!{`G*j&<01rg#1J3gtQ{3c6TCDdGOdh*G|v zdtEALrkabU`B3LW`>`Mw~SyVW!io|jx8QJ9I`9$%J&B=yaAzn~~ zs#Q|MbZZTCbzVjKhvfvlXR!Ba<`e+?MD6qx)QP(laNUI8zdbxC`D6raJK(7CgSUU8 zv$;m$T=S=YTCF#(-X8x@7ucEDw{7o@7@a-3c0*D6a}7X=|MRK*4QcUGpr?c2j_Sl? zsl{iT2maO#_Fn-05idh5VeLS&!MzqOO}3(#=YATgKeHfN0nr0sI>6CHxauk0^Cjx+ zbRMZJbWQbT8W~u6Q%&;oqatVI9HgeFJ^OmQs5aHPr6*>QCpoN4$$Tg41x~(0qR>J1 z$?NJ`-ddSiN*sccqR4uMM&IzSNghYvHeH%_Aa!QqByFKJ8f~#9zvZ*eqA$#S z34Y|%R^%V{TdTRYq-7z%nE-7pWlJzms_pD-@X)l-@y_WqhD|}gcovtf?2~r79NST1ZY_;;7cE?%-Fy2 z5QqACvWH!DDv74fZ>UUwzNj0^lLm2f)UCtzqCTOQ_f*ID*Z4mR7W6*a&Zx}eH|-h8 zmXGYb!hG8m@l|E_`ulpd$%KCJ6kxw+!kd86cIckB_JlL#MQq*$upKUSbdRjt31SeU zQ!kAR04e4Y+5|P-l=fdNaI3Hq$@MGD<5u9{u@Lh0TT5C@+e**lZkUim1}4^;ipwQX z&i+*31LouG-eBbR<#3;T%wlq#uB1Y(-_~RIzW&a+<<8(P5RKyn0z5VByi?c%|G zyw?cHCafh4X9Q(2*x0)&9nXxVWz(}u*q5#o+}bq~6}Hz13s)Kdr%22gUr8&PbM?c< zh+w$X49C`*H>QOw#~`JQlG3E4|3KNP8Y-Ufl7`N-v8IQ5G zfk?(>e*PW_W57w>joy2phKd0GwUyn9^!p`uR$By)L&MYUf}y^=RTY^pSDrF`w?Z_2JH(f;6eYu~iVDdOcr%l| zHQNY(@`9_M>SCo=9bNdQSV}>=y3_TeoDH#f%=i98exW)b0jS#^dyxFMt$o1(^T5Fs zY@}V1|HaP+tmJ(+w#Ti;Hm@^;4(2=IP?4`ia;uCFGOD$Ub8z?^_Kgv_4}Ul6JQ$6j z0sU6cm+u!@f*3HK{KY$Njfo&rWw4XVbbk+;2Of?+~xE)HR`+P?pg)C$p-y zDQYCB(SuRu-gd7HE}bws<G6{;I1i%%~ zj;@wnd{kr8s-7L|e#nFQJH920MH%e2L0!zV&>JYxSSPK$C+^&UE5~YTFOYRySM7ey zqOZ$d`}-wYz<~jeg0#-2;<^M6=vp~3ak)&Ock&0^p5pk$lGW4{2{`=^|3F!#SmOeM z_eUR46M^6$%t|8}U>I9BhALjYY{TUABW<^;WSY)%{S<~YkijTXL5WPU&>yvgw{duH2~XDT8jL}H|B zk#CNTgSV)z6#`0-taq*#`**gfGE5nHSUPC^0FxJaL>$&CX)w@$xjbZ&->P5GtwE!#COol=-jpq%$|(EQ9B@=bk;NF)j?1k!E>Qo zwymwegFNR`QsCo`wIx)hY~~+O2e@iX#Soa zru(rxG)K`M9Tu|8O5wsJ0w8ToQc*W{1A{I%SmI<*)DF^gCxy2=jc9exM*|S%nUtK( zA>o#+6X7H>4v|rm<6v`s+m<(XS$J49^{Ol~x+y1d!eNi7mJR*`whgusue&>`EKkCy z$X_WTEn^&vu&42(55beMIVZMuMZxsD;o1hl@%9qZA`&Q@D<2?IA6<5lYEssOVlYH? zk2`_Y&75hdt|Pku?T_*qo^cdZKVk>x`|U&kq&`vwUIoQ~n}VA&g0@l!jVqAvU?5ox zJ7X^Fcg=TI@RiRzR;G>yZQR3h4-sk_$yT=uEf0IZ`;wQyX)hgp_Cu0-3Xzy3r{T-9 zjHbjG<*i-{7MIUEkN*9$^Ql)l{!%2-zZ_9}-XKhS7UT>gZ5eDt(m_=ka@~AwFO*p0 zGRcc5uBbn&P5ohrPqKid(SK3w`^|PoZk%Kl9d4-jS44Jtzu#cz`qbNp=7Q^Pmr-`U zt?kN%`kRYO)72Jz4wrzNg{Y_f^C-DXC67)!qWsa38e1U`OS!*Zv94t^WyDZ;OYroO z{kGDV8zB7U{~2kRkQ;|c9N;w(;fZ!&i{zzAzatmt33k{>?yK`Ytt4{1;Bdh-G~K~~ z+1g68a#`4Z*~^6?>wz`whJx-_;BMpYCxm^1 zZp-a^fQAYCH3`Ozyd~h5 zzYSLNZHvn3>DN!Ft)xAV;GY;<&Q6BE-r)5N(Js)OaQ8|Ab>aTOIHl}y1$M%2kw;!I zjfq-~7Qc5Mwl`XsXR1a;8TTHsnwy)M$0*I-qH&O#+R;S^s#dPnI&Vhxdv*d1sYL5q zT+R9z(p4@3Bl)_!#7WDhH1tc%lB;Tm&V|Q4JGBsUkKKM@Ef_V&zG&rD3{;!VHTU8= z00)ziI^MYlkBaDp*$K>7RB;UQGK|AR)j5Ckb>Uw!RZO*%Y@uNBY~P2cjIcx-&qlzc z&Fu~L77$yRf?c&r38vb!l)Vo6b=mgt&xU_M={q!~GF@=)xm)iBF_{WoNS)Xeh~9ye zt8s2_>jLsOaR<-PJn-vskLapujfF1aPbP}v$Z9x7@ezZ&3@(&T{3+*||A`HEW(FL* z)Dagz`wq-X%?Tn^nG?oPK19D=?fk|k5-X8 zTZnI;-oAgCvro9q|3Go`G$=m8@T}UQIvR9F$@WFiwW{&FgkJ>Si63#4W0^GtIcJvsI)2kb%i|EQFe}G1yS(W0)f#H^T1gnKoL{SqsOVVsJ4sG-qiXo39#(>D%%GZwwmJ zzu2~VwD61UpCX%>5eHwCi>+Y%<$zGxrW~p*QFe}Gf#t4&090Qp9_S(~{gu9)0Kl@q z)Gp z(d90o63evT_OZas5dCbqQ?9M4PaS{L4<7jJ#Is$pab|=+Pl#e4sK$FX)m^=~6N8`X z^SQD8z)zToQsG7SkX_iXQ}8Jbuz}pbufJf7AG+7Xy+7ne-!k#RgeLao!2P{Ql8LAH z(7~R1L??y8L6tAAsD3Zp^Bxf$AELfdnED%t{Ub0(;wd{`l9*lo2iyTW4AL0agT4Hy zTLGnAgzHYQs{)-*N!7b>)}M@U!l>7^;jH+CaNNd_6xP@LU}@CWFG^rt z7<=Ko@5p`Lnho{n#=hCy=v1F{in}CDA1qm6+ChupLaci9j(8gzfc_D|5FE(&P$+(| z&o^m__L#I*l)Y88wX7H?!oHRt%HTP1ExZ|0v=d|~S5RJ787uxj!9OiC!U6!h4lHrCe090^yhLaihD?fWt4%ht&nY?WWJzqupHv$Daqz!S>0=$SuM1<- zHun4u8th~GVRV^HkzS5vS;|seV!=loRn2wr&Q0!HRJcY??1Q(63tNwF%JO@J0Vm!o zV7*v{tys6tF*_O~>40v=WTEYc7J2#Yha+>my>w7rr6zG9u?HXNrLyDPzItn3-%h9O!((+*(p!xVRqAWypN}rbuIDP~tgS4(=Tk)RzQv5q=fu8wFFLW|^0zmrZF2!C zR8}75Hrd*jm3Nsb0Y~+N377op^N*UqPg`Li&1gBIyuRyS@uO5))SF4;>E6htb^bOMg&C2S! zr3H;qbwtSt7prN-Z_9X7rQK+-WNN^ZIgz2pVj8F&T8D?eVpCt)9O8YZcI2YLqv<^+ z8v81c5;`2L_Ulh+1szTCc}_J1gRlX#vi|@=p4S*%&~sLbdbyz3km#D4Ivg%hn`q4I z6xIM~ygsSo(;qCOk3r3dgxp>-NSN;er%+?pB-n`D0?{dj6yhHk+H^AhG|^gN#|Tis|c>%9$DiE$t@S7SP7o?B%Gp3jHOW$=P zthpWd&bK`J?=8+LC?^2S-SsX^^yXH}iokgjm>V|#QF$z>b9pSKLh`T`dO+6Xp)MtU zPWuE!G4(qkQYP6Hef5}_zh%XJ504jyRB<)F_Y1xPUvHA*p~lF`O#!dL1r;`a=XlXw ztFuN3vxeotb6w;pzMnH@F2m8N;U}#peAt~FuibT0;X_ZKnCpb(UCZ$+JRhQ$U*aE= zg9kXnCW3>pzi9!oem-@~uN@DdB|koGB3j%>xW)`%7_mvv#)-J{5@j%tTry_JNhY-o z+%tX7#n>~$k0=pJ-qf*BGE9BN?R~OHu=_>x|J2hcgxBLpijF4_;Wg>0q+Xo#`Vl9E zfL&hWMtRSj__n5K<)cZ^9C!F>z9sd5^*1%qk^?*@Jla`6k>CQJeeU=z@-Z>q&KYrB zNpYNjBLfQiZ+R&1UvXOD3{Y-D!Yx9$yUE)^_^lTpriF&qdyN39{@T-Z1iD96h4)z{ zvbR%aOfGdn`u3^u1k0JVBQ1lxPGP$Bx;Wcy92?f?d$(FLU2$~@CnsP3(&YB5+)*T9 zed^X$<(s3w)6K#_(7G5e(Jgn(U8p%+wg{0bZ>&ovA|VD<%c!dmwW}7;Sn@^b@O?Vr zS|yc{lrn(KOB|J`_gK?zTd41nGMhkx%ESz=y#^evc5kDog1=3WM>u*rWq3C zXHCmKzc-R6=VFi&#jCxAMjE1%2Dn4{Adn3?#*(y-z}--j4Vem$9A>^UQUwh^Z}#GI z(@s;@dwRW(zVnoF6Tcrk4|#D4kI?;v?CTcz3ZQ*&i$~2UeIa?Km=#V{5?}7h0!QG_ zvDYpry|XpAx@-izgT*@@yNz7GFM7S#dVMaXBl!bIJr7?Bc|J_GKA=mFd2%_@oP3B% zJwj&u@sr|#QnFsWEzn3gW7K1oUhjv|fGMS|l;8pJM*$e&*~99r87d*;2=5bErdCP; zgOi12m6#lP#ds?Cr9nd#`m6h6IX+i?LldGKZyc>$5#h0!yUDeX}zh7 zr;2phFtNp-3r8CI83>kZ8=C|K2a2Bg9ZHK1~!T#)0qEw@Xq$mEBnU-{HLbghE<6II31rnc4}8| zy_O222d8YGZr(TBbMCR=zYa@!#iroC>=55Ab@zlfA-=xS8L#hvpDR;-@sntqy6&~O z)m9~4&An46tyy%pU$f~iBMpV8iA_L9jCNW_GvzN2{aqs$E^4N{I(Y z?2+=c2LASrzcHBwjn!R>yGyJD|XMrreMOkwpXL)ziVV`+0$-z-c+%3(u_ z;Z^CI+m|5=S|Q!2UbU#SS+N$G8(h_Q4_f~&%wDmmEAnAs(&49+1CX0Hs=nQrwTrs6 z{xO)l6d*U6Eol9Ln7d@dO34Sh#a`aKcnJq;#m|bg{wN>Fy8vwuh!GHts!cqQlDWwQEs)_x5wv7v?@Z8d{Co7Hh#7{j5)MXXZj_{N z#EQJ4TgkbcU}K~MDY{nZEfGNI={8Q5(?LC3X)Y#JSC3Q~ugFByp>SF36HB zM$BMSHmDJOgtUS&ch4E_aBeA8?wTgVS=wfjf(PE1AZkM%$}o-v1>GJV$}oln1=;>y zf9jeCWMFmv4!>^|f&t=bdzqozh(WljCY+)CJBBabz8t7iScE6>nfe(rwlWxepdQhh!sX!cPY>t6L&~TtNMS~iUA=GGJmd&$ub;3Hn+qw0bm~!^P{CsQj z+bW$E)~%g_IX-{bZVeIz_^!HIU9FI8^SlLDIUMs6YB zWDmm~C|{%U2Hd$Mf4#Yk`NNks)eh&HhK7J55(t=4z{VvKEa6!=##LMEhgFZQTb8gm zwS6tFr@^oLmw|InM^t<6lgbD-q6W)$*tX*m!n0|@k?0oVX8!&N zW4GoNt6OaN%qF#)2?V-nDP4Ie69Nw9wq_4kqU9L$a=i416dEvARnLEMerqP6A_*!& zle6Pd*APcyARa>jWWXdlekCe?hq4U2?o@W(`%SX$`6)c(a2Imd@HV1N-q~n}*GX=_ zzy4t-O4DhzdiJI7Aw0v!+&LP+(xBU>YU;Tlo3j0EiHLCM*;`VdMG$smFMOh9V6wgt zI2-vZ|FUnc(P8nT4Y)XCue_#?x_{ ztSkF6+T4f>Y!sSB1x8Z)ouViEhp$k=)-j=c;TpF(_;W8gI2d@SnE_$1Dp=fmWHX1= zOQ$AyZV%8Zx*HdapY1X}5~T$~d9=bO2q^%}mpXjYwrJ>a8SEL#2@>oH4h(ml3C!#d zH^g^IB6Kjeg{Srm$ET+d6a;YrxQTlVk_0HaffSJ|~J^Xc?zn)sBp>aPc8Pz(gWKJ4S z*PI!X<)PgIUR7ocg?}<|-7l{FYb;8X`tU%nY=Z8nY0r{%o8JwqB1jb#d{Ca9 zQ8wR&C)FF|cyTGMko;bv z8d1PFEQxe>B}r;4N1aqy;qD>;j2WRzYe(Z*Atkvyd{F&}tPvJ-(X!DJ$u>lxh2gy) zPyRDU&)!8)NB`w2UqJ=vkzWA%ZHWo2bkE9oV%rRm7itM(Yxg}5b zn$;Ez<%gIJz5sdP-`*I|_H8LQ7ah!{(GYA5*(2S8F1Ss`e5+|KTF z4x8K_$sL9wmR_*4jB8QJ6NIX(UOmmoA8C{(`mN#R=fXW*bsb1#I@#!S1-8s>Wfe{p zERi_8wKZx?oM&?RFzs3E?h<&7lTk&@?>|bAlYT8v4%EHsS;F~!`9b?L3Kl@jUScL6 zyG|I=Ezx}G=WoelD+%i{q7p{$;9|4~9fe!?c`>i^Uh@f6GfOA~UuTA}Z=|@c*t)*4SCve9_N8h#Ew8 zD`_tBh=pL5K)~5P+bow>aU&iOm2U%Pz7M2))r!iYbNv&SEeN2v@0B zx*by zV2us@37N0jaopq}hW3IMw;3ExmI>5?&|^^0V+bvkVW`G-b`bSgN(|I6AyF_V>BFS~ zP)ceN9-*SkL~Lc+bK^lW=7tiwT93p0Sh;i0kfh|Mg7arD?J#g={`;dbmap(Nkt^M% zC(TmEAa!XV$)&i6Ep^H6&wPXO!Oh<(r#pYTn=Ou7hgku=c-Ne-wULalF!`$y3%aJV zbc7EdaO@1DeAn_VJw)x?Q9fOomoW%~V}!mQXzDE!1JJ+Zc`LAW9&FdUIwQO(Iuu>9 zt6kr{zP2J=vWZLDosPf(lj@7-vHs=AB^pIBGYQclnXq|WI_m~{`I(KJU6M3{pf!P5 zPotis7e^(YJiOHbgRYSh>|&K@id4~n2XEGPS+-zpw9w9>K4+ik{>~^>I$IlnO?JJe zMhfxu*DRt>nD@mIWkj2WN-@!fq8-6vb!5AJ|Mers2-hk^XNvlkw zK@&?9M`^Q@P$f~_1CQ>S8+Kw3mLK7w?4AXbTSd?OMCZmlY@KWpIzuSZDme8$&=&&Z zy8#fa;X|-YRE%@k9Mz#^T$ZS+1cCFqgI0oALGw61KXl`W4wsy;4#$;aXolLP<8KPayVxg&1;Jqbs|@J8O1V>;0f<9%Y9@kaWTV=w^*8v;HtzQ~7*Nu&TKApWMsDXXM4 zKq=gW2dyxdNNk?P0dbfIoIboI-oy=XMOg`W$p>7KjTqho0#;eVLQF6Rf~qgE1xE<+ zBu69BVmi@GbBGGX2fau!O)0A!H<^}A<>y)cAq_u6uwHKf;16Ap4>Ocw6zamQe#*w* zOsCLEy3k0Xv9_GB?yRu%yi!1!lGyQVVxO{p$_-k<4byy&>GwgZ4Rcna8QG4QC#oLQ zsxf9j9e##15vUynRvE`247Wi&?%8{uure*PbO@pJdjVLZ?g6`0<$&5S6M~m-EHz7} z1Pd(xP=_O45mD($a&M%q|aFP3}-CmJ3c>yzf#h0FPKFinN~$jpCzl(SU5o-_~?Ac zmdw>ilClRoJeU$Lc2i%|B^ksic$~B8TeRu3QxT+nzmT{zOE9?;YNih%QX>&@#hx14 zL;l2&=`&K;m@TmqA{1K1M}qk*^)`dbH1_XFFRC;jZ6>k!eaO`Bm^r`F`KhklFHL!$ z#Zpslo7jzD&t@5r4}M<+ru=!C?3=8ttR|a{4_i3MP0>Vu_K%~) zf(9V9jFj%YoBLLrA3iVP@5U)H?qKBleC!^mA^PLw@_nVhuo)cCT71j@` zeXBpM3&JAs2#6*bF$0>Hs~8XGhlx1*ZC?RrR)*E4_ywQiX83|!O>YFVdDvJt9+_e( z+iLul4`xqUf2chB^g!ooC7g-zGl4yfj$+fdVartn42M^o{gfBFlc75vLQ|Ou!!~B` z2(mf*eBg);qxhu+2bg$;)i^uf5l}ECzF*p$Lr(o{)7y1eU)+d=QJT_f#d-P(Y-J+e zO?gFT9@ku&Xe(DKe|{9aV3BIqs#uDVlBm6*rec|nf6R!N6v^q5_V&0HSaRGpZ(

#^=?ohpi#POG&x9=lCI#jYi)hM$|Au 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

v?Vl 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

vi@fO@;gg#c)I?E|MGj;q4l@>mp@1#>u>ch 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�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 &fQow7iXH48`#l~iMvIbuXF1v~e#A;bSiYsy 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