diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml new file mode 100644 index 00000000..50b5b587 --- /dev/null +++ b/.github/workflows/build-macos.yml @@ -0,0 +1,40 @@ +name: Build-macos + +# Controls when the action will run. +on: + # Triggers the workflow on push or pull request events but only for the $default-branch branch + push: + branches: [ $default-branch ] + pull_request: + branches: [ $default-branch ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + - uses: actions/setup-dotnet@v1 + with: + dotnet-version: '6.0.x' # SDK Version to use; x will use the latest version of the 3.1 channel + + - name: Build and package x64 and arm64 version for macOS + run: sh build-macos.sh + + - uses: actions/upload-artifact@v2 + with: + name: MultiRPC-arm64.app + path: ./macOS Templates/MultiRPC-arm64.app + + - uses: actions/upload-artifact@v2 + with: + name: MultiRPC-x64.app + path: ./macOS Templates.MultiRPC-x64.app \ No newline at end of file diff --git a/.gitignore b/.gitignore index f68d202b..5664a68b 100644 --- a/.gitignore +++ b/.gitignore @@ -264,3 +264,7 @@ __pycache__/ *.pyc MultiRPC.sln.DotSettings +MultiRPC-arm64.app/ +MultiRPC-x64.app/ +builds/ +packages/ \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..117e24e3 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "ext/avalonia.gif"] + path = ext/avalonia.gif + url = https://github.com/Azyyyyyy/Avalonia.GIF +[submodule "ext/discord-rpc-csharp"] + path = ext/discord-rpc-csharp + url = https://github.com/Azyyyyyy/discord-rpc-csharp diff --git a/MultiRPC.UWP.sln b/MultiRPC.UWP.sln new file mode 100644 index 00000000..60298f3d --- /dev/null +++ b/MultiRPC.UWP.sln @@ -0,0 +1,125 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.32014.148 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "MultiRPC.UWP.Package", "src\MultiRPC.UWP\MultiRPC.UWP.Package.wapproj", "{452579BF-FF89-46FD-953D-E9D02D71EFDD}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MultiRPC.SourceGen", "src\MultiRPC.SourceGen\MultiRPC.SourceGen.csproj", "{919C3FE7-14E4-48D5-A119-690827FD04B7}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AvaloniaGif", "ext\avalonia.gif\AvaloniaGif\AvaloniaGif.csproj", "{C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MultiRPC.UWP", "src\MultiRPC\MultiRPC.UWP.csproj", "{7383A470-2747-4914-AD9A-97A39BB6BD5C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|ARM = Debug|ARM + Debug|ARM64 = Debug|ARM64 + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|ARM = Release|ARM + Release|ARM64 = Release|ARM64 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|ARM.ActiveCfg = Debug|ARM + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|ARM.Build.0 = Debug|ARM + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|ARM.Deploy.0 = Debug|ARM + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|ARM64.Build.0 = Debug|ARM64 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|ARM64.Deploy.0 = Debug|ARM64 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|x64.ActiveCfg = Debug|x64 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|x64.Build.0 = Debug|x64 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|x64.Deploy.0 = Debug|x64 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|x86.ActiveCfg = Debug|x86 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|x86.Build.0 = Debug|x86 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Debug|x86.Deploy.0 = Debug|x86 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|Any CPU.Build.0 = Release|Any CPU + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|Any CPU.Deploy.0 = Release|Any CPU + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|ARM.ActiveCfg = Release|ARM + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|ARM.Build.0 = Release|ARM + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|ARM.Deploy.0 = Release|ARM + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|ARM64.ActiveCfg = Release|ARM64 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|ARM64.Build.0 = Release|ARM64 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|ARM64.Deploy.0 = Release|ARM64 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|x64.ActiveCfg = Release|x64 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|x64.Build.0 = Release|x64 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|x64.Deploy.0 = Release|x64 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|x86.ActiveCfg = Release|x86 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|x86.Build.0 = Release|x86 + {452579BF-FF89-46FD-953D-E9D02D71EFDD}.Release|x86.Deploy.0 = Release|x86 + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Debug|ARM.ActiveCfg = Debug|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Debug|ARM.Build.0 = Debug|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Debug|ARM64.ActiveCfg = Debug|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Debug|ARM64.Build.0 = Debug|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Debug|x64.ActiveCfg = Debug|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Debug|x64.Build.0 = Debug|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Debug|x86.ActiveCfg = Debug|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Debug|x86.Build.0 = Debug|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Release|Any CPU.Build.0 = Release|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Release|ARM.ActiveCfg = Release|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Release|ARM.Build.0 = Release|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Release|ARM64.ActiveCfg = Release|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Release|ARM64.Build.0 = Release|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Release|x64.ActiveCfg = Release|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Release|x64.Build.0 = Release|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Release|x86.ActiveCfg = Release|Any CPU + {919C3FE7-14E4-48D5-A119-690827FD04B7}.Release|x86.Build.0 = Release|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Debug|ARM.ActiveCfg = Debug|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Debug|ARM.Build.0 = Debug|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Debug|ARM64.ActiveCfg = Debug|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Debug|ARM64.Build.0 = Debug|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Debug|x64.ActiveCfg = Debug|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Debug|x64.Build.0 = Debug|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Debug|x86.ActiveCfg = Debug|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Debug|x86.Build.0 = Debug|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Release|Any CPU.Build.0 = Release|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Release|ARM.ActiveCfg = Release|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Release|ARM.Build.0 = Release|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Release|ARM64.ActiveCfg = Release|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Release|ARM64.Build.0 = Release|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Release|x64.ActiveCfg = Release|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Release|x64.Build.0 = Release|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Release|x86.ActiveCfg = Release|Any CPU + {C89E50F1-7914-4E4C-AAAA-3D66E1FE851B}.Release|x86.Build.0 = Release|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Debug|ARM.ActiveCfg = Debug|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Debug|ARM.Build.0 = Debug|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Debug|ARM64.ActiveCfg = Debug|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Debug|ARM64.Build.0 = Debug|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Debug|x64.ActiveCfg = Debug|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Debug|x64.Build.0 = Debug|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Debug|x86.ActiveCfg = Debug|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Debug|x86.Build.0 = Debug|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Release|Any CPU.Build.0 = Release|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Release|ARM.ActiveCfg = Release|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Release|ARM.Build.0 = Release|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Release|ARM64.ActiveCfg = Release|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Release|ARM64.Build.0 = Release|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Release|x64.ActiveCfg = Release|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Release|x64.Build.0 = Release|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Release|x86.ActiveCfg = Release|Any CPU + {7383A470-2747-4914-AD9A-97A39BB6BD5C}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {ACAF7B9A-8030-4F2C-B374-6C90E3E416BF} + EndGlobalSection +EndGlobal diff --git a/MultiRPC.sln b/MultiRPC.sln index de76dd16..db0dd4bd 100644 --- a/MultiRPC.sln +++ b/MultiRPC.sln @@ -1,11 +1,17 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 -VisualStudioVersion = 16.0.29201.188 +VisualStudioVersion = 16.0.31727.386 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiRPC", "MultiRPC\MultiRPC.csproj", "{9EA9E3C8-C1A4-4A26-84BD-543789EE437D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiRPC", "src\MultiRPC\MultiRPC.csproj", "{FE7EF71E-A0F3-4A23-8125-738FE77797E2}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MultiRPCCore", "MultiRPC\MultiRPCCore.csproj", "{8641E29E-5DD4-45A5-A159-7C4A103E40D3}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AvaloniaGif", "ext\avalonia.gif\AvaloniaGif\AvaloniaGif.csproj", "{D4EBB986-EDAC-4C0B-AB58-70E4A5C7D2A4}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ext", "ext", "{B7AAF9E7-1C1E-4376-BAF6-D2FCA8B39CDF}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiRPC.SourceGen", "src\MultiRPC.SourceGen\MultiRPC.SourceGen.csproj", "{3369169D-31C0-4A74-A5A9-F2BB1EA80705}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DiscordRPC", "ext\discord-rpc-csharp\DiscordRPC\DiscordRPC.csproj", "{46073C54-E149-457D-9E6B-993A780E6AE8}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -13,19 +19,31 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9EA9E3C8-C1A4-4A26-84BD-543789EE437D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9EA9E3C8-C1A4-4A26-84BD-543789EE437D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9EA9E3C8-C1A4-4A26-84BD-543789EE437D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9EA9E3C8-C1A4-4A26-84BD-543789EE437D}.Release|Any CPU.Build.0 = Release|Any CPU - {8641E29E-5DD4-45A5-A159-7C4A103E40D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8641E29E-5DD4-45A5-A159-7C4A103E40D3}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8641E29E-5DD4-45A5-A159-7C4A103E40D3}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8641E29E-5DD4-45A5-A159-7C4A103E40D3}.Release|Any CPU.Build.0 = Release|Any CPU + {FE7EF71E-A0F3-4A23-8125-738FE77797E2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FE7EF71E-A0F3-4A23-8125-738FE77797E2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FE7EF71E-A0F3-4A23-8125-738FE77797E2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FE7EF71E-A0F3-4A23-8125-738FE77797E2}.Release|Any CPU.Build.0 = Release|Any CPU + {D4EBB986-EDAC-4C0B-AB58-70E4A5C7D2A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D4EBB986-EDAC-4C0B-AB58-70E4A5C7D2A4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D4EBB986-EDAC-4C0B-AB58-70E4A5C7D2A4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D4EBB986-EDAC-4C0B-AB58-70E4A5C7D2A4}.Release|Any CPU.Build.0 = Release|Any CPU + {3369169D-31C0-4A74-A5A9-F2BB1EA80705}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3369169D-31C0-4A74-A5A9-F2BB1EA80705}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3369169D-31C0-4A74-A5A9-F2BB1EA80705}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3369169D-31C0-4A74-A5A9-F2BB1EA80705}.Release|Any CPU.Build.0 = Release|Any CPU + {46073C54-E149-457D-9E6B-993A780E6AE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {46073C54-E149-457D-9E6B-993A780E6AE8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {46073C54-E149-457D-9E6B-993A780E6AE8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {46073C54-E149-457D-9E6B-993A780E6AE8}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {5FEA78DE-0EAB-4673-B5C1-989FD3E64C39} + SolutionGuid = {CD6F52B4-E174-4EB3-BAF8-90EFDDB47450} + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {D4EBB986-EDAC-4C0B-AB58-70E4A5C7D2A4} = {B7AAF9E7-1C1E-4376-BAF6-D2FCA8B39CDF} + {46073C54-E149-457D-9E6B-993A780E6AE8} = {B7AAF9E7-1C1E-4376-BAF6-D2FCA8B39CDF} EndGlobalSection EndGlobal diff --git a/MultiRPC/App.config b/MultiRPC/App.config deleted file mode 100644 index c40a4484..00000000 --- a/MultiRPC/App.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MultiRPC/App.xaml b/MultiRPC/App.xaml deleted file mode 100644 index 9246f89a..00000000 --- a/MultiRPC/App.xaml +++ /dev/null @@ -1,896 +0,0 @@ - - - - - - - - - F1 M1000,1000z M0,0z M617.94,676C617.94,676 602.7,657.79 589.94,642.12 645.42,626.45 666.59,592.12 666.59,592.12A242.81,242.81,0,0,1,617.89,617.12A304.4,304.4,0,0,1,556.49,635.33A296.72,296.72,0,0,1,446.8,634.9A322.36,322.36,0,0,1,384.55,616.69A248.08,248.08,0,0,1,353.63,602.29C352.36,601.45 351.09,601.02 349.82,600.18 348.98,599.75 348.55,599.33 348.13,599.33 340.51,595.09 336.27,592.13 336.27,592.13 336.27,592.13 356.6,625.59 410.38,641.68 397.68,657.77 382.01,676.4 382.01,676.4 288.42,673.4 252.84,612.46 252.84,612.46 252.84,477.37 313.84,367.68 313.84,367.68 374.84,322.37 432.41,323.68 432.41,323.68L436.65,328.76C360.42,350.36 325.65,383.81 325.65,383.81 325.65,383.81 334.97,378.73 350.65,371.96 396,352 432,346.91 446.85,345.22A41.11,41.11,0,0,1,454.05,344.37A358.13,358.13,0,0,1,539.6,343.52A352.22,352.22,0,0,1,667.07,383.75C667.07,383.75,633.61,352,561.62,330.39L567.55,323.62C567.55,323.62 625.55,322.35 686.12,367.62 686.12,367.62 747.12,477.31 747.12,612.4 747.12,611.97 711.54,672.96 617.95,675.92z M577.59,479.89C553.45,479.89 534.4,500.64 534.4,526.47 534.4,552.3 553.88,573.05 577.59,573.05 601.73,573.05 620.79,552.3 620.79,526.47 620.79,500.64 601.31,479.89 577.59,479.89z M423.02,479.89C398.88,479.89 379.82,500.64 379.82,526.47 379.82,552.3 399.3,573.05 423.02,573.05 447.16,573.05 466.22,552.3 466.22,526.47 466.64,500.64 447.16,479.89 423,479.89z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MultiRPC/App.xaml.cs b/MultiRPC/App.xaml.cs deleted file mode 100644 index c15fed1b..00000000 --- a/MultiRPC/App.xaml.cs +++ /dev/null @@ -1,220 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.IO; -using System.Linq; -using System.Security.Principal; -using System.Threading.Tasks; -using System.Windows; -using System.Windows.Threading; -using MultiRPC.Functions; -using MultiRPC.GUI.Pages; -using MultiRPC.JsonClasses; -using Newtonsoft.Json; - -namespace MultiRPC -{ - /// - /// Interaction logic for App.xaml - /// - public partial class App : Application - { - public const string MultiRPCWebsiteRoot = "https://multirpc.fluxpoint.dev"; - public const int RetryCount = 10; //How many times to attempt downloading files - public const string AppDev = "Builderb#0001"; - public const string ServerInviteCode = "TjF6QDC"; - public static UIText Text; - public static Logging Logging; - public static bool StartedWithJumpListLogic; - public static Config Config; - - public static readonly JsonSerializer JsonSerializer = new JsonSerializer - { - Formatting = Formatting.Indented - }; - - public static bool IsAdministrator => - new WindowsPrincipal(WindowsIdentity.GetCurrent()).IsInRole(WindowsBuiltInRole.Administrator); - - public App() - { - var darkThemeLocation = Path.Combine("Assets", "Themes", "DarkTheme" + Theme.ThemeExtension); - var lightThemeLocation = Path.Combine("Assets", "Themes", "LightTheme" + Theme.ThemeExtension); - var russiaThemeLocation = Path.Combine("Assets", "Themes", "RussiaTheme" + Theme.ThemeExtension); - if (!File.Exists(darkThemeLocation)) - { - Theme.Save(Theme.Dark, darkThemeLocation); - } - - if (!File.Exists(lightThemeLocation)) - { - Theme.Save(Theme.Light, lightThemeLocation); - } - - if (!File.Exists(russiaThemeLocation)) - { - Theme.Save(Theme.Russia, russiaThemeLocation); - } - - //TriggerWatch.Start(); - Startup += App_Startup; - } - - private void App_Startup(object sender, StartupEventArgs e) - { - #if !DEBUG - var args = e.Args?.ToList() ?? System.Extra.Uri.GetQueryStringParameters() ?? new List(); - if (Process.GetProcessesByName("MultiRPC").Length > 1) - { - if (File.Exists(FileLocations.OpenFileLocalLocation)) - { - try - { - File.Delete(FileLocations.OpenFileLocalLocation); - } - catch - { - Logging.Application(Text.CouldntDelete + " " + FileLocations.OpenFileLocalLocation); - } - } - - if (args.Contains("-custom") && args.IndexOf("-custom") + 1 >= args.Count) - { - File.WriteAllLines(FileLocations.OpenFileLocalLocation, - new List { "LOADCUSTOM", args.ElementAt(args.IndexOf("-custom") + 1) }); - } - else - { - File.Create(FileLocations.OpenFileLocalLocation); - } - - if (!args.Contains("--fromupdate")) - { - Current.Shutdown(); - } - } - else if (args.Contains("-custom") && args.IndexOf("-custom") + 1 >= args.Count) - { - StartedWithJumpListLogic = true; - _ = CustomPage.StartCustomProfileLogic(args.ElementAt(args.IndexOf("-custom") + 1), true); - } - #endif - - FileWatch.Create(); - SettingsPage.UIText = new List(); - GetLangFiles(); - Config = Config.Load(); - if (Config.Debug) - { - try - { - UITextUpdate(); - Logging = new Logging(); - File.AppendAllText(FileLocations.ErrorFileLocalLocation, - $"\r\n------------------------------------------------------------------------------------------------\r\n{Text.ErrorsFrom} {DateTime.Now.ToLongDateString()} {DateTime.Now.ToLongTimeString()}"); - DispatcherUnhandledException += App_DispatcherUnhandledException; - Application.Current.DispatcherUnhandledException += Current_DispatcherUnhandledException; - AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException; - TaskScheduler.UnobservedTaskException += TaskScheduler_UnobservedTaskException; - Dispatcher.UnhandledException += Dispatcher_UnhandledException; - } - catch (Exception ex) - { - MessageBox.Show(ex.ToString(), "Startup error", MessageBoxButton.OK, MessageBoxImage.Error); - } - } - else - { - UITextUpdate(); - Logging = new Logging(); - File.AppendAllText(FileLocations.ErrorFileLocalLocation, - $"\r\n------------------------------------------------------------------------------------------------\r\n{Text.ErrorsFrom} {DateTime.Now.ToLongDateString()} {DateTime.Now.ToLongTimeString()}"); - DispatcherUnhandledException += App_DispatcherUnhandledException; - } - } - - private void Dispatcher_UnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e) - { - if (Config.Debug) - MessageBox.Show(e.Exception.ToString(), $"{sender.ToString()} error", MessageBoxButton.OK, MessageBoxImage.Error); - } - - private void TaskScheduler_UnobservedTaskException(object sender, UnobservedTaskExceptionEventArgs e) - { - if (Config.Debug) - MessageBox.Show(e.Exception.ToString(), $"{sender.ToString()} error", MessageBoxButton.OK, MessageBoxImage.Error); - } - - private void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) - { - if (Config.Debug) - MessageBox.Show(e.ExceptionObject.ToString(), $"{sender.ToString()} error", MessageBoxButton.OK, MessageBoxImage.Error); - } - - private void Current_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e) - { - if (Config.Debug) - MessageBox.Show(e.Exception.ToString(), $"{sender.ToString()} error", MessageBoxButton.OK, MessageBoxImage.Error); - } - - private void UITextUpdate() - { - var engbInt = 0; - var foundText = false; - for (var i = 0; i < SettingsPage.UIText.Count; i++) - { - var text = SettingsPage.UIText[i]; - if (Config != null && text != null && text.LanguageTag == Config.ActiveLanguage) - { - Text = text; - foundText = true; - if (string.IsNullOrWhiteSpace(Config.AutoStart)) - { - Config.AutoStart = Text.No; - } - - if (string.IsNullOrWhiteSpace(Config.MultiRPC.Text1)) - { - Config.MultiRPC.Text1 = Text.Hello; - } - - if (string.IsNullOrWhiteSpace(Config.MultiRPC.Text2)) - { - Config.MultiRPC.Text2 = Text.World; - } - - break; - } - - if (text != null && text.LanguageTag == "en-GB") - { - engbInt = i; - } - } - - if (!foundText) - { - Text = SettingsPage.UIText[engbInt]; - } - } - - private void GetLangFiles() - { - var langFiles = Directory.EnumerateFiles("Lang").ToArray(); - for (var i = 0; i < langFiles.LongLength; i++) - { - using var reader = File.OpenText(langFiles[i]); - SettingsPage.UIText.Add((UIText)JsonSerializer.Deserialize(reader, typeof(UIText))); - } - } - - private void App_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e) - { - if (Config.Debug) - MessageBox.Show(e.ToString(), $"{sender.ToString()} error", MessageBoxButton.OK, MessageBoxImage.Error); - File.AppendAllText(FileLocations.ErrorFileLocalLocation, - $"\r\n\r\n{Text.Message}\r\n{e.Exception.Message}\r\n\r\n{Text.Source}\r\n{e.Exception.Source}\r\n\r\nStackTrace\r\n{e.Exception.StackTrace}"); - Logging.Error(Text.UnhandledException, e.Exception); - } - } -} \ No newline at end of file diff --git a/MultiRPC/Assets/150x150Logo.png b/MultiRPC/Assets/150x150Logo.png deleted file mode 100644 index 9fbbc0f7..00000000 Binary files a/MultiRPC/Assets/150x150Logo.png and /dev/null differ diff --git a/MultiRPC/Assets/70x70Logo.png b/MultiRPC/Assets/70x70Logo.png deleted file mode 100644 index 7f0e42d9..00000000 Binary files a/MultiRPC/Assets/70x70Logo.png and /dev/null differ diff --git a/MultiRPC/Assets/Icons.xaml b/MultiRPC/Assets/Icons.xaml deleted file mode 100644 index 678e29d5..00000000 --- a/MultiRPC/Assets/Icons.xaml +++ /dev/null @@ -1,642 +0,0 @@ - - F1 M52,52z M0,0z M26.2303429,49.9599915L25.9003258,50.0799866 25.5703697,49.9599915C1.4703339,41.4999695,2.0003633,9.7499695,2.0003633,9.4299622L2.0303316,8.4200135 3.0403414,8.4599915C11.1903658,8.7399598,25.4403658,2.1799622,25.5803194,2.1100159L26.0003633,1.9200135 26.4203462,2.1100159C26.56036,2.1799622,40.850338,8.769989,48.9603233,8.4599915L49.9803428,8.4200135 50.0003623,9.439972C50.0003624,9.7599792,50.3203697,41.4999695,26.2303429,49.9599915z - - - - - - - F1 M64,64z M0,0z M52,48C52,50.209,50.209,52,48,52L16,52C13.791,52,12,50.209,12,48L12,18C12,15.791,13.791,14,16,14L48,14C50.209,14,52,15.791,52,18L52,48z - F1 M64,64z M0,0z M12,21.5L12,46C12,48.209,13.791,50,16,50L48,50C50.209,50,52,48.209,52,46L52,21.5 12,21.5z - F1 M64,64z M0,0z M52,18C52,15.791,50.209,14,48,14L16,14C13.791,14,12,15.791,12,18L12,24 52,24 52,18z - F1 M64,64z M0,0z M52,16C52,13.791,50.209,12,48,12L16,12C13.791,12,12,13.791,12,16L12,22 52,22 52,16z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - F1 M25.044,17.874z M0,0z M18.5,17.85C18.5,17.85,17.73,16.928,17.081,16.132A6.818,6.818,0,0,0,20.965,13.6A12.444,12.444,0,0,1,18.5,14.865A15.354,15.354,0,0,1,15.388,15.787A15.1,15.1,0,0,1,9.829,15.767A16.6,16.6,0,0,1,6.672,14.845A12.884,12.884,0,0,1,5.106,14.115C5.04,14.074 4.979,14.049 4.913,14.009 4.872,13.989 4.847,13.968 4.827,13.968 4.442,13.755 4.227,13.603 4.227,13.603A6.678,6.678,0,0,0,7.982,16.111C7.338,16.927 6.543,17.869 6.543,17.869 1.8,17.723 0,14.632 0,14.632A28.335,28.335,0,0,1,3.091,2.226A10.632,10.632,0,0,1,9.1,0L9.313,0.258A14.1,14.1,0,0,0,3.689,3.047C3.689,3.047,4.16,2.789,4.956,2.447A16.844,16.844,0,0,1,9.826,1.094A2.234,2.234,0,0,1,10.191,1.053A17.727,17.727,0,0,1,20.985,3.053A14.1,14.1,0,0,0,15.644,0.341L15.944,-0.00399999999999995A10.589,10.589,0,0,1,21.954,2.226A28.335,28.335,0,0,1,25.045,14.632A7.858,7.858,0,0,1,18.5,17.85z M16.455,7.917A2.27,2.27,0,0,0,14.266,10.279A2.283,2.283,0,0,0,16.455,12.641A2.27,2.27,0,0,0,18.644,10.279A2.283,2.283,0,0,0,16.455,7.917z M8.62,7.917A2.27,2.27,0,0,0,6.431,10.279A2.283,2.283,0,0,0,8.62,12.64A2.27,2.27,0,0,0,10.809,10.278A2.251,2.251,0,0,0,8.62,7.917z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - F1 M25.044,17.874z M0,0z M18.5,17.85C18.5,17.85,17.73,16.928,17.081,16.132A6.818,6.818,0,0,0,20.965,13.6A12.444,12.444,0,0,1,18.5,14.865A15.354,15.354,0,0,1,15.388,15.787A15.1,15.1,0,0,1,9.829,15.767A16.6,16.6,0,0,1,6.672,14.845A12.884,12.884,0,0,1,5.106,14.115C5.04,14.074 4.979,14.049 4.913,14.009 4.872,13.989 4.847,13.968 4.827,13.968 4.442,13.755 4.227,13.603 4.227,13.603A6.678,6.678,0,0,0,7.982,16.111C7.338,16.927 6.543,17.869 6.543,17.869 1.8,17.723 0,14.632 0,14.632A28.335,28.335,0,0,1,3.091,2.226A10.632,10.632,0,0,1,9.1,0L9.313,0.258A14.1,14.1,0,0,0,3.689,3.047C3.689,3.047,4.16,2.789,4.956,2.447A16.844,16.844,0,0,1,9.826,1.094A2.234,2.234,0,0,1,10.191,1.053A17.727,17.727,0,0,1,20.985,3.053A14.1,14.1,0,0,0,15.644,0.341L15.944,-0.00399999999999995A10.589,10.589,0,0,1,21.954,2.226A28.335,28.335,0,0,1,25.045,14.632A7.858,7.858,0,0,1,18.5,17.85z M16.455,7.917A2.27,2.27,0,0,0,14.266,10.279A2.283,2.283,0,0,0,16.455,12.641A2.27,2.27,0,0,0,18.644,10.279A2.283,2.283,0,0,0,16.455,7.917z M8.62,7.917A2.27,2.27,0,0,0,6.431,10.279A2.283,2.283,0,0,0,8.62,12.64A2.27,2.27,0,0,0,10.809,10.278A2.251,2.251,0,0,0,8.62,7.917z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - F1 M48,48z M0,0z M44,24C44,35.045 35.045,44 24,44 12.955,44 4,35.045 4,24 4,12.955 12.955,4 24,4 35.045,4 44,12.955 44,24z - F1 M48,48z M0,0z M21,14L27,14 27,34 21,34 21,14z - F1 M48,48z M0,0z M14,21L34,21 34,27 14,27 14,21z - - - - - - - - - F1 M32,32z M0,0z M15.9,0.3C7.1,0.3 -0.1,7.5 -0.1,16.4 -0.1,23.5 4.5,29.5 10.9,31.6 11.7,31.7 12,31.3 12,30.8 12,30.4 12,29.4 12,28.1 7.5,29.1 6.6,25.9 6.6,25.9 5.9,24 4.8,23.5 4.8,23.5 3.3,22.5 4.9,22.5 4.9,22.5 6.5,22.6 7.4,24.2 7.4,24.2 8.8,26.7 11.2,25.9 12.1,25.5 12.2,24.5 12.7,23.8 13.1,23.4 9.5,23 5.8,21.6 5.8,15.5 5.8,13.7 6.4,12.3 7.5,11.2 7.3,10.8 6.8,9.2 7.7,7 7.7,7 9,6.6 12.1,8.6 13.4,8.2 14.8,8.1 16.1,8.1 17.5,8.1 18.8,8.3 20.1,8.6 23,6.6 24.4,7 24.4,7 25.3,9.2 24.7,10.8 24.6,11.2 25.6,12.3 26.2,13.8 26.2,15.5 26.2,21.7 22.4,23 18.9,23.4 19.5,23.9 20,24.9 20,26.4 20,28.5 20,30.3 20,30.8 20,31.2 20.3,31.7 21.1,31.6 27.5,29.5 32.1,23.5 32.1,16.4 32,7.5 24.8,0.3 15.9,0.3z - - - - - - - - - - F1 M512.001,512.001z M0,0z M495.521,96.048C517.493,74.076 517.493,38.452 495.521,16.479 473.549,-5.493 437.924,-5.493 415.952,16.479L392.082,40.349 415.952,96.048 471.65,119.918 495.521,96.048z - F1 M512.001,512.001z M0,0z M431.866,111.962L431.866,111.962 360.254,72.178 39.785,392.647 79.57,464.26z - F1 M512.001,512.001z M0,0z M415.953,96.048L415.953,96.048 63.656,448.346 119.354,472.216 439.823,151.747z - F1 M512.001,512.001z M0,0z M39.785,392.647L39.785,392.647 15.914,464.26 15.914,496.087 47.741,496.087 119.354,472.216z - F1 M512.001,512.001z M0,0z M0.001,512.001L0.001,512.001 47.741,496.087 15.914,464.26z - - - - - - - - - - - - - - - - F1 M24,24z M0,0z M7,1031.4C5.4645,1031.4 3.9216,1031.9 2.75,1033.1 0.4069,1035.5 0.4712,1039.2 2.75,1041.6L12,1051.4 21.25,1041.6C23.529,1039.2 23.593,1035.5 21.25,1033.1 18.907,1030.8 15.093,1030.8 12.75,1033.1L12,1033.9 11.25,1033.1C10.078,1031.9,8.5355,1031.4,7,1031.4z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - F1 M48,48z M0,0z M44,24C44,35.045 35.045,44 24,44 12.955,44 4,35.045 4,24 4,12.955 12.955,4 24,4 35.045,4 44,12.955 44,24z - F1 M48,48z M0,0z M29.656,15.516L32.484,18.344 18.344,32.484 15.516,29.656 29.656,15.516z - F1 M48,48z M0,0z M32.484,29.656L29.656,32.484 15.516,18.344 18.344,15.516 32.484,29.656z - - - - - - - F1 M25,17.9z M0,0z M18.5,17.9C18.5,17.9 17.7,17 17.1,16.2 18.7,15.8 20,14.9 21,13.7 20.2,14.2 19.4,14.6 18.5,15 17.5,15.4 16.5,15.7 15.4,15.9 13.6,16.2 11.7,16.2 9.8,15.9 8.7,15.7 7.7,15.4 6.6,15 6.1,14.8 5.5,14.5 5,14.3 5,14.1 5,14.1 4.9,14 4.9,14 4.8,14 4.8,14 4.4,13.8 4.2,13.6 4.2,13.6 5.1,14.8 6.5,15.7 8,16.1 7.4,16.9 6.6,17.9 6.6,17.9 1.8,17.7 0,14.6 0,14.6 0.1,10.3 1.1,6 3.1,2.2 4.8,0.899999999999999 6.9,0.0999999999999992 9.1,-8.88178419700125E-16L9.3,0.299999999999999C7.2,0.799999999999999 5.3,1.7 3.7,3.1 3.7,3.1 4.2,2.8 5,2.5 6.5,1.8 8.2,1.4 9.9,1.1 10,1.1 10.1,1.1 10.3,1.1 14,0.599999999999999 17.8,1.3 21.1,3.1 19.5,1.8 17.7,0.899999999999999 15.8,0.399999999999999L15.9,0C18.1,0.1 20.2,0.9 21.9,2.2 23.9,6 24.9,10.3 25,14.6 23.5,16.7 21.1,17.9 18.5,17.9z M16.5,7.9C15.2,7.9 14.3,9 14.3,10.2 14.3,10.2 14.3,10.2 14.3,10.2 14.3,11.5 15.2,12.5 16.5,12.6 17.8,12.6 18.7,11.5 18.7,10.3 18.7,10.3 18.7,10.3 18.7,10.3 18.7,9 17.7,8 16.5,7.9z M8.6,7.9C7.4,8 6.4,9 6.4,10.3 6.4,10.3 6.4,10.3 6.4,10.3 6.4,11.6 7.3,12.6 8.6,12.7 9.9,12.7 10.8,11.6 10.8,10.4 10.8,10.4 10.8,10.4 10.8,10.4 10.9,9 9.9,8 8.6,7.9 8.7,7.9 8.6,7.9 8.6,7.9z - - - - - - - - F1 M26,26z M0,0z M15.5,4C13.300781,4,11.199219,5.199219,10,7L9.5,7C7,7 4.886719,8.699219 4.1875,11 1.886719,11.101563 0,13.101563 0,15.5 0,18 2,20 4.5,20L20.5,20C23.5,20 26,17.5 26,14.5 26,12 24.304688,9.789063 21.90625,9.1875 21.304688,6.1875 18.601563,4 15.5,4z M15.5,6C17.800781,6,19.800781,7.792969,20,10.09375L20,11 20.8125,11.09375C22.613281,11.292969 23.90625,12.792969 23.90625,14.59375 24.007813,16.394531 22.398438,18 20.5,18L4.5,18C3.101563,18 2,16.898438 2,15.5 2,14.101563 3.101563,13 4.5,13L4.90625,13 5.90625,13.1875 6,12.1875C6.199219,10.386719 7.699219,9 9.5,9 9.699219,9 10.011719,8.992188 10.3125,9.09375L11.09375,9.3125 11.40625,8.59375C12.207031,6.992188,13.800781,6,15.5,6z M13,10L13,13 10.5,13 14,16.5 17.5,13 15,13 15,10z - - - - - - - F1 M64,64z M0,0z M3,32C3,16 16,3 32,3 48,3 61,16 61,32 61,48 48,61 32,61 16,61 3,48 3,32z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - F1 M48,48z M0,0z M24,4C12.9,4 4,12.9 4,24 4,35.1 12.9,44 24,44 35.1,44 44,35 44,24 44,13 35,4 24,4z M26,38L22,38 22,34 26,34 26,38z M30.1,22.5L28.3,24.3C26.9,25.8,26,27,26,30L22,30 22,29C22,26.8,22.9,24.8,24.3,23.3L26.8,20.8C27.5,20.1 28,19.1 28,18 28,15.8 26.2,14 24,14 21.8,14 20,15.8 20,18L16,18C16,13.6 19.6,10 24,10 28.4,10 32,13.6 32,18 32,19.8 31.3,21.4 30.1,22.5z - F1 M48,48z M0,0z M30.1,22.5L28.3,24.3C26.9,25.8,26,27,26,30L22,30 22,29C22,26.8,22.9,24.8,24.3,23.3L26.8,20.8C27.5,20.1 28,19.1 28,18 28,15.8 26.2,14 24,14 21.8,14 20,15.8 20,18L16,18C16,13.6 19.6,10 24,10 28.4,10 32,13.6 32,18 32,19.8 31.3,21.4 30.1,22.5z - - - - - - - - - - - F1 M29,29.793z M0,0z M25.548,16.353A13.5,13.5,0,0,0,25.648,14.871A14.437,14.437,0,0,0,25.548,13.389L28.716,10.936A0.707,0.707,0,0,0,28.869,9.965L25.905,4.855A0.719,0.719,0,0,0,24.985,4.548L21.255,6.03A11.158,11.158,0,0,0,18.755,4.548L18.189,0.613A0.681,0.681,0,0,0,17.473,0L11.494,0A0.717,0.717,0,0,0,10.779,0.613L10.217,4.6A9.527,9.527,0,0,0,7.717,6.082L3.982,4.548A0.737,0.737,0,0,0,3.062,4.855L0.1,10.016A0.738,0.738,0,0,0,0.3,10.987L3.471,13.44A13.5,13.5,0,0,0,3.371,14.922A14.438,14.438,0,0,0,3.471,16.404L0.3,18.857A0.771,0.771,0,0,0,0.1,19.828L3.064,24.938A0.737,0.737,0,0,0,3.984,25.245L7.715,23.763A11.158,11.158,0,0,0,10.215,25.245L10.777,29.18A0.717,0.717,0,0,0,11.492,29.793L17.471,29.793A0.717,0.717,0,0,0,18.186,29.18L18.748,25.245A9.527,9.527,0,0,0,21.248,23.763L24.979,25.245A0.737,0.737,0,0,0,25.899,24.938L28.863,19.777A0.783,0.783,0,0,0,28.71,18.806z M14.509,20.135A5.213,5.213,0,1,1,19.722,14.922A5.234,5.234,0,0,1,14.509,20.135z - - - - - - - - - - F1 M29,29.793z M0,0z M25.548,16.353A13.5,13.5,0,0,0,25.648,14.871A14.437,14.437,0,0,0,25.548,13.389L28.716,10.936A0.707,0.707,0,0,0,28.869,9.965L25.905,4.855A0.719,0.719,0,0,0,24.985,4.548L21.255,6.03A11.158,11.158,0,0,0,18.755,4.548L18.189,0.613A0.681,0.681,0,0,0,17.473,0L11.494,0A0.717,0.717,0,0,0,10.779,0.613L10.217,4.6A9.527,9.527,0,0,0,7.717,6.082L3.982,4.548A0.737,0.737,0,0,0,3.062,4.855L0.1,10.016A0.738,0.738,0,0,0,0.3,10.987L3.471,13.44A13.5,13.5,0,0,0,3.371,14.922A14.438,14.438,0,0,0,3.471,16.404L0.3,18.857A0.771,0.771,0,0,0,0.1,19.828L3.064,24.938A0.737,0.737,0,0,0,3.984,25.245L7.715,23.763A11.158,11.158,0,0,0,10.215,25.245L10.777,29.18A0.717,0.717,0,0,0,11.492,29.793L17.471,29.793A0.717,0.717,0,0,0,18.186,29.18L18.748,25.245A9.527,9.527,0,0,0,21.248,23.763L24.979,25.245A0.737,0.737,0,0,0,25.899,24.938L28.863,19.777A0.783,0.783,0,0,0,28.71,18.806z M14.509,20.135A5.213,5.213,0,1,1,19.722,14.922A5.234,5.234,0,0,1,14.509,20.135z - - - - - - - - - - F1 M1000,1000z M0,0z M184,314.1L544.4,314.1 544.4,346.9 184,346.9 184,314.1 184,314.1z - F1 M1000,1000z M0,0z M184,445.3L394.2,445.3 394.2,478.1 184,478.1 184,445.3z - F1 M1000,1000z M0,0z M184,576.5L334.2,576.5 334.2,609.3 184,609.3 184,576.5z - F1 M1000,1000z M0,0z M184,707.7L274.1,707.7 274.1,740.5 184,740.5 184,707.7z - F1 M1000,1000z M0,0z M419.2,706.8L419.2,882.7 580.3,882.7 419.2,706.8z - F1 M1000,1000z M0,0z M443.9,677.4L607.5,856.1 905.7,530.5 742.1,351.8 443.9,677.4z - F1 M1000,1000z M0,0z M799.6,829.1C799.6,887.4,753.3,934.6,696.2,934.6L172.5,934.6C115.4,934.6,69.1,887.3,69.1,829.1L69.1,232.6C69.1,174.3,115.4,127.1,172.5,127.1L184,127.1 184,163.6C184,182.9 199.1,198.5 217.7,198.5 236.3,198.5 251.4,182.9 251.4,163.6L251.4,127 304.2,127 304.2,163.5C304.2,182.8 319.3,198.4 337.9,198.4 356.5,198.4 371.6,182.8 371.6,163.5L371.6,127 424.4,127 424.4,163.5C424.4,182.8 439.5,198.4 458.1,198.4 476.7,198.4 491.8,182.8 491.8,163.5L491.8,127 544.6,127 544.6,163.5C544.6,182.8 559.7,198.4 578.3,198.4 596.9,198.4 612,182.8 612,163.5L612,127 696.5,127C753.6,127,799.9,174.3,799.9,232.5L799.9,246.7 859,246.7 859,191.7C859,125.4,806.3,71.7,741.4,71.7L611.7,71.7 611.7,44.9C611.7,25.6 596.6,10 578,10 559.4,10 544.3,25.6 544.3,44.9L544.3,71.7 491.5,71.7 491.5,44.9C491.5,25.6 476.4,10 457.8,10 439.2,10 424.1,25.6 424.1,44.9L424.1,71.7 371.3,71.7 371.3,44.9C371.3,25.6 356.2,10 337.6,10 319,10 303.9,25.6 303.9,44.9L303.9,71.7 251.1,71.7 251.1,44.9C251.1,25.6 236,10 217.4,10 198.8,10 184,25.6 184,44.9L184,71.7 127.6,71.7C62.6,71.7,10,125.4,10,191.7L10,870C10,936.3,62.7,990,127.6,990L741,990C806,990,858.6,936.3,858.6,870L858.6,745.6 799.5,745.6 799.5,829.1z - F1 M1000,1000z M0,0z M969.6,364L890.6,285.8C864.7,260.1 824,260.7 799.7,287 775.4,313.3 760.4,333.8 760.4,333.8L925.9,508.2C925.9,508.2 948.4,484.6 972.7,458.2 996.9,431.9 995.6,389.7 969.6,364z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - F1 M512,512z M0,0z M215.728,120L215.728,120 174.272,120 159.272,150 230.728,150z - F1 M512,512z M0,0z M150,225C150,244.53,162.578,261.024,180,267.237L180,180 150,180 150,225z - F1 M512,512z M0,0z M195,0C87.48,0 0,87.48 0,195 0,302.52 87.48,390 195,390 302.52,390 390,302.52 390,195 390,87.48 302.52,0 195,0z M285,210C309.814,210 330,230.186 330,255 330,263.291 323.291,270 315,270 306.709,270 300,263.291 300,255 300,246.724 293.276,240 285,240L268.482,240C266.074,251.812 260.636,262.41 253.378,271.501 263.718,282.188 270,296.353 270,311.836L270,315C270,323.291 263.291,330 255,330 246.709,330 240,323.291 240,315L240,311.836C240,303.56 236.451,295.964 230.482,290.664 219.869,296.426 207.902,300 195,300 182.098,300 170.131,296.426 159.518,290.663 153.549,295.964 150,303.559 150,311.835L150,315C150,323.291 143.291,330 135,330 126.709,330 120,323.291 120,315L120,311.836C120,296.353 126.282,282.188 136.622,271.502 129.364,262.411 123.925,251.813 121.518,240.001L105,240.001C96.724,240.001 90,246.725 90,255.001 90,263.292 83.291,270.001 75,270.001 66.709,270.001 60,263.292 60,255.001 60,230.187 80.186,210.001 105,210.001L120,210.001 120,174.273 95.127,161.836C92.798,160.64 90,162.339 90,165 90,173.291 83.291,180 75,180 66.709,180 60,173.291 60,165 60,140.004 86.314,123.86 108.53,135L128.289,144.875 143.567,114.32C129.602,106.674 120,92.014 120,75 120,66.709 126.709,60 135,60 143.291,60 150,66.709 150,75 150,83.276 156.724,90 165,90L225,90C233.276,90 240,83.276 240,75 240,66.709 246.709,60 255,60 263.291,60 270,66.709 270,75 270,92.014 260.398,106.674 246.433,114.32L261.709,144.873 281.455,135C303.748,123.776 330,140.109 330,165 330,173.291 323.291,180 315,180 306.709,180 300,173.291 300,165 300,162.48 297.448,160.659 294.858,161.836L270,174.271 270,210 285,210z - F1 M512,512z M0,0z M210,267.237C227.422,261.024,240,244.53,240,225L240,180 210,180 210,267.237z - F1 M512,512z M0,0z M318.959,382.592L343.078,406.711 406.711,343.078 382.592,318.959C365.858,344.196,344.196,365.858,318.959,382.592z - F1 M512,512z M0,0z M498.848,435.214L427.922,364.289 364.289,427.922 435.215,498.847C452.709,516.368 481.248,516.401 498.862,498.847 516.382,481.283 516.382,452.748 498.848,435.214z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - F1 M48,48z M0,0z M4,24C4,13 13,4 24,4 35,4 44,13 44,24 44,35 35,44 24,44 13,44 4,35 4,24z - F1 M48,48z M0,0z M26,26L22,26 22,15 26,15 26,26z - F1 M48,48z M0,0z M21.5,31.5C21.5,30.1 22.6,29 24,29 25.4,29 26.5,30.1 26.5,31.5 26.5,32.9 25.4,34 24,34 22.6,34 21.5,32.9 21.5,31.5z - - - - - - - - - F1 M1024,1024z M0,0z M1005.9,863.7L567.6,96.7C556.2,76.8 535,64.5 512,64.5 489,64.5 467.8,76.8 456.4,96.7L18.1,863.7C6.79999999999997,883.5 6.89999999999997,907.8 18.3,927.6 29.8,947.3 50.8,959.5 73.7,959.5L950.3,959.5C973.1,959.5 994.2,947.4 1005.7,927.6 1017.2,907.8 1017.2,883.6 1005.9,863.7z M576,831.5L448,831.5 448,703.5 576,703.5 576,831.5z M576,639.5L448,639.5 448,383.5 576,383.5 576,639.5z - - - - - - - - - - - - - - - F1 M48,48z M0,0z M44,24C44,35.045 35.045,44 24,44 12.955,44 4,35.045 4,24 4,12.955 12.955,4 24,4 35.045,4 44,12.955 44,24z - F1 M48,48z M0,0z M22,22L26,22 26,33 22,33 22,22z - F1 M48,48z M0,0z M26.5,16.5C26.5,17.879 25.379,19 24,19 22.621,19 21.5,17.879 21.5,16.5 21.5,15.121 22.621,14 24,14 25.379,14 26.5,15.121 26.5,16.5z - - - - - - - - - - F1 M512,512z M0,0z M339.7,6L339.7,6 339.7,112.8 448.3,112.8z - F1 M512,512z M0,0z M367.6,338.6L367.6,338.6C367.6,289.5,327.8,249.7,278.7,249.7L63.7,249.7 63.7,427.5 278.7,427.5C327.8,427.5,367.6,387.7,367.6,338.6z M159.5,386.1L103,386.1 103,296.1 159.1,296.1 159.1,308.2 118,308.2 118,333.6 153.2,333.6 153.2,345.7 118,345.7 118,374.2 159.5,374.2 159.5,386.1z M223.6,386.1L204,352.3 184.5,386.1 166.7,386.1 195,340.7 167.3,296.1 185,296.1 203.8,329.4 222.8,296.1 240.6,296.1 212.9,340.7 241.6,386.1 223.6,386.1z M253.4,296.1L309.5,296.1 309.5,308.2 268.4,308.2 268.4,333.6 303.6,333.6 303.6,345.7 268.4,345.7 268.4,374.2 310,374.2 310,386.2 253.4,386.2 253.4,296.1z - F1 M512,512z M0,0z M327.7,6.3L81,6.3 81,237.6 278.7,237.6C334.3,237.6 379.6,282.9 379.6,338.5 379.6,394.1 334.3,439.4 278.7,439.4L81,439.4 81,506 447.7,506 448.3,124.8 327.7,124.8 327.7,6.3z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/MultiRPC/Assets/LottieAnimations/CreditsIconAnimation.json b/MultiRPC/Assets/LottieAnimations/CreditsIconAnimation.json deleted file mode 100644 index 65656e6a..00000000 --- a/MultiRPC/Assets/LottieAnimations/CreditsIconAnimation.json +++ /dev/null @@ -1 +0,0 @@ -{"v":"5.3.4","fr":60,"ip":0,"op":60,"w":150,"h":150,"nm":"CreditsIconAnimation ","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":1,"nm":"Colour","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[75,75,0],"ix":2},"a":{"a":0,"k":[400.5,329,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":0,"s":[{"i":[[-10.737,0],[0,0],[0,-10.737],[0,0],[10.737,0],[0,0],[0,10.737],[0,0]],"o":[[0,0],[10.737,0],[0,0],[0,10.737],[0,0],[-10.737,0],[0,0],[0,-10.737]],"v":[[349.113,254.75],[451.887,254.75],[471.328,274.19],[471.328,274.19],[451.887,293.631],[349.113,293.631],[329.672,274.19],[329.672,274.19]],"c":true}],"e":[{"i":[[-10.737,0],[0,0],[0,-10.736],[0,0],[10.737,0],[0,0],[0,10.738],[0,0]],"o":[[0,0],[10.737,0],[0,0],[0,10.738],[0,0],[-10.737,0],[0,0],[0,-10.736]],"v":[[349.113,365],[451.887,365],[471.328,384.44],[471.328,384.44],[451.887,403.882],[349.113,403.882],[329.672,384.44],[329.672,384.44]],"c":true}]},{"i":{"x":0.445,"y":0.73},"o":{"x":0.877,"y":0},"n":"0p445_0p73_0p877_0","t":30,"s":[{"i":[[-10.737,0],[0,0],[0,-10.736],[0,0],[10.737,0],[0,0],[0,10.738],[0,0]],"o":[[0,0],[10.737,0],[0,0],[0,10.738],[0,0],[-10.737,0],[0,0],[0,-10.736]],"v":[[349.113,365],[451.887,365],[471.328,384.44],[471.328,384.44],[451.887,403.882],[349.113,403.882],[329.672,384.44],[329.672,384.44]],"c":true}],"e":[{"i":[[-10.737,0],[0,0],[0,-10.737],[0,0],[10.737,0],[0,0],[0,10.737],[0,0]],"o":[[0,0],[10.737,0],[0,0],[0,10.737],[0,0],[-10.737,0],[0,0],[0,-10.737]],"v":[[349.113,254],[451.887,254],[471.328,273.44],[471.328,273.44],[451.887,292.881],[349.113,292.881],[329.672,273.44],[329.672,273.44]],"c":true}]},{"t":59}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 2"},{"inv":false,"mode":"a","pt":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":0,"s":[{"i":[[-10.737,0],[0,0],[0,-10.737],[0,0],[10.737,0],[0,0],[0,10.737],[0,0]],"o":[[0,0],[10.737,0],[0,0],[0,10.737],[0,0],[-10.737,0],[0,0],[0,-10.737]],"v":[[349.113,309.56],[451.887,309.56],[471.328,329],[471.328,329],[451.887,348.44],[349.113,348.44],[329.672,329],[329.672,329]],"c":true}],"e":[{"i":[[-10.737,0],[0,0],[0,-10.736],[0,0],[10.737,0],[0,0],[0,10.736],[0,0]],"o":[[0,0],[10.737,0],[0,0],[0,10.736],[0,0],[-10.737,0],[0,0],[0,-10.736]],"v":[[349.113,364.995],[451.887,364.995],[471.328,384.434],[471.328,384.434],[451.887,403.874],[349.113,403.874],[329.672,384.434],[329.672,384.434]],"c":true}]},{"i":{"x":0.445,"y":0.73},"o":{"x":0.877,"y":0},"n":"0p445_0p73_0p877_0","t":30,"s":[{"i":[[-10.737,0],[0,0],[0,-10.736],[0,0],[10.737,0],[0,0],[0,10.736],[0,0]],"o":[[0,0],[10.737,0],[0,0],[0,10.736],[0,0],[-10.737,0],[0,0],[0,-10.736]],"v":[[349.113,364.995],[451.887,364.995],[471.328,384.434],[471.328,384.434],[451.887,403.874],[349.113,403.874],[329.672,384.434],[329.672,384.434]],"c":true}],"e":[{"i":[[-10.737,0],[0,0],[0,-10.737],[0,0],[10.737,0],[0,0],[0,10.737],[0,0]],"o":[[0,0],[10.737,0],[0,0],[0,10.737],[0,0],[-10.737,0],[0,0],[0,-10.737]],"v":[[349.113,309.56],[451.887,309.56],[471.328,329],[471.328,329],[451.887,348.44],[349.113,348.44],[329.672,329],[329.672,329]],"c":true}]},{"t":59}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 3"},{"inv":false,"mode":"a","pt":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":0,"s":[{"i":[[-10.737,0],[0,0],[0,-10.737],[0,0],[10.737,0],[0,0],[0,10.737],[0,0]],"o":[[0,0],[10.737,0],[0,0],[0,10.737],[0,0],[-10.737,0],[0,0],[0,-10.737]],"v":[[349.113,365.119],[451.887,365.119],[471.328,384.56],[471.328,384.56],[451.887,404],[349.113,404],[329.672,384.56],[329.672,384.56]],"c":true}],"e":[{"i":[[-10.737,0],[0,0],[0,-10.737],[0,0],[10.737,0],[0,0],[0,10.737],[0,0]],"o":[[0,0],[10.737,0],[0,0],[0,10.737],[0,0],[-10.737,0],[0,0],[0,-10.737]],"v":[[349.113,365.119],[451.887,365.119],[471.328,384.56],[471.328,384.56],[451.887,404],[349.113,404],[329.672,384.56],[329.672,384.56]],"c":true}]},{"i":{"x":0.445,"y":0.73},"o":{"x":0.877,"y":0},"n":"0p445_0p73_0p877_0","t":30,"s":[{"i":[[-10.737,0],[0,0],[0,-10.737],[0,0],[10.737,0],[0,0],[0,10.737],[0,0]],"o":[[0,0],[10.737,0],[0,0],[0,10.737],[0,0],[-10.737,0],[0,0],[0,-10.737]],"v":[[349.113,365.119],[451.887,365.119],[471.328,384.56],[471.328,384.56],[451.887,404],[349.113,404],[329.672,384.56],[329.672,384.56]],"c":true}],"e":[{"i":[[-10.737,0],[0,0],[0,-10.737],[0,0],[10.737,0],[0,0],[0,10.737],[0,0]],"o":[[0,0],[10.737,0],[0,0],[0,10.737],[0,0],[-10.737,0],[0,0],[0,-10.737]],"v":[[349.113,365.119],[451.887,365.119],[471.328,384.56],[471.328,384.56],[451.887,404],[349.113,404],[329.672,384.56],[329.672,384.56]],"c":true}]},{"t":59}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 4"}],"sw":801,"sh":658,"sc":"#ffffff","ip":0,"op":60,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/MultiRPC/Assets/LottieAnimations/CustomIconAnimation.json b/MultiRPC/Assets/LottieAnimations/CustomIconAnimation.json deleted file mode 100644 index 1d97eb18..00000000 --- a/MultiRPC/Assets/LottieAnimations/CustomIconAnimation.json +++ /dev/null @@ -1 +0,0 @@ -{"v":"5.3.4","fr":60,"ip":0,"op":120,"w":107,"h":159,"nm":"CustomIconAnimation","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":1,"nm":"White Solid 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[53.5,79.5,0],"ix":2},"a":{"a":0,"k":[53.5,79.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"f","pt":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[-11.648,0],[0,-11.648],[11.648,0],[0,11.648]],"o":[[11.648,0],[0,11.648],[-11.648,0],[0,-11.648]],"v":[[21.589,58.413],[42.679,79.503],[21.589,100.594],[0.498,79.503]],"c":true}],"e":[{"i":[[-11.648,0],[0,-11.648],[11.648,0],[0,11.648]],"o":[[11.648,0],[0,11.648],[-11.648,0],[0,-11.648]],"v":[[21.589,58.413],[42.679,79.503],[21.589,100.594],[0.498,79.503]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20,"s":[{"i":[[-11.648,0],[0,-11.648],[11.648,0],[0,11.648]],"o":[[11.648,0],[0,11.648],[-11.648,0],[0,-11.648]],"v":[[21.589,58.413],[42.679,79.503],[21.589,100.594],[0.498,79.503]],"c":true}],"e":[{"i":[[-11.648,0],[0,-11.648],[11.648,0],[0,11.648]],"o":[[11.648,0],[0,11.648],[-11.648,0],[0,-11.648]],"v":[[21.589,58.413],[42.679,79.503],[21.589,100.594],[0.498,79.503]],"c":true}]},{"t":30}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"},{"inv":false,"mode":"f","pt":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":0,"s":[{"i":[[-11.648,0],[-3.816,-3.816],[0,-5.824],[3.817,-3.817],[5.824,0],[0,11.648]],"o":[[5.824,0],[3.817,3.817],[0,5.824],[-3.816,3.817],[-11.648,0],[0,-11.648]],"v":[[21.589,116.71],[36.502,122.887],[42.679,137.8],[36.502,152.714],[21.589,158.891],[0.498,137.8]],"c":true}],"e":[{"i":[[-11.708,0],[0,0],[0,-14.734],[14.698,0],[0,0],[0,16.207]],"o":[[0,0],[11.708,0],[0,14.391],[0,0],[-11.708,0],[0,-16.168]],"v":[[21.698,115.718],[85.302,115.718],[106.283,136.984],[85.302,158.117],[21.698,158.117],[0.498,136.918]],"c":true}]},{"i":{"x":0.383,"y":0.534},"o":{"x":0.754,"y":0},"n":"0p383_0p534_0p754_0","t":20,"s":[{"i":[[-11.708,0],[0,0],[0,-14.734],[14.698,0],[0,0],[0,16.207]],"o":[[0,0],[11.708,0],[0,14.391],[0,0],[-11.708,0],[0,-16.168]],"v":[[21.698,115.718],[85.302,115.718],[106.283,136.984],[85.302,158.117],[21.698,158.117],[0.498,136.918]],"c":true}],"e":[{"i":[[-11.648,0],[-3.816,-3.816],[0,-5.824],[3.817,-3.817],[5.824,0],[0,11.648]],"o":[[5.824,0],[3.817,3.817],[0,5.824],[-3.816,3.817],[-11.648,0],[0,-11.648]],"v":[[21.589,116.71],[36.502,122.887],[42.679,137.8],[36.502,152.714],[21.589,158.891],[0.498,137.8]],"c":true}]},{"t":120}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 2"},{"inv":false,"mode":"f","pt":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":0,"s":[{"i":[[-11.708,0],[0,0],[0,-11.708],[0,0],[11.708,0],[0,0],[0,11.708],[0,0]],"o":[[0,0],[11.708,0],[0,0],[0,11.708],[0,0],[-11.708,0],[0,0],[0,-11.708]],"v":[[21.698,0.109],[85.302,0.109],[106.502,21.309],[106.502,21.309],[85.302,42.508],[21.698,42.508],[0.498,21.309],[0.498,21.309]],"c":true}],"e":[{"i":[[-11.708,0],[0,0],[0,-11.708],[0,0],[11.708,0],[0,0],[0,11.708],[0,0]],"o":[[0,0],[11.708,0],[0,0],[0,11.708],[0,0],[-11.708,0],[0,0],[0,-11.708]],"v":[[21.698,0.109],[21.912,0.109],[43.111,21.309],[43.111,21.309],[21.912,42.508],[21.698,42.508],[0.498,21.309],[0.498,21.309]],"c":true}]},{"i":{"x":0.383,"y":0.534},"o":{"x":0.754,"y":0},"n":"0p383_0p534_0p754_0","t":20,"s":[{"i":[[-11.708,0],[0,0],[0,-11.708],[0,0],[11.708,0],[0,0],[0,11.708],[0,0]],"o":[[0,0],[11.708,0],[0,0],[0,11.708],[0,0],[-11.708,0],[0,0],[0,-11.708]],"v":[[21.698,0.109],[21.912,0.109],[43.111,21.309],[43.111,21.309],[21.912,42.508],[21.698,42.508],[0.498,21.309],[0.498,21.309]],"c":true}],"e":[{"i":[[-11.708,0],[0,0],[0,-11.708],[0,0],[11.708,0],[0,0],[0,11.708],[0,0]],"o":[[0,0],[11.708,0],[0,0],[0,11.708],[0,0],[-11.708,0],[0,0],[0,-11.708]],"v":[[21.698,0.109],[85.302,0.109],[106.502,21.309],[106.502,21.309],[85.302,42.508],[21.698,42.508],[0.498,21.309],[0.498,21.309]],"c":true}]},{"t":120}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 3"}],"sw":107,"sh":159,"sc":"#ffffff","ip":0,"op":120,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/MultiRPC/Assets/LottieAnimations/DiscordIconAnimation.json b/MultiRPC/Assets/LottieAnimations/DiscordIconAnimation.json deleted file mode 100644 index f976a6f7..00000000 --- a/MultiRPC/Assets/LottieAnimations/DiscordIconAnimation.json +++ /dev/null @@ -1 +0,0 @@ -{"v":"5.3.4","fr":60,"ip":0,"op":61,"w":200,"h":164,"nm":"DiscordIconAnimation","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":1,"nm":"Colour","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[100,82,0],"ix":2},"a":{"a":0,"k":[400.5,329,0],"ix":1},"s":{"a":0,"k":[39.537,39.537,100],"ix":6}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[3,0],[24.23,-14.373],[0.855,-0.819],[0.838,-0.803],[2.303,-1.542],[2.227,-2.661],[2.327,-4.629],[4.752,-12.234],[3.846,-62.704],[0,-7.667],[-8.965,-7.634],[-11.842,-5.918],[-5.886,-2.196],[-7.06,-1.812],[-7.485,-1.122],[-5.517,1.995],[-2.391,2.88],[-1.781,2.187],[-3.353,6.483],[10.352,5.993],[0.953,0.632],[1.336,1.022],[5.511,7.425],[-2.634,1.968],[-21.417,-7.412],[-3.376,-1.014],[-3.469,-0.905],[-3.401,-0.827],[-24.878,-0.231],[-42.205,24.405],[32.84,-8.16],[-0.734,-0.939],[-1.429,-1.869],[-0.581,-0.716],[-1.371,-1.612],[-2.551,-3.074],[-0.545,-0.712],[-2.354,-0.732],[-8.173,1.076],[-13.436,7.447],[-9.93,8.803],[-4.353,4.586],[-1.131,4.774],[1.087,12.872],[7.957,29.012],[9.537,22.252],[1.016,2.371],[1.479,3.307],[1.984,4.077],[0.881,1.057],[0.919,0.642],[0.852,0.602],[0.499,0.225],[0.37,0.247],[0.511,0.23],[0.358,0.248],[3.643,2.121],[30.049,3.13],[3.667,0],[-0.816,-2.29],[-4.099,-1.487],[-4.008,-1.718],[-18.01,-12.677],[-1.697,-1.362],[0.63,-1.625],[57.178,2.514],[48.255,-25.326],[-36.613,11.455],[0.138,-0.268],[0.458,2.848]],"o":[[-32.875,3.504],[-1.178,0.699],[-0.85,0.815],[-1.024,0.981],[-3.783,2.533],[-2.514,3.005],[-5.493,10.926],[-19.492,50.186],[0,7.667],[6.894,7.868],[8.341,7.103],[4.917,2.457],[5.702,2.128],[6.144,1.577],[7.057,1.058],[1.475,-0.533],[2.665,-3.21],[5.421,-6.656],[-14.261,-3.548],[-1.746,-1.011],[-1.909,-1.267],[-8.127,-6.215],[-0.664,-0.894],[17.823,12.077],[3.243,1.122],[3.305,0.993],[3.545,0.925],[20.998,5.103],[66.36,0.617],[-18.142,22.858],[-1.009,1.432],[1.944,2.486],[0.491,0.641],[1.352,1.667],[2.057,2.419],[0.629,0.758],[1.853,2.423],[4.967,1.545],[21.465,-2.825],[9.777,-5.419],[3.479,-3.084],[4.509,-4.75],[2.007,-8.474],[-3.108,-36.799],[-6.35,-23.15],[-1.171,-2.731],[-1.416,-3.305],[-2.002,-4.476],[-1.223,-2.514],[-0.681,-0.817],[-0.832,-0.581],[-0.441,-0.311],[-0.324,-0.146],[-0.46,-0.307],[-0.317,-0.143],[-3.611,-2.5],[-24.181,-14.079],[-3.667,0],[-0.715,2.483],[0.35,0.982],[3.398,1.233],[20.524,8.796],[1.935,1.362],[0.865,0.694],[-38.066,-20.416],[-74.391,-3.271],[21.76,-19.106],[3.775,-1.181],[1.418,-2.763],[-3,0]],"v":[[323,150],[235,179],[233,180],[230,182],[223,186],[212,194],[206,207],[189,244],[150,421],[150,444],[173,469],[203,488],[219,496],[238,501],[258,505],[281,507],[288,499],[295,490],[309,472],[270,455],[266,452],[261,449],[240,428],[238,424],[300,453],[310,457],[321,459],[331,462],[402,471],[567,424],[492,472],[494,476],[499,483],[501,485],[505,490],[513,498],[514,501],[521,507],[544,506],[599,488],[627,468],[639,456],[650,442],[649,405],[632,306],[606,231],[603,224],[599,214],[592,201],[589,194],[586,193],[584,190],[582,190],[581,188],[579,188],[578,186],[566,179],[479,150],[468,150],[463,157],[486,164],[496,168],[556,201],[562,205],[565,209],[418,168],[227,209],[320,160],[336,156],[332,150]],"c":true}],"e":[{"i":[[3,0],[24.23,-14.373],[0.855,-0.819],[0.838,-0.803],[2.303,-1.542],[2.227,-2.661],[2.327,-4.629],[4.752,-12.234],[3.846,-62.704],[0,-7.667],[-8.965,-7.634],[-11.842,-5.918],[-5.886,-2.196],[-7.06,-1.812],[-7.485,-1.122],[-5.517,1.995],[-2.391,2.88],[-1.781,2.187],[-3.353,6.483],[10.352,5.993],[0.953,0.632],[1.336,1.022],[5.511,7.425],[-2.634,1.968],[-21.417,-7.412],[-3.376,-1.014],[-3.469,-0.905],[-3.401,-0.827],[-24.878,-0.231],[-42.205,24.405],[32.84,-8.16],[-0.734,-0.939],[-1.429,-1.869],[-0.581,-0.716],[-1.371,-1.612],[-2.551,-3.074],[-0.545,-0.712],[-2.354,-0.732],[-8.173,1.076],[-13.436,7.447],[-9.93,8.803],[-4.353,4.586],[-1.131,4.774],[1.087,12.872],[7.957,29.012],[9.537,22.252],[1.016,2.371],[1.479,3.307],[1.984,4.077],[0.881,1.057],[0.919,0.642],[0.852,0.602],[0.499,0.225],[0.37,0.247],[0.511,0.23],[0.358,0.248],[3.643,2.121],[30.049,3.13],[3.667,0],[-0.816,-2.29],[-4.099,-1.487],[-4.008,-1.718],[-18.01,-12.677],[-1.697,-1.362],[0.63,-1.625],[57.178,2.514],[48.255,-25.326],[-36.613,11.455],[0.138,-0.268],[0.458,2.848]],"o":[[-32.875,3.504],[-1.178,0.699],[-0.85,0.815],[-1.024,0.981],[-3.783,2.533],[-2.514,3.005],[-5.493,10.926],[-19.492,50.186],[0,7.667],[6.894,7.868],[8.341,7.103],[4.917,2.457],[5.702,2.128],[6.144,1.577],[7.057,1.058],[1.475,-0.533],[2.665,-3.21],[5.421,-6.656],[-14.261,-3.548],[-1.746,-1.011],[-1.909,-1.267],[-8.127,-6.215],[-0.664,-0.894],[17.823,12.077],[3.243,1.122],[3.305,0.993],[3.545,0.925],[20.998,5.103],[66.36,0.617],[-18.142,22.858],[-1.009,1.432],[1.944,2.486],[0.491,0.641],[1.352,1.667],[2.057,2.419],[0.629,0.758],[1.853,2.423],[4.967,1.545],[21.465,-2.825],[9.777,-5.419],[3.479,-3.084],[4.509,-4.75],[2.007,-8.474],[-3.108,-36.799],[-6.35,-23.15],[-1.171,-2.731],[-1.416,-3.305],[-2.002,-4.476],[-1.223,-2.514],[-0.681,-0.817],[-0.832,-0.581],[-0.441,-0.311],[-0.324,-0.146],[-0.46,-0.307],[-0.317,-0.143],[-3.611,-2.5],[-24.181,-14.079],[-3.667,0],[-0.715,2.483],[0.35,0.982],[3.398,1.233],[20.524,8.796],[1.935,1.362],[0.865,0.694],[-38.066,-20.416],[-74.391,-3.271],[21.76,-19.106],[3.775,-1.181],[1.418,-2.763],[-3,0]],"v":[[323,150],[235,179],[233,180],[230,182],[223,186],[212,194],[206,207],[189,244],[150,421],[150,444],[173,469],[203,488],[219,496],[238,501],[258,505],[281,507],[288,499],[295,490],[309,472],[270,455],[266,452],[261,449],[240,428],[238,424],[300,453],[310,457],[321,459],[331,462],[402,471],[567,424],[492,472],[494,476],[499,483],[501,485],[505,490],[513,498],[514,501],[521,507],[544,506],[599,488],[627,468],[639,456],[650,442],[649,405],[632,306],[606,231],[603,224],[599,214],[592,201],[589,194],[586,193],[584,190],[582,190],[581,188],[579,188],[578,186],[566,179],[479,150],[468,150],[463,157],[486,164],[496,168],[556,201],[562,205],[565,209],[418,168],[227,209],[320,160],[336,156],[332,150]],"c":true}]},{"t":36}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"},{"inv":false,"mode":"s","pt":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"n":"0_1_0p333_0","t":0,"s":[{"i":[[4.137,-11.897],[-2.957,-6.723],[-4.584,-3.82],[-1.032,-0.688],[-0.848,-0.813],[-3.578,-0.463],[-7.555,12.154],[-0.714,2.362],[-0.163,0.526],[3.974,8.396],[11.418,2.67],[7.231,-1.324]],"o":[[-3.293,9.47],[3.022,6.872],[1.605,1.338],[1.895,1.263],[2.652,2.541],[23.339,3.022],[1.276,-2.053],[0.114,-0.377],[3.375,-10.913],[-5.134,-10.845],[-5.86,-1.37],[-15.862,2.904]],"v":[[281,338],[281,372],[293,390],[298,395],[303,397],[316,402],[360,379],[362,374],[364,372],[362,334],[333,310],[314,310]],"c":true}],"e":[{"i":[[4.137,-11.897],[-2.957,-6.723],[-4.584,-3.82],[-1.032,-0.688],[-0.848,-0.813],[-3.578,-0.463],[-7.555,12.154],[-0.714,2.362],[-0.163,0.526],[3.974,8.396],[11.418,2.67],[7.231,-1.324]],"o":[[-3.293,9.47],[3.022,6.872],[1.605,1.338],[1.895,1.263],[2.652,2.541],[23.339,3.022],[1.276,-2.053],[0.114,-0.377],[3.375,-10.913],[-5.134,-10.845],[-5.86,-1.37],[-15.862,2.904]],"v":[[242.97,313.996],[242.97,347.996],[254.97,365.996],[259.97,370.996],[264.97,372.996],[277.97,377.996],[321.97,354.996],[323.97,349.996],[325.97,347.996],[323.97,309.996],[294.97,285.996],[275.97,285.996]],"c":true}]},{"i":{"x":0,"y":0},"o":{"x":0.514,"y":0},"n":"0_0_0p514_0","t":30,"s":[{"i":[[4.137,-11.897],[-2.957,-6.723],[-4.584,-3.82],[-1.032,-0.688],[-0.848,-0.813],[-3.578,-0.463],[-7.555,12.154],[-0.714,2.362],[-0.163,0.526],[3.974,8.396],[11.418,2.67],[7.231,-1.324]],"o":[[-3.293,9.47],[3.022,6.872],[1.605,1.338],[1.895,1.263],[2.652,2.541],[23.339,3.022],[1.276,-2.053],[0.114,-0.377],[3.375,-10.913],[-5.134,-10.845],[-5.86,-1.37],[-15.862,2.904]],"v":[[242.97,313.996],[242.97,347.996],[254.97,365.996],[259.97,370.996],[264.97,372.996],[277.97,377.996],[321.97,354.996],[323.97,349.996],[325.97,347.996],[323.97,309.996],[294.97,285.996],[275.97,285.996]],"c":true}],"e":[{"i":[[4.137,-11.897],[-2.957,-6.723],[-4.584,-3.82],[-1.032,-0.688],[-0.848,-0.813],[-3.578,-0.463],[-7.555,12.154],[-0.714,2.362],[-0.163,0.526],[3.974,8.396],[11.418,2.67],[7.231,-1.324]],"o":[[-3.293,9.47],[3.022,6.872],[1.605,1.338],[1.895,1.263],[2.652,2.541],[23.339,3.022],[1.276,-2.053],[0.114,-0.377],[3.375,-10.913],[-5.134,-10.845],[-5.86,-1.37],[-15.862,2.904]],"v":[[281,338],[281,372],[293,390],[298,395],[303,397],[316,402],[360,379],[362,374],[364,372],[362,334],[333,310],[314,310]],"c":true}]},{"t":60}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 2"},{"inv":false,"mode":"s","pt":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"n":"0_1_0p333_0","t":0,"s":[{"i":[[4.1,-11.911],[-27.941,-6.237],[-4.21,19.564],[2.997,6.652],[11.864,2.684],[5.879,-1.076]],"o":[[-8.811,25.596],[28.053,6.262],[2.227,-10.348],[-5.816,-12.911],[-5.235,-1.184],[-14.962,2.739]],"v":[[438,337],[469,401],[521,368],[519,336],[489,310],[471,310]],"c":true}],"e":[{"i":[[4.1,-11.911],[-27.941,-6.237],[-4.21,19.564],[2.997,6.652],[11.864,2.684],[5.879,-1.076]],"o":[[-8.811,25.596],[28.053,6.262],[2.227,-10.348],[-5.816,-12.911],[-5.235,-1.184],[-14.963,2.739]],"v":[[399.969,312.996],[430.969,376.996],[482.97,343.996],[480.97,311.996],[450.97,285.996],[432.97,285.996]],"c":true}]},{"i":{"x":0,"y":0},"o":{"x":0.514,"y":0},"n":"0_0_0p514_0","t":30,"s":[{"i":[[4.1,-11.911],[-27.941,-6.237],[-4.21,19.564],[2.997,6.652],[11.864,2.684],[5.879,-1.076]],"o":[[-8.811,25.596],[28.053,6.262],[2.227,-10.348],[-5.816,-12.911],[-5.235,-1.184],[-14.963,2.739]],"v":[[399.969,312.996],[430.969,376.996],[482.97,343.996],[480.97,311.996],[450.97,285.996],[432.97,285.996]],"c":true}],"e":[{"i":[[4.1,-11.911],[-27.941,-6.237],[-4.21,19.564],[2.997,6.652],[11.864,2.684],[5.879,-1.076]],"o":[[-8.811,25.596],[28.053,6.262],[2.227,-10.348],[-5.816,-12.911],[-5.235,-1.184],[-14.962,2.739]],"v":[[438,337],[469,401],[521,368],[519,336],[489,310],[471,310]],"c":true}]},{"t":60}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 3"}],"sw":801,"sh":658,"sc":"#ffffff","ip":0,"op":62.4,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/MultiRPC/Assets/LottieAnimations/IconAnimations.aep b/MultiRPC/Assets/LottieAnimations/IconAnimations.aep deleted file mode 100644 index 07547163..00000000 Binary files a/MultiRPC/Assets/LottieAnimations/IconAnimations.aep and /dev/null differ diff --git a/MultiRPC/Assets/LottieAnimations/LogsIconAnimation.json b/MultiRPC/Assets/LottieAnimations/LogsIconAnimation.json deleted file mode 100644 index 6bd68d8e..00000000 --- a/MultiRPC/Assets/LottieAnimations/LogsIconAnimation.json +++ /dev/null @@ -1 +0,0 @@ -{"v":"5.3.4","fr":60,"ip":0,"op":60,"w":156,"h":156,"nm":"LogsIconAnimation ","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":1,"nm":"Colour","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[78,78,0],"ix":2},"a":{"a":0,"k":[400.5,329,0],"ix":1},"s":{"a":0,"k":[98.718,98.718,100],"ix":6}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"f","pt":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[349.649,299.408],[407.018,299.408],[407.018,304.629],[349.649,304.629],[349.649,299.408]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"},{"inv":false,"mode":"f","pt":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[349.649,341.178],[373.558,341.178],[373.558,346.399],[349.649,346.399]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 3"},{"inv":false,"mode":"f","pt":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[349.649,362.063],[363.991,362.063],[363.991,367.284],[349.649,367.284]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 4"},{"inv":false,"mode":"f","pt":{"a":0,"k":{"i":[[0,0],[9.089,0],[0,0],[0,9.264],[0,0],[-9.089,0],[0,0],[0,0],[-2.961,0],[0,3.072],[0,0],[0,0],[0,0],[-2.961,0],[0,3.072],[0,0],[0,0],[0,0],[-2.961,0],[0,3.072],[0,0],[0,0],[0,0],[-2.961,0],[0,3.072],[0,0],[0,0],[0,-9.265],[0,0],[0,0],[0,0],[10.331,0],[0,0],[0,0],[2.961,0],[0,-3.072],[0,0],[0,0],[0,0],[2.961,0],[0,-3.072],[0,0],[0,0],[0,0],[2.961,0],[0,-3.072],[0,0],[0,0],[0,0],[2.961,0],[0,-3.072],[0,0],[0,0],[0,-10.554],[0,0],[-10.331,0],[0,0],[0,10.554],[0,0],[0,0],[0,0]],"o":[[0,9.28],[0,0],[-9.089,0],[0,0],[0,-9.28],[0,0],[0,0],[0,3.072],[2.961,0],[0,0],[0,0],[0,0],[0,3.072],[2.961,0],[0,0],[0,0],[0,0],[0,3.072],[2.961,0],[0,0],[0,0],[0,0],[0,3.072],[2.961,0],[0,0],[0,0],[9.089,0],[0,0],[0,0],[0,0],[0,-10.554],[0,0],[0,0],[0,-3.072],[-2.961,0],[0,0],[0,0],[0,0],[0,-3.072],[-2.961,0],[0,0],[0,0],[0,0],[0,-3.072],[-2.961,0],[0,0],[0,0],[0,0],[0,-3.072],[-2.961,0],[0,0],[0,0],[-10.347,0],[0,0],[0,10.554],[0,0],[10.347,0],[0,0],[0,0],[0,0],[0,0]],"v":[[447.642,381.387],[431.183,398.181],[347.818,398.181],[331.359,381.387],[331.359,286.434],[347.818,269.64],[349.649,269.64],[349.649,275.451],[355.013,281.006],[360.378,275.451],[360.378,269.625],[368.783,269.625],[368.783,275.435],[374.147,280.99],[379.512,275.435],[379.512,269.625],[387.917,269.625],[387.917,275.435],[393.281,280.99],[398.646,275.435],[398.646,269.625],[407.05,269.625],[407.05,275.435],[412.415,280.99],[417.779,275.435],[417.779,269.625],[431.23,269.625],[447.69,286.418],[447.69,288.679],[457.098,288.679],[457.098,279.924],[438.378,260.822],[417.732,260.822],[417.732,256.555],[412.367,251],[407.003,256.555],[407.003,260.822],[398.598,260.822],[398.598,256.555],[393.233,251],[387.869,256.555],[387.869,260.822],[379.464,260.822],[379.464,256.555],[374.099,251],[368.735,256.555],[368.735,260.822],[360.33,260.822],[360.33,256.555],[354.966,251],[349.649,256.555],[349.649,260.822],[340.671,260.822],[321.951,279.924],[321.951,387.898],[340.671,407],[438.314,407],[457.034,387.898],[457.034,368.096],[447.626,368.096],[447.626,381.387]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 7"},{"inv":false,"mode":"f","pt":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[349.649,320.293],[383.109,320.293],[383.109,325.514],[349.649,325.514]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 2"},{"inv":false,"mode":"f","pt":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":0,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[387.089,361.919],[387.089,389.92],[412.733,389.92]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[349.641,339.222],[349.641,367.223],[375.283,367.223]],"c":true}]},{"i":{"x":0,"y":0.69},"o":{"x":0.333,"y":0},"n":"0_0p69_0p333_0","t":15,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[349.641,339.222],[349.641,367.223],[375.283,367.223]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[364.012,339.159],[364.012,367.159],[389.654,367.159]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"n":"0p833_0p833_1_0","t":35,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[364.012,339.159],[364.012,367.159],[389.654,367.159]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[387.089,361.919],[387.089,389.92],[412.733,389.92]],"c":true}]},{"t":60}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 5"},{"inv":false,"mode":"f","pt":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":0,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[391.021,357.239],[417.063,385.685],[464.532,333.855],[438.489,305.409]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[353.573,334.542],[379.615,362.988],[427.081,311.158],[401.038,282.712]],"c":true}]},{"i":{"x":0,"y":0.69},"o":{"x":0.333,"y":0},"n":"0_0p69_0p333_0","t":15,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[353.573,334.542],[379.615,362.988],[427.081,311.158],[401.038,282.712]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[367.944,334.479],[393.987,362.925],[441.453,311.095],[415.41,282.648]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"n":"0p833_0p833_1_0","t":35,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[367.944,334.479],[393.987,362.925],[441.453,311.095],[415.41,282.648]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[391.021,357.239],[417.063,385.685],[464.532,333.855],[438.489,305.409]],"c":true}]},{"t":60}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 6"},{"inv":false,"mode":"f","pt":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":0,"s":[{"i":[[4.139,4.091],[0,0],[3.868,-4.187],[0,0],[0,0],[-3.868,4.203]],"o":[[0,0],[-4.123,-4.091],[-3.868,4.187],[0,0],[0,0],[3.852,-4.186]],"v":[[474.703,307.351],[462.128,294.903],[447.658,295.094],[441.402,302.544],[467.747,330.305],[475.197,322.346]],"c":true}],"e":[{"i":[[4.139,4.091],[0,0],[3.869,-4.187],[0,0],[0,0],[-3.868,4.203]],"o":[[0,0],[-4.122,-4.091],[-3.868,4.187],[0,0],[0,0],[3.852,-4.187]],"v":[[437.252,284.654],[424.677,272.206],[410.207,272.397],[403.951,279.846],[430.296,307.608],[437.746,299.649]],"c":true}]},{"i":{"x":0,"y":0.69},"o":{"x":0.333,"y":0},"n":"0_0p69_0p333_0","t":15,"s":[{"i":[[4.139,4.091],[0,0],[3.869,-4.187],[0,0],[0,0],[-3.868,4.203]],"o":[[0,0],[-4.122,-4.091],[-3.868,4.187],[0,0],[0,0],[3.852,-4.187]],"v":[[437.252,284.654],[424.677,272.206],[410.207,272.397],[403.951,279.846],[430.296,307.608],[437.746,299.649]],"c":true}],"e":[{"i":[[4.139,4.091],[0,0],[3.869,-4.187],[0,0],[0,0],[-3.868,4.203]],"o":[[0,0],[-4.122,-4.091],[-3.868,4.187],[0,0],[0,0],[3.852,-4.187]],"v":[[451.624,284.59],[439.049,272.142],[424.579,272.333],[418.323,279.783],[444.668,307.545],[452.118,299.586]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"n":"0p833_0p833_1_0","t":35,"s":[{"i":[[4.139,4.091],[0,0],[3.869,-4.187],[0,0],[0,0],[-3.868,4.203]],"o":[[0,0],[-4.122,-4.091],[-3.868,4.187],[0,0],[0,0],[3.852,-4.187]],"v":[[451.624,284.59],[439.049,272.142],[424.579,272.333],[418.323,279.783],[444.668,307.545],[452.118,299.586]],"c":true}],"e":[{"i":[[4.139,4.091],[0,0],[3.868,-4.187],[0,0],[0,0],[-3.868,4.203]],"o":[[0,0],[-4.123,-4.091],[-3.868,4.187],[0,0],[0,0],[3.852,-4.186]],"v":[[474.703,307.351],[462.128,294.903],[447.658,295.094],[441.402,302.544],[467.747,330.305],[475.197,322.346]],"c":true}]},{"t":60}],"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 8"}],"sw":801,"sh":658,"sc":"#ffffff","ip":0,"op":60,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/MultiRPC/Assets/LottieAnimations/SettingsIconAnimation.json b/MultiRPC/Assets/LottieAnimations/SettingsIconAnimation.json deleted file mode 100644 index dac0a8f5..00000000 --- a/MultiRPC/Assets/LottieAnimations/SettingsIconAnimation.json +++ /dev/null @@ -1 +0,0 @@ -{"v":"5.3.4","fr":60,"ip":0,"op":60,"w":150,"h":150,"nm":"SettingsIconAnimation","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":1,"nm":"Colour","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"n":["0_1_0p167_0p167"],"t":0,"s":[0],"e":[-25]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0_1_0p333_0"],"t":10,"s":[-25],"e":[415]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":45,"s":[415],"e":[360]},{"t":60}],"ix":10},"p":{"a":0,"k":[75,75,0],"ix":2},"a":{"a":0,"k":[400.5,329,0],"ix":1},"s":{"a":0,"k":[96.765,96.765,100],"ix":6}},"ao":0,"hasMask":true,"masksProperties":[{"inv":false,"mode":"a","pt":{"a":0,"k":{"i":[[0,0],[-0.032,2.568],[0.305,2.55],[0,0],[1.136,1.617],[0,0],[1.762,-0.783],[0,0],[4.636,1.985],[0,0],[1.889,-0.106],[0,0],[0.269,-1.836],[0,0],[3.902,-3.208],[0,0],[0.968,-1.649],[0,0],[-1.589,-1.161],[0,0],[0.032,-2.568],[-0.305,-2.55],[0,0],[-0.922,-1.707],[0,0],[-1.764,0.738],[0,0],[-4.636,-1.985],[0,0],[-1.855,0.014],[0,0],[-0.269,1.836],[0,0],[-3.901,3.208],[0,0],[-0.967,1.649],[0,0],[1.416,1.282]],"o":[[0.314,-2.549],[-0.041,-2.568],[0,0],[1.578,-1.19],[0,0],[-0.939,-1.684],[0,0],[-3.966,-3.115],[0,0],[-0.186,-1.883],[0,0],[-1.855,-0.014],[0,0],[-4.687,1.883],[0,0],[-1.764,-0.738],[0,0],[-1.001,1.695],[0,0],[-0.314,2.549],[0.041,2.568],[0,0],[-1.521,1.204],[0,0],[0.967,1.649],[0,0],[3.966,3.115],[0,0],[0.269,1.836],[0,0],[1.855,0.014],[0,0],[4.687,-1.883],[0,0],[1.764,0.738],[0,0],[0.953,-1.655],[0,0]],"v":[[457.782,336.596],[458.3,328.914],[457.782,321.232],[474.204,308.516],[474.997,303.483],[459.633,276.994],[454.863,275.403],[435.528,283.085],[422.569,275.403],[419.635,255.005],[415.924,251.827],[384.93,251.827],[381.224,255.005],[378.311,275.672],[365.352,283.354],[345.991,275.403],[341.222,276.994],[325.868,303.747],[326.904,308.78],[343.342,321.496],[342.823,329.178],[343.342,336.86],[326.904,349.576],[325.868,354.609],[341.232,381.098],[346.001,382.689],[365.341,375.007],[378.301,382.689],[381.214,403.087],[384.92,406.265],[415.913,406.265],[419.62,403.087],[422.533,382.689],[435.492,375.007],[454.832,382.689],[459.601,381.098],[474.966,354.345],[474.173,349.312]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 1"},{"inv":false,"mode":"s","pt":{"a":0,"k":{"i":[[14.899,-0.06],[0,14.924],[-14.924,0],[0,-14.924],[0,0]],"o":[[-14.924,0],[0,-14.924],[14.924,0],[0,0],[-0.06,14.899]],"v":[[400.559,356.201],[373.537,329.178],[400.559,302.156],[427.582,329.178],[427.582,329.178]],"c":true},"ix":1},"o":{"a":0,"k":100,"ix":3},"x":{"a":0,"k":0,"ix":4},"nm":"Mask 2"}],"sw":801,"sh":658,"sc":"#ffffff","ip":0,"op":60,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/MultiRPC/Assets/MultiRPCLogo.ai b/MultiRPC/Assets/MultiRPCLogo.ai deleted file mode 100644 index 5a5734c2..00000000 --- a/MultiRPC/Assets/MultiRPCLogo.ai +++ /dev/null @@ -1,12172 +0,0 @@ -%PDF-1.5 % -1 0 obj <>/OCGs[6 0 R 7 0 R 5 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <>stream - - - - - application/pdf - - - MultiRPCLogo - - - Adobe Illustrator CC 22.1 (Windows) - 2019-04-07T15:22:27+01:00 - 2019-04-07T15:22:27+01:00 - 2019-04-07T15:22:27+01:00 - - - - 256 - 256 - JPEG - /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAEAAwER AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE 1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp 0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo +DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8AaDnoz4wuGBC4HAhcMDFc MCFwOBC4YGK4YELgcCF4wIXDAxXA4ELhgQuBwMVwOBC4HAhcMDFeDgQuGBC4YELgcDFcMCFwwIXA 4GK4YELgcCF4OLFcMCFwwIXA4ELgcDFcMCHngOb56lcDihcDgYrwcCFwwIXDAhcDgYrgcCFwwIXA 4GK4YELgcCF4OBiuBwIXA4ELgcDFcDgQuGBC8HAhcMDFcDgQuBwIXDAxXA4ELgcCFwwIXA4GK8HA hcDgQuBwMVwOBC4HAh54Dm/epXDAxXA4ELgcCF4wMVwOBC4HAhcDgQuGBiuBwIXA4ELhgYrgcCF4 wIXA4ELgcWK4YELhgQuBwMVwwIXDAheDgQuGRYrhihcDkULhgYrhgQuBxQvGBiuBwIXA4ELgcDF5 4M3z1S4HAxXDFC4HAhcDgYrhgQuGBC8HAxXA4ELhgQuBwMVwwIXDAhcDgQuGBivBwIXA4ELhgYrg cCFwOBC4YELhgYrwcCFwOBC4YGK4HAhcMCFwOBC4HAxXA4oXA4ELwcixeeDN+9SuBwIXA4ELgcDF cDihcMihcDgYrgcCF4OBC4YELgcDFcDgQuGBC4HAxXDAhcDgQuBxYrxgQuGBC4HAhcMDFcDgQuBw IXA4GK4YELgcCF4OBiuGBC4HAhcMCFwwMVwOBDzwHN+9SuGBC8HAxXDAhcMCFwOBiuGBC4YELgcC FwwMVwwIXg4ELhgYrhgQuBwIXDAhcDgYrgcCF4wIXA4GK4HAhcMCFwwMVwOBC4HAhcMCF4OBiuGB C4HAhcDixXDAhcMCHngOb56lcDgYrhgQvBwIXA4sVwOBC4HAhcMCFwOBiuBwIXDAhcDgQvByLFcD gQuBxQuByLFcDgQuBxQuBwMVwwIXA4ELxgYrgcCFwOBC4HAhcMDFcDgQuBwIXDAxXg4ELhgQuGBi 88BzfvVLgcDFcMCFwOBC4HAxXjAhcDgQuGBiuGBC4HAhcMDFcMCFwOBC8YENjAxXg4ELgcCFwOBi uBxQuGRQuGKFwORYrxgQuGBC4HAxXDAhcMCFwOBiuGBC4YELwcULhgYvPBm+epXA4ELhgQuBwMVw OBC4HFC4YGK8HAhcDgQuGBC4HAxXDAhcDgQuBwMVwOBC4YELwcDFcDgQuBwIXA4GK4YELgcCFwOB C4YGK4HAheDgQuGBC4HAxXA4ELgcCFwOBivBwIedjN+9SuBwIXjAxXA4ELgcCFwOBiuBwIXA4ELw cDFcMCFwOBC4YELgcDFcDgQuGBC4YELgcDFeMCFwOBC4HFiuGBC4YELgcDFcMCFwwIXA4ELxgYrh gQuBwIXDIsVwwIXA4oeeDN89SuGLFcDkULxgQuBwIXA4GK4HFC4YELgcDFcMCFwwITXRfLeuay/H TrR51Bo0tOMa/N2ov45jZ9VjxfWacvSdnZ9QaxxMvPp8+TNLT8oZoYDcazqkNnEu78ByAHvI5jUf cc1U+2QTWOJkXosXsmYx4s2SMB+OppLdUsvy0sIpIre7vtRuqEK8RQRq1NjVkUEfKuX4p6uZsiMQ 4Gqw9mYgRGWTJPyqvuH6WJxo7txRSzeCip/DNkTTzoiTsEZHo2sOKpY3DAdeMTn9Qyo54D+IfNuG izHlCX+lK5tG1hBV7G4UHu0Tj9YwDPA/xD5olos45wn/AKUoco6NxkUoe4IofuOTu+TjSiQaOzOd K0P8t9Tijjj1K5tbugBW4ZI6tT3Up9AbNRlz6rGbMQR5fj9D1mk7P7K1AAGScJ/0qH6K+RRV/wDl HdqpfTr9Jh1CTKUNPZl5g/cMrx9sR/ijXubtT7GTAvFkEveK+0WxLVfL+s6S/G/tXhUmiyfajPyd armyw6nHk+k28trezNRpjWWBj59PnyQAy5164YELgcCFwOBC4YGK4HAhcMCFwOBivBwIXA4ELgcC HngOb96hcMCFwOBC4HAhcMDFcDgQvBwIXA4GK4HFCpGjyOqIpZ3IVVG5JOwAGRJrcqIkmhzet+Vv ypsbKEX/AJjZZZFHM2vKkMYAqfUbblTv+z885rV9rykeHFt59T7nuezfZmGMeJqNz3dB7z1+73sm l1TV7iMWvlrT0jt1HFb+6Bht1X/iqIAO48DQL8814xQieLNLfuG5+J5D73cS1OaY4NNACP8AOl6Y /wCaOZ+5Lz+XI1CYXPmLVLjU5gaiJSIYVr2VBWn0Uy/+U+AViiID5lxD7PeMeLU5JZD3co/L9VJ1 ZeTfK1kB9X0y3BHRpE9Vh/spOTZiZNbmnzkfu+52OHsjS4/pxx+Iv77TeKGKJeMSLGv8qgAfhmMZ E83YRgIigKXYGTsVWSwwzJwljWRP5XAYfccIkRyYzhGQqQsJNfeSfK16D6unRIx/bhBiNfH93x/H MrHrs0eUj8d3VajsLR5fqxxHu9P3UgYPKOq6Qa6BqrrEN/qN6PVhPsGWjJ9Arl0tZDJ/eR3747Fw 8fY2bTf4tlIH8yfqj+sfBNLfU3lH1TWbP6rK/wAJ5Ultpa7UWSlN/wCV6H55jyxV6sZv7CPh+p2G PVmXo1EOAn/OhL3H9EqPvYx5m/LK2nV7rRaQT7k2hP7tv9Qn7J/D5Zn6XtQjbJuO953tf2ShMGen 9Mv5vQ+7u+73PM2VkYo4KspIZTsQR1Gb67fOpRINHm2DixXDAxXDAhcDgQuGBiuBwIXA4ELxgQuG Bi88BzfvUrgcCFwwIXA4GK4YELhgQuBwMV4OBC4YEM6/KXy+NS8w/XplrbaYBLv0Mzf3Y+ihb6M0 /bGp4MXCOc/u6vRezWh8XUcZ+nHv8en6/g9teOOQAOoYKQwBFaEdDnJgkPopiDzXYEuxV2KuxV2K uxV2KuxV2KuIDAqwqDsQehGKCLcAAAAKAdBioFPIvzK0QWGufXIlpb34Mm3QSr/effUN9OdL2Xn4 8fCecfufLvazs/wdT4kR6cm/+d1/X8WJjNi8quBwIXDAhcMCFwOBiuGBC4YELgcDFcMCHngzfvUr wcCFwwMVwwIXA4ELhgYrhgQuBwIXg4ofQH5Z6J+ivKdtzXjcXv8ApU3j+8A4D6EA+nOK7Vz+JmPd Hb8fF9N7A0ng6WN/VP1H48vsZVmud07FXYq7FXYq7FXYq7FXYq7FXYq7FWOef9I/SPlu44rWe0/0 iLx+AfGPpSuZ3Z2bgyjuOzoPaTRePpJV9UPUPhz+y3i4OdS+RrgcCF4OBiuGBC4HAhcDgQuGBiuB wIXA4EPPBm/epXA4GK8HAhcMCFwOBC4YGK4YELgcCE08t6U2ra7Y6cASLmZVkp1EYNXP0ICcx9Vm 8PHKfcHJ0Om8bNHH/OP2dfsfTKqqKFUBVUUUDoAM4Am31sCtg3il2KuxV2KuxV2KuxV2KuxV2Kux V2KtMqspVhVWFCD0IOIKCARReB65px03WLyxPSCVlSvdDuh+lSM7LBk8SAl3h8S7R0v5fPPH/Nl9 nT7EEMtcJcDgYrxkULhgQuBwMVwwIXDAhcDgQ88Gb96hcMCFwOBC8YENjAxXg4ELgcCFwwMXon5K 6Z9Y8xXF8wqljAQp8JJjxH/CB80nbuXhxCP84/d+A9N7Lafizmf8yP2n9lva85N792KuxVI/Nfm7 TPLdms11WSeWot7VCObkdTv0UdzmXo9HPPKo8updb2n2pj0kOKW8jyHf+x5235066Z+S2NqLev8A dn1C9P8AX5Af8Lm8/kPHX1Sv4PIn2uz8W0IcPxv53+hnvlDzvpvmSFliU299EKzWrGpp05I23Ja+ 2abW6CeA77xPV6jsrtnHrBt6ZjnH9XeGR5gu4diqQebPOOneXLdDMDPdy7wWqkAkD9pjvxX3zM0e ilnO20R1dR2t2xj0cRxeqZ5R/HIMEX84tb9epsrYwV/ux6gen+vyp/wubj+RcdfVK/g8l/ox1HF9 EOH4387/AEM/8rebdO8w2rSW4MVxFT17ZzVlr0IP7SnxzTavRywmjuOhev7K7XxayFx2kOce79YT vMR2rsVdiryj81bD0NcgvFFFu4QGPi8R4n/hSudH2RkvGY9x+9809sdNwamOQfxx+2P7KYWM2jx6 4HAhcDgQuGBiuBwIXg4ELgcCFwwMXngOb96lcMCFwOBC4HAxXA4ELgcCF4OBiuBwIe2fklY+l5du 7wj4rq5Kj/UiUAf8MzZyfb2S8oj3D73vfZXDw4JT/nS+78F6JmjendirsVeA/mTqM155xvxITwtm FvEp6KqAVp82qc7PsvEI4I113fLvaDOcmrnfKOw+H7WMg5nukTzyXqM1h5o02eIkcp0ikA7pKeDD 7mzE12ITwyB7vudj2RnOLVY5D+cB8DsX0RnEPrbsVeA+eNQmvfNepPKSfRne3QdgsJ4Cn/A1zs9B jEMMa6i/m+R9uZ5ZdXkJ6SMf9LskgzKdSyP8v9Qms/NdgYyeM7+hKo7rJtv8jQ5g9o4xLDK+m7uP Z/USxayFfxHhPx/Fvds5B9adirsVYR+bFn6miW10PtW8/E/6sikH8VGbbsidZCO8PIe2WDi08Z/z ZfYR+wPKhnRPmi4YELgcDFcMCFwOBC4HAheMDFcMCHngOb96lcMCFwwMVwOBC4YELgcCFwOBivBy KH0V+Wdr9W8j6Wnd0eU+/qSM4/A5w/as+LUS/HR9N7Cx8OkgPK/mSWT5r3bOxV2KvFPzZ8t3Nlrz 6siE2N/xJkA2SYLRlPhy48h9OdZ2PqhPHwH6o/c+d+02gljznKB6J/YfxuwUZt3mGYfln5euNU8x 291wIs9PdZ5pabc0NY0HuWFflms7U1Ix4iP4pbfrd77PaCWfUCVejGbJ8+g+b3XOPfTnYq8S/Mvy 9PpvmCa9VD9S1BjLHIBsJG3kUnx5Vb5Z1nZepGTEI/xR/AfMfaTs+WHUGdejJvfn1H6WJA5snnGa /lh5fuL7XY9RdCLKwJcyEbNLSiKD4ivI/wBuartXUCGPh/il9z0vsx2fLLqBlI9GP7+g/S9lzln0 x2KuxVj/AJ+t/X8pagtN0RZB/sHVj+AzN7PlWaLpPaPFx6HIO4A/IgvEgc6t8hXA4GK4HAhcDgQu GBC4HAxXA4ELgcCHngzfvUrwcDFcMCFwOBC4HAxXA4ELgcCFwOBD6e8pwiHyvpEQ/ZsrcGnj6S1/ HPP9ZK80z/SP3vq3Z8eHT4x/Qj9ya5jOY7FXYqpXdpa3lu9tdRJPbyCkkUgDKR7g5KEzE3E0WvLi jkiYyFxPQsVb8qfJbT+p9VkVa1MQmk4fr5fjmxHa+oqr+x0p9mtGZXwn3WWT2Gn2On2qWtlAlvbp 9mOMUHz9yfHNfkySmbkbLucGCGKPDACMR3IjINrsVUL2xs762e2vIUngf7UcgDA/fk4ZJQNxNFqz YIZYmMwJRPQsaH5XeThP6n1WTjWvpeq/D5deX45n/wArZ6q/sdJ/oY0XFfCfdxGv1sntLO1s7dLe 1iSCCMUSOMBVH0DNfOZkbJsu8xYYY4iMAIxHQKuRbHYq7FUu8xxCXy/qcf8ANazUr4+maZfpjWWJ /pD73B7UhxaXKP6EvuLwEHOyfFV4OBiuGBC4HAhcMDFcMCFwOBC4YGLzwZv3qVwOBC8HAhcMCFwO BiuGBC4YELgcDF9OeUNQsb/y1p01lJ6kKwRxH+ZWjUKysOxBGef63HKGWQkN7fVezs0MmCBgbHCB 8k4zFc1p0V1KsKqwoR7HCDSCLFMR1PVPMnldzNNC+taANzMv+9luvg/aVQOjGh/mPjssWLFqNgeD J/sT+r8U6TUajUaM2R4uHv8A44+/+cPP5lMtD88eWNaCizvUWdv+Pab93LXwCt9r/Y1yjUaDNi+q O3eNw5Wk7X0+o+iQvuOx/HuT3MN2TsVdirsVdirsVSvV/M+g6QpN/eRxSAVEIPKU/JFq2ZGHS5Mv 0j9TgavtPT6cfvJgHu6/LmlNhr2t+Y3rpdu2m6R+1qU4BmkHhBHuo/1jUfTmTk0+PB9Z4p/zRy+J ddg1+fWn91E48P8APl9R/qjl8TfzZRFEkUaxpXiooCSWJ9yTuSe5Oa8mzbvoQERQXYGSWeZ76zs9 BvpbuT04mheMeLM6lVVR3JrmRpccpZIiPe6/tXPDFppmZocJHzHIPAhnYvi64HAhcMCFwwMV4OBC 4YELhgQuBwMXngOb96lcMCFwOBC4YGK4YELwcCFwwMVwwIZL5K876l5YvS8P76xmI+tWjGgb/KU/ suPH78wNdoIaiO+0hyLsuzO1MmknY3geY/HV715d806L5gtRcabOHIFZYG+GWM+Dp/HpnG6nSZMM qmPj0fQ9Hr8WpjxYz8OoTbMZzHYqw3zV+XXlC9hnv5h+i3jUyS3UFFSgFSXQjifooTm10naeeBER 6/Iug7R7D0uQGZ/dkbkj9I5PJrPzh5i0qZ49M1W4NqjEQiWjKUBoD6TmRVqO2dJPRYsgucBf467P EY+1NRgNY8kuEcr/AFG6ZFZ/nL5niAW4gtrkDqxRkY/Srcf+FzBn2JhPIyDs8XtXqY/UIy+Ffp/Q mkX53zAfvdHVjtus5Xfv1jbMc9gjpP7P2uXH2wPXF/sv+Ole353OV+DRgG8Tc1H3ekMiOwf6f2ft SfbE9MX+y/46gLr85dfkBFtaW0AP7TB5GHy+JR+GXQ7ExjmSXEy+12oP0xjH5n9KR3fnnzPqUqx3 mpyw2zMBJ9XASiE7/CnDlQdicy4aDDjFxiCfN1ObtrVZjU8khHrw7bfCr+b0ry3+XflWGKG/LHVn lAkjnmoYzXfkIxt/wVc0Oq7SzEmP0V0D2fZ3s9pIgZP70nezy+X67ZmAAAAKAbADNW9KA7FUr17z JpOh23rX0wViKxQLvI/+qv8AE7ZkafSzymohwNf2nh0seLIfcOp9w/AeOeafNuoeYbsPN+6tIyfq 9qpqFr3J/ab3zp9Jo44Y7bnqXy/tbtfLrZ3LaA5R7v1lJQcy3TrgcCFwOBiuGBC4HAheDgQuGBiu BwIeeA5v3qVwwIXA4GK4HAhcMCFwOBivGBC4YELgcCERZ3t3Z3C3FpM9vOn2JYmKMPpGVzxxkKkL DLHklCXFEkHyZ5o35z+ZLNVjv4otRjX9tv3Uv/BIOP8AwuafP2HilvEmP2j8fF3+m9p88NpgTHyP 4+DKbT88NAcD61Y3ULHr6fpyKPpLRn8M10+wco5SifmP1u3x+1eA/VGQ91H9IYr+YX5jf4gVLDTR JDpa0eb1AFeV+oqAT8K9h4/Rmx7N7M8H1T3n9zpO2+3PzIEMdjH18z+oMGBzbvNrgcCF4wMVwwIX A4ELgcCGbeQvP50FXsr8STaa1XiCUZ436niCR8LdxXrv45qe0OzvG9Udp/e9H2F29+VuGSzj6VzB /UWUXP5y6Oqn6rYXErdhKUjH3qZM18exMnWQ/Hyd5l9scI+iEj76H62Oar+a/mK8Ux2ix2EZ/aQc 5Kf6zbfcuZ2HsjFHeVydHq/avU5BUKxjy3PzP6mI3F1cXMzT3MrzTOavJIxZifcnNlGAiKAoPNZc kpyMpEykepWA4WpeMCFwOBC4HFiuGBC4YELgcDFcMCFwwIeeA5vnqV4xYrhgQuBwIXDIsVwxQuBy KFwwIXDAxXg4ELhgQuBwIXA4GK4HFC4YELgcDFeDgQ2MCF4OBiuGBC4YELgcDFcMCFwwIXA4ELwc DFcDgQuBwIXDAxXDAhcDgQuBwMXngOb96peDgYrhgQuBwIXA4GK4HAhcDgQuBwMVwwIXA4ELwcDF cMCFwOBC4HAhcDgYrgcCFwOBC4YGK4HAheDgQuGBC4HAxXDAhcMCFwOBiuGBC4HAheDixXDAhcDg QuBwIXDAxeeDN89SuBwIXDFiuGBC8HAhcMCFwwMVwOBC4HAhcMCFwOBiuGBC4YELwcDFcDgQuGBC 4HAxXDAhcMCFwOBC8YGK4YELgcCFwwMVwwIXA4ELhgYrgcCF4OBC4YELhgYrgcCHngOb96lcMCFw OBiuGBC4HAheDgYrgcCFwwIXA4GK4HAhcMCFwOBC4YGK4HAheDgQuBxYrgcCFwOBC4YELgcDFcDk ULgcULgcDFeDkULhgQuBwIXA4GK4HAhcDiheMDFcDgQuBwIeeA5vnqVwwMVwOBC4HFC4HAxXA4EL xgQ2MCF4OBiuGBC4YELgcDFcMCFwwIXA4ELwcDFcMCFwOBC4YGK4YELgcCFwwMVwwIXA4ELwcCFw wMVwOBC4YELgcDFcDihcMihcMDF54Dm/epXjAhsYELwcCFwwMVwwIXA4ELhgYrhgQvBwIXDAxXA4 ELgcCFwwIXDAxXA4ELgcULhgYrwcCFwwIXA4ELgcDFcDgQuGBC4HAxXDAhcMCF4OBiuBwIXA4ELg cDFcMCHngOb96lcDkULhihcDgYrwcCFwwIXA4GK4HAhcMCFwOBC8YGLYOBC8HAhcMDFcDgQuBwIX A4GK4YELgcCF4wMVwwIXA4ELhgQuGBiuBwIXDAhcMCFwOBivGBC4HAhcDixXDAh54M3z1K4HAhcM DFcMCFwOBC8HFiuGBC4HAhcMDFcMCFwOBC4ZFC4HAxXg4ELhgQuGBC4HAxXA4oXDAhcDgYrhgQuG BC8HAxXDAhcMCFwOBiuGBC4HAhcDgQuBwMV4OBC4HAh54M371K4HAxXA4ELhgQuBwIXA4GK8HAhc MCFwOBiuGBC4HAhcDgYrhgQuBwIXA4GK4HAhcDgQvBwIXA4GK4HFC4HIoXDAxXA4ELwcCFwwIXA4 GK4YELhgQuBwMVwwIXA4ELgcWLz0ZvnqVwwIXA4ELhgYrgcCFwOBC4YoXDAxXA4ELwcCFwwMVwOB C4YELhgQuBwMVwwIXDAhcDgYrwcCFwwIXA4GK4YELhgQuBwIXDAxXDAheDgQuGBiuBwIXA4ELhgQ uBwMX//Z - - - - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - xmp.did:3bf16ffb-8660-e447-9dd3-41a30b70a0bd - uuid:61c7700d-5c1c-4ab5-b410-c088f614479b - proof:pdf - - uuid:905f4263-7d8a-4468-bc34-df4e6cfbae9d - xmp.did:2ffbbca2-43f7-c04c-9660-c241b78e803e - uuid:9E3E5C9A8C81DB118734DB58FDDE4BA7 - default - - - - - saved - xmp.iid:0e40dbb2-1b20-5545-9619-b517e149e185 - 2018-11-12T17:01:49Z - Adobe Illustrator CC 22.1 (Windows) - / - - - saved - xmp.iid:3bf16ffb-8660-e447-9dd3-41a30b70a0bd - 2019-04-07T15:22:12+01:00 - Adobe Illustrator CC 22.1 (Windows) - / - - - - Basic RGB - Document - 1 - False - False - - 1000.000000 - 1000.000000 - Pixels - - - - Cyan - Magenta - Yellow - - - - - - Default Swatch Group - 0 - - - - White - RGB - PROCESS - 255 - 255 - 255 - - - Black - RGB - PROCESS - 0 - 0 - 0 - - - RGB Red - RGB - PROCESS - 255 - 0 - 0 - - - RGB Yellow - RGB - PROCESS - 255 - 255 - 0 - - - RGB Green - RGB - PROCESS - 0 - 255 - 0 - - - RGB Cyan - RGB - PROCESS - 0 - 255 - 255 - - - RGB Blue - RGB - PROCESS - 0 - 0 - 255 - - - RGB Magenta - RGB - PROCESS - 255 - 0 - 255 - - - R=193 G=39 B=45 - RGB - PROCESS - 193 - 39 - 45 - - - R=237 G=28 B=36 - RGB - PROCESS - 237 - 28 - 36 - - - R=241 G=90 B=36 - RGB - PROCESS - 241 - 90 - 36 - - - R=247 G=147 B=30 - RGB - PROCESS - 247 - 147 - 30 - - - R=251 G=176 B=59 - RGB - PROCESS - 251 - 176 - 59 - - - R=252 G=238 B=33 - RGB - PROCESS - 252 - 238 - 33 - - - R=217 G=224 B=33 - RGB - PROCESS - 217 - 224 - 33 - - - R=140 G=198 B=63 - RGB - PROCESS - 140 - 198 - 63 - - - R=57 G=181 B=74 - RGB - PROCESS - 57 - 181 - 74 - - - R=0 G=146 B=69 - RGB - PROCESS - 0 - 146 - 69 - - - R=0 G=104 B=55 - RGB - PROCESS - 0 - 104 - 55 - - - R=34 G=181 B=115 - RGB - PROCESS - 34 - 181 - 115 - - - R=0 G=169 B=157 - RGB - PROCESS - 0 - 169 - 157 - - - R=41 G=171 B=226 - RGB - PROCESS - 41 - 171 - 226 - - - R=0 G=113 B=188 - RGB - PROCESS - 0 - 113 - 188 - - - R=46 G=49 B=146 - RGB - PROCESS - 46 - 49 - 146 - - - R=27 G=20 B=100 - RGB - PROCESS - 27 - 20 - 100 - - - R=102 G=45 B=145 - RGB - PROCESS - 102 - 45 - 145 - - - R=147 G=39 B=143 - RGB - PROCESS - 147 - 39 - 143 - - - R=158 G=0 B=93 - RGB - PROCESS - 158 - 0 - 93 - - - R=212 G=20 B=90 - RGB - PROCESS - 212 - 20 - 90 - - - R=237 G=30 B=121 - RGB - PROCESS - 237 - 30 - 121 - - - R=199 G=178 B=153 - RGB - PROCESS - 199 - 178 - 153 - - - R=153 G=134 B=117 - RGB - PROCESS - 153 - 134 - 117 - - - R=115 G=99 B=87 - RGB - PROCESS - 115 - 99 - 87 - - - R=83 G=71 B=65 - RGB - PROCESS - 83 - 71 - 65 - - - R=198 G=156 B=109 - RGB - PROCESS - 198 - 156 - 109 - - - R=166 G=124 B=82 - RGB - PROCESS - 166 - 124 - 82 - - - R=140 G=98 B=57 - RGB - PROCESS - 140 - 98 - 57 - - - R=117 G=76 B=36 - RGB - PROCESS - 117 - 76 - 36 - - - R=96 G=56 B=19 - RGB - PROCESS - 96 - 56 - 19 - - - R=66 G=33 B=11 - RGB - PROCESS - 66 - 33 - 11 - - - - - - Cold - 1 - - - - C=56 M=0 Y=20 K=0 - RGB - PROCESS - 101 - 200 - 208 - - - C=51 M=43 Y=0 K=0 - RGB - PROCESS - 131 - 139 - 197 - - - C=26 M=41 Y=0 K=0 - RGB - PROCESS - 186 - 155 - 201 - - - - - - Grays - 1 - - - - R=0 G=0 B=0 - RGB - PROCESS - 0 - 0 - 0 - - - R=26 G=26 B=26 - RGB - PROCESS - 26 - 26 - 26 - - - R=51 G=51 B=51 - RGB - PROCESS - 51 - 51 - 51 - - - R=77 G=77 B=77 - RGB - PROCESS - 77 - 77 - 77 - - - R=102 G=102 B=102 - RGB - PROCESS - 102 - 102 - 102 - - - R=128 G=128 B=128 - RGB - PROCESS - 128 - 128 - 128 - - - R=153 G=153 B=153 - RGB - PROCESS - 153 - 153 - 153 - - - R=179 G=179 B=179 - RGB - PROCESS - 179 - 179 - 179 - - - R=204 G=204 B=204 - RGB - PROCESS - 204 - 204 - 204 - - - R=230 G=230 B=230 - RGB - PROCESS - 230 - 230 - 230 - - - R=242 G=242 B=242 - RGB - PROCESS - 242 - 242 - 242 - - - - - - - Adobe PDF library 15.00 - - - - - - - - - - - - - - - - - - - - - - - - - -endstream endobj 3 0 obj <> endobj 9 0 obj <>/Resources<>/ExtGState<>/Properties<>/Shading<>>>/Thumb 15 0 R/TrimBox[0.0 0.0 1000.0 1000.0]/Type/Page>> endobj 10 0 obj <>stream -/OC /MC0 BDC -q -0 0 1000 1000 re -W n -q -/GS0 gs --1183.0126953 -683.0126953 -683.0126953 1183.0126953 1091.5063477 841.5063477 cm -BX /Sh0 sh EX Q -EMC -/OC /MC1 BDC -Q -q -0 1000 1000 -1000 re -W n -/CS0 cs 1 1 1 scn -/GS0 gs -q 1 0 0 1 423.0195 520.1138 cm -0 0 m --24.139 0 -43.196 -20.751 -43.196 -46.583 c --43.196 -72.417 -23.715 -93.167 0 -93.167 c -24.139 -93.167 43.196 -72.417 43.196 -46.583 c -43.619 -20.751 24.139 0 0 0 c -154.573 0 m -130.435 0 111.377 -20.751 111.377 -46.583 c -111.377 -72.417 130.857 -93.167 154.573 -93.167 c -178.712 -93.167 197.769 -72.417 197.769 -46.583 c -197.769 -20.751 178.288 0 154.573 0 c -194.922 -196.075 m -179.677 -177.865 166.972 -162.196 v -222.448 -146.527 243.623 -112.224 y -226.26 -123.659 209.744 -131.705 194.922 -137.21 c -173.747 -146.103 153.42 -151.609 133.517 -155.42 c -92.861 -163.042 55.594 -160.925 23.833 -154.997 c --0.306 -150.338 -21.057 -143.986 -38.42 -136.787 c --48.16 -132.975 -58.748 -128.317 -69.335 -122.388 c --70.605 -121.542 -71.875 -121.118 -73.146 -120.271 c --73.993 -119.847 -74.417 -119.423 -74.84 -119.423 c --82.463 -115.189 -86.698 -112.224 y --66.37 -145.68 -12.587 -161.772 v --25.292 -177.865 -40.961 -196.499 y --134.552 -193.534 -170.125 -132.551 y --170.125 2.541 -109.143 112.225 y --48.16 157.538 9.434 156.267 y -13.669 151.186 l --62.559 129.587 -97.285 96.132 y --87.968 101.214 -72.299 107.99 v --26.986 127.894 9.011 132.976 23.833 134.669 c -26.374 135.093 28.491 135.517 31.032 135.517 c -56.865 138.904 86.086 139.751 116.576 136.363 c -156.808 131.705 200.004 119.847 244.047 96.132 c -210.591 127.894 138.598 149.492 v -144.526 156.267 l -202.545 157.538 263.104 112.225 v -324.086 2.541 324.086 -132.551 v -324.086 -132.128 288.513 -193.111 194.922 -196.075 c -f -Q -EMC -/OC /MC2 BDC -EMC -Q - -endstream endobj 15 0 obj <>stream -8;Y!G?'9g_%"PP.^6k8XZJPUD?>!J1Jc$+A+Hr41\!-U_6%f5H$Y=uQ5$[G/G!>U] -r^^j6K+u2t`*gW7LG8^:`.<.A9S6SW(2,EsiT_dgB`^qkLt5ZP4C5?I3I59d(q?Hl -8`(PKH-Dj)Vpof7uJoYbW29YRt$;AJLaqKNk?o#B]`H]jsWqa]aIe_FuEg'ZSlu\u!E:Ze,"QdO\rs/6>mr -e^=YjV4K`"V*Khr97;L8FG=3JC8j$X\GGLSQ@=QV9AP:99@N%Y9f137HL%MqC-sj[ -Ij&A^rW:ac:.(P6BQ8<:1LQeN^RalWZaed.5dXLg^b`7P3TOg# -=o(,k/>7Db]*7FT-*"Ld,':"XU63a:&n+9[;:QNiccpR)*,$[jqcE]j+B^`GZ!7N/ -K'o9%E/lP/R0_u[>m$X+XH;3T(nNMfM'P`\,K_lt-kD/JUj$06SXj15;="]Ed8HN$ -R"]2sOg?057i"bbpQ9\1%)P%,Y(%PcA4rNK:hRT"JNMC_rtfCt3g)'p*KNA:k"=b" -QK'G8l0kIN3X;D.D*HYHY+t^4p*@Kh2%<3c.Jk9[VB-(=\CQd[8`L-n0!^ME4^K3H -_tJVXcP!'oZ4o+,>7,Tqc/U!aO(`hj/YPbBDN,t-W6#31>RtQ8QA0)V,-\R]o5?7fV<5G>/EoP9/Wj]-A4\'3i3HLCL/qE& -87UOC0JhG'dd+Tf;DR -endstream endobj 16 0 obj [/Indexed/DeviceRGB 255 17 0 R] endobj 17 0 obj <>stream -8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 -b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` -E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn -6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( -l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> -endstream endobj 14 0 obj <> endobj 12 0 obj [/ICCBased 19 0 R] endobj 18 0 obj <> endobj 20 0 obj <> endobj 19 0 obj <>stream -HyTSwoɞc [5laQIBHADED2mtFOE.c}08׎8GNg9w߽'0 ֠Jb  - 2y.-;!KZ ^i"L0- @8(r;q7Ly&Qq4j|9 -V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'Kt;\ ӥ$պFZUn(4T%)뫔0C&Zi8bxEB;Pӓ̹A om?W= -x-[0}y)7ta>jT7@tܛ`q2ʀ&6ZLĄ?_yxg)˔zçLU*uSkSeO4?׸c. R ߁-25 S>ӣVd`rn~Y&+`;A4 A9=-tl`;~p Gp| [`L`< "A YA+Cb(R,*T2B- -ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r 9\A&G rQ hE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_&#(0J:EAiQ(()ӔWT6U@P+!~mD eԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel }}Cq9 -N')].uJr - wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó ti zf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4 -n3ܣkGݯz=[==<=GTB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY .=b?SƕƩȺy چ k5%4m7lqlioZlG+Zz͹mzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś nLl<9O[$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! -zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km -endstream endobj 6 0 obj <> endobj 7 0 obj <> endobj 5 0 obj <> endobj 25 0 obj [/View/Design] endobj 26 0 obj <>>> endobj 23 0 obj [/View/Design] endobj 24 0 obj <>>> endobj 21 0 obj [/View/Design] endobj 22 0 obj <>>> endobj 13 0 obj <> endobj 11 0 obj <> endobj 27 0 obj <> endobj 28 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 15.0 -%%AI8_CreatorVersion: 22.1.0 -%%For: (Aaron Pearson) () -%%Title: (MultiRPCLogo.ai) -%%CreationDate: 4/7/2019 3:22 PM -%%Canvassize: 16383 -%%BoundingBox: 0 -1000 1000 0 -%%HiResBoundingBox: 0 -1000 1000 0 -%%DocumentProcessColors: Cyan Magenta Yellow -%AI5_FileFormat 11.0 -%AI12_BuildNumber: 312 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Registration]) -%AI3_Cropmarks: 0 -1000 1000 0 -%AI3_TemplateBox: 500.5 -500.5 500.5 -500.5 -%AI3_TileBox: 210.98 -911.72 788.9 -88.04 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 3 -%AI9_OpenToView: -1206 192 0.6667 1020 636 18 0 0 67 182 0 0 0 1 1 0 1 1 0 -%AI5_OpenViewLayers: 677 -%%PageOrigin:100 -800 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments - -endstream endobj 29 0 obj <>stream -%%BoundingBox: 0 -1000 1000 0 -%%HiResBoundingBox: 0 -1000 1000 0 -%AI7_Thumbnail: 128 128 8 -%%BeginData: 32686 Hex Bytes -%0000330000660000990000CC0033000033330033660033990033CC0033FF -%0066000066330066660066990066CC0066FF009900009933009966009999 -%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 -%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 -%3333663333993333CC3333FF3366003366333366663366993366CC3366FF -%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 -%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 -%6600666600996600CC6600FF6633006633336633666633996633CC6633FF -%6666006666336666666666996666CC6666FF669900669933669966669999 -%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 -%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF -%9933009933339933669933999933CC9933FF996600996633996666996699 -%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 -%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF -%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 -%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 -%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF -%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC -%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 -%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 -%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 -%000011111111220000002200000022222222440000004400000044444444 -%550000005500000055555555770000007700000077777777880000008800 -%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB -%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF -%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF -%524C451B151B141B151B141B151B141B151B141B151B141B1B1B141B1B1B -%141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB -%1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB -%1AFB1BFB1AFBFBFB1AFBFBFB1AFBFBFB1FFBFBFB1FFBFBFB1FFBFBFB1FFB -%FBFB1FFBFBFB1FFBFBFB1F141B1415141B1415141B141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B1A1B141B1A1B141B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A -%1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1FFB1AFB1FFB1AFB1FFB1FFB1FFB1B141B151B141B151B141B -%151B141B151B141B151B141B1B1B141B1B1B141B1B1B141B1B1B1A1B1B1B -%1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B1B1AFB -%1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFBFBFB -%1AFBFBFB1AFBFBFB1FFBFBFB1FFBFBFB1FFBFBFB1FFBFBFB1FFBFB141514 -%151415141B1415141B1415141B141B141B141B141B141B141B141B141B14 -%1B141B141B141B141B141B141B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1FFB1A -%FB1FFB1AFB1B141B151B141B151B141B151B141B151B141B151B141B1B1B -%141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB -%1AFB1BFB1AFB1BFB1AFBFBFB1AFBFBFB1AFBFBFB1FFBFBFB1FFBFBFB1FFB -%FBFB1FFBFBFB1FFBFBFB1FFBFB1415141B1415141B1415141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B141B141B1A1B141B1A1B14 -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB1FFB1AFB1FFB1AFB1FFB1FFB1B151B141B151B141B -%151B141B151B141B151B141B151B141B1B1B141B1B1B141B1B1B141B1B1B -%1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB -%1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB -%1AFBFBFB1AFBFBFB1AFBFBFB1AFBFBFB1FFBFBFB1FFBFBFB1FFBFBFB1F14 -%15141514151415141B1415141B1415141B141B141B141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B1A1B141B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A -%1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1A -%FB1FFB1AFB1FFB1B151B141B151B141B151B141B151B141B151B141B151B -%141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB -%1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFBFBFB1AFBFBFB1FFBFBFB1FFB -%FBFB1FFBFBFB1FFBFBFB1FFBFBFB1F14151415141B1415141B1415141B14 -%1B141B141B141B141B141B141B141B141B141B141B141B141B141B1A1B14 -%1B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB1AFB1AFB1FFB1AFB1FFB1AFB1FFB15141B151B141B -%151B141B151B141B151B141B151B141B151B141B151B141B1B1B141B1B1B -%141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB -%1AFB1BFB1AFBFBFB1AFBFBFB1AFBFBFB1AFBFBFB1FFBFBFB1FFBFBFB1FFB -%FB14151415141514151415141B1415141B1415141B141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B141B141B1A1B141B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A -%1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1FFB1AFB1B141B151B141B151B141B151B141B151B141B151B -%141B151B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB -%1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFBFBFB1AFBFBFB1FFB -%FBFB1FFBFBFB1FFBFBFB1FFBFBFB1FFBFB141514151415141B1415141B14 -%15141B141B141B141B141B141B141B141B141B141B141B141B141B141B14 -%1B141B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1FFB1AFB1FFB1AFB1B1515141B -%151B141B151B141B151B141B151B141B151B141B151B141B151B141B1B1B -%141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB -%1AFB1BFB1AFB1BFB1AFBFBFB1AFBFBFB1AFBFBFB1AFBFBFB1FFBFBFB1FFB -%FBFB1F141514151415141514151415141B1415141B1415141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B141B141B141B141B1A1B14 -%1B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB1FFB1B151B141B151B141B151B141B151B141B151B -%141B151B141B151B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB -%1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFBFBFB1AFB -%FBFB1AFBFBFB1FFBFBFB1FFBFBFB1FFBFBFB1F1415141514151415141B14 -%15141B1415141B1415141B141B141B141B141B141B141B141B141B141B14 -%1B141B141B141B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1FFB1AFB1FFB15141B -%1515141B151B141B151B141B151B141B151B141B151B141B151B141B151B -%141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB -%1AFB1BFB1AFB1BFB1AFB1BFB1AFBFBFB1AFBFBFB1AFBFBFB1AFBFBFB1FFB -%FBFB1FFBFB141514151415141514151415141514151415141B1415141B14 -%1B141B141B141B141B141B141B141B141B141B141B141B141B141B141B14 -%1B1A1B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB1AFB1AFB15141B151B141B151B141B151B141B151B -%141B151B141B151B141B151B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1BFB -%1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB -%FBFB1AFBFBFB1AFBFBFB1FFBFBFB1FFBFBFB1FFBFB141514151415141514 -%15141B1415141B1415141B1415141B141B141B141B141B141B141B141B14 -%1B141B141B141B141B141B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1FFB1AFB1B -%1515141B1515141B151B141B151B141B151B141B151B141B151B141B151B -%141B151B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB -%1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFBFBFB1AFBFBFB1AFBFBFB1AFB -%FBFB1FFBFBFB1F1415141514151415141514151415141514151415141B14 -%15141B141B141B141B141B141B141B141B141B141B141B141B141B141B14 -%1B141B141B1A1B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1B1515141B151B141B151B141B151B -%141B151B141B151B141B151B141B151B141B1B1B141B1B1B141B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B -%1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB -%1BFB1AFBFBFB1AFBFBFB1AFBFBFB1FFBFBFB1FFBFBFB1F14151415141514 -%1514151415141B1415141B1415141B1415141B141B141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B1A1B141B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1A -%FB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1F -%FB15141B1515141B1515141B151B141B151B141B151B141B151B141B151B -%141B151B141B151B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1BFB1AFB1BFB -%1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFBFBFB1AFBFBFB1AFB -%FBFB1AFBFBFB1FFBFB141514151415141514151415141514151415141514 -%15141B1415141B141B141B141B141B141B141B141B141B141B141B141B14 -%1B141B141B141B141B1A1B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB15141B1515141B151B141B151B -%141B151B141B151B141B151B141B151B141B151B141B151B141B1B1B141B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B -%1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB -%1BFB1AFB1BFB1AFBFBFB1AFBFBFB1AFBFBFB1FFBFBFB1FFBFB1415141514 -%151415141514151415141B1415141B1415141B1415141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B141B1A1B141B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1A -%FB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1A -%FB1AFB151515141B1515141B1515141B151B141B151B141B151B141B151B -%141B151B141B151B141B151B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B1B -%1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB -%FBFB1AFBFBFB1AFBFBFB1F14151415141514151415141514151415141514 -%1514151415141B1415141B141B141B141B141B141B141B141B141B141B14 -%1B141B141B141B141B141B141B1A1B141B1A1B141B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1B1515141B1515141B151B -%141B151B141B151B141B151B141B151B141B151B141B151B141B151B141B -%1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B -%1A1B1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB -%1BFB1AFB1BFB1AFB1BFB1AFBFBFB1AFBFBFB1AFBFBFB1FFBFBFB1F141514 -%15141514151415141514151415141B1415141B1415141B1415141B141B14 -%1B141B141B141B141B141B141B141B141B141B141B141B141B1A1B141B1A -%1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%FB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1514151515141B1515141B1515141B151B141B151B141B151B -%141B151B141B151B141B151B141B151B141B1B1B141B1B1B141B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B -%1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB -%1BFB1AFBFBFB1AFBFBFB1AFBFB1415141514151415141514151415141514 -%151415141514151415141B1415141B1415141B141B141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B1A1B141B1A1B141B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1A -%FB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB15141B1515141B1515 -%141B151B141B151B141B151B141B151B141B151B141B151B141B151B141B -%151B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B -%1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB -%1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFBFBFB1AFBFBFB1AFBFBFB1FFBFB14 -%1514151415141514151415141514151415141B1415141B1415141B141514 -%1B141B141B141B141B141B141B141B141B141B141B141B141B141B141B1A -%1B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1AFB1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1AFB15151514151515141B1515141B1515141B151B141B151B -%141B151B141B151B141B151B141B151B141B151B141B1B1B141B1B1B141B -%1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B -%1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB -%1BFB1AFB1BFB1AFBFBFB1AFBFBFB1A141514151415141514151415141514 -%15141514151415141514151415141B1415141B1415141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B141B1A1B141B1A1B141B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%FB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB151515141B1515 -%141B1515141B151B141B151B141B151B141B151B141B151B141B151B141B -%151B141B151B141B1B1B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B -%1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB -%1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFBFBFB1AFBFBFB1AFBFBFB -%1F141514151415141514151415141514151415141514151415141B141514 -%1B1415141B141B141B141B141B141B141B141B141B143D608B8561141B14 -%1B141B1A1B141B1A1B141B1A1B60AF61613C1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB151415151514151515141B1515141B1515141B151B -%141B151B141B151B141B151B141B151B141B151B141B151B141B1B6185FD -%04FFAF3D1B141B1B1B141B1A1B141B1B1B1A1B1B8BFD04FFAFAF613D1A1B -%1B1B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB -%1AFB1BFB1AFB1BFB1AFBFBFB1AFBFB141514151415141514151415141514 -%151415141514151415141514151415141B1415141B1415141B141B141B14 -%3D84FFFFFFAF8B3C1B141B141B143D3C613C6160613C3D3C3D141B141B3C -%8BAFFFFFFFAF8B3C1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1514151515141B -%1515141B1515141B151B141B151B141B151B141B151B141B151B141B151B -%141B151B141B3DAFFD04FF611B153D3D8B85AFAFFD0DFFAF8B61431B1B61 -%FD05FFAF431AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1A -%FB1BFB1AFB1BFB1AFBFBFB1AFBFBFB1AFBFB141514151415141514151415 -%1415141514151415141514151415141B1415141B1415141B141B141B141B -%84FFFFFFA961143D60AFFD18FF853D1A67AFFD04FF8B1A1B1A1B1A1B1A1B -%1A1B1A1B1AFB1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB -%1AFB1AFB151515141515151415151514151515141B1515141B151B141B15 -%1B141B151B141B151B141B151B1461AFFFFFFF613D61FD1FFF616761FD05 -%FF3C1B1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1A -%FB1BFB1AFB1BFB1AFBFBFB1A0E1514151415141514151415141514151415 -%1415141514151415141514151415141B1415141B143DFFFFFFAF608BFD23 -%FFAF60AFFD04FF1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A -%1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1AFB1515151415151514151515141B -%1515141B151B141B151B141B151B141B151B141B151B141B151B85FFFFFF -%AFFD27FFAFFD04FFAF1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1B -%FB1AFB1BFB1AFB1BFB1AFBFBFB1AFBFBFB1A141514151415141514151415 -%14151415141514151415141514151415141B1415141B1415141B36FD32FF -%3D1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1A -%FB1AFB1AFB1AFB1AFB1514151515141515151415151514151515141B1515 -%141B1515141B151B141B151B141B151B148BFD32FF851B1B1B1AFB1B1B1A -%FB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFBFB -%14150E151415141514151415141514151415141514151415141514151415 -%14151415141B141BA9FD33FF1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B -%1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB15141515151415151514 -%151515141B1515141B151B141B151B141B151B141B151B141B151B61FD34 -%FF8B1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB -%1BFB1AFBFBFB1AFBFB141514151415141514151415141514151415141514 -%151415141514151415141B1415141B14AFFD34FFA91B1A1B1A1B1A1B1A1B -%1A1B1AFB1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB1AFB1AFB1515 -%1514151515141515151415151514151515141B1515141B1515141B151B14 -%1B151B143DFD36FF3C1B1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB -%1BFB1AFB1BFB1AFB1BFB1AFB1BFB1A0E1514150E15141514151415141514 -%15141514151415141514151415141514151415141560FD36FF8B1A1B1A1B -%1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1AFB1AFB1AFB1AFB -%1AFB151515141515151415151514151515141B1515141B151B141B151B14 -%1B151B141B151B14FD37FFAF431B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1B -%FB1AFB1BFB1AFB1BFB1AFB1BFB1AFBFBFB1A0E1514151415141514151415 -%1415141514151415141514151415141514151415141B143DFD38FF3C1B1A -%1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1AFB1A -%FB1AFB151415151514151515141515151415151514151515141B1515141B -%1515141B151B141B85FD38FF8B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB1A -%FB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1B14150E1514150E1514151415 -%1415141514151415141514151415141514151415141514AFFD38FFA91B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1A -%FB1AFB1514151515141515151415151514151515141B1515141B151B141B -%151B141B151B143DFD3AFF3DFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1B -%FB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1B14150E1514151415141514151415 -%141514151415141514151415141514151415141560FD11FF858560AFFD10 -%FF858560AFFD11FF671A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1A -%FB1A1B1AFB1AFB1AFB1AFB1AFB1515151415151514151515141515151415 -%151514151515141B1515141B1515141B148BFD10FF3C1B141B143DAFFD0C -%FFAF3C1B1A1B1A67AFFD0FFF8B1B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB -%1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1A0E1514150E1514150E15141514 -%151415141514151415141514151415141514151415A9FD0FFF1415141B14 -%1B141B85FD0AFFAF141B141B141B143DAFFD0FFF1A1B1A1B1A1B1A1B1A1B -%1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1AFB151515141515 -%15141515151415151514151515141B1515141B151B141B151B141B37FD0F -%FF611B141B151B141B153DFD0AFF3D1B1A1B1B1B1A1B1B67FD0FFF431AFB -%1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB -%1A0E1514150E151415141514151415141514151415141514151415141514 -%1514151461FD0EFFA91B141B141B141B141B148BFD08FF851B141B141B14 -%1B141B1AAFFD0EFF3C1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B -%1AFB1A1B1AFB1AFB1AFB1AFB151415151514151515141515151415151514 -%15151514151515141B1515141B151561FD0EFFAF141B151B141B151B141B -%61FD08FF8B141B1B1B1A1B1B1B1A1B8BFD0EFF8B1B1B1A1B1B1B1AFB1B1B -%1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1B0E150E1514150E -%1514150E15141514151415141514151415141514151415141514AFFD0EFF -%8515141B141B141B141B1461FD08FF601B141B141B141B141B148BFD0EFF -%841B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB -%1A1B1AFB151415151514151515141515151415151514151515141B151514 -%1B1515141B151BAFFD0EFFAF141B151B141B151B141B61FD08FF8B141B1B -%1B1A1B1B1B1A1B8BFD0FFF1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1A -%FB1BFB1AFB1BFB1AFB1BFB1AFB1B14150E1514150E151415141514151415 -%1415141514151415141514151415141514FD10FF3D141B141B141B141B14 -%AFFD08FFA91B141B141B141B141B14FD0FFFAF3D1A1B1A1B1A1B1A1B1A1B -%1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1AFB1AFB1515151415151514 -%15151514151515141515151415151514151515141B1515143DFD10FF851B -%141B151B141B143DFD0AFF611B141B1B1B1A1B1A8BFD10FF3C1B1B1B1A1B -%1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1A0E150E -%150E150E150E1514150E1514151415141514151415141514151415141536 -%FD11FF3C15141B1415143DA9FD0BFF1A1B141B141B143DFD11FF61141B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B15 -%15151415151514151515141515151415151514151515141B1515141B1515 -%1485FD12FF613D151B1461AFFD0DFF613D1B1B1A8BFD12FF611B1B1B1AFB -%1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1A0E1514 -%150E1514150E151415141514151415141514151415141514151415141560 -%FD13FFAFAF85AFFD10FFA9AF85FD14FF8B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB1AFB1514151515141515151415 -%151514151515141515151415151514151515141B1485FD3EFF851B1A1B1B -%1B1A1B1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1B0E15 -%0E150E150E150E150E1514150E1514151415141514151415141514151415 -%84FD3EFF8B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1AFB1A1B1AFB1514151515141515151415151514151515141515151415 -%1515141B1515141B158BFD0AFFAFAFFD26FFAFAFFD0AFF8B1B1A1B1B1B1A -%FB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1B0E150E15 -%14150E1514150E15141514151415141514151415141514151415141585FD -%0BFF613D85FD23FF6061AFFD0AFFAF1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B1AFB15151514151515141515151415 -%151514151515141515151415151514151515148BFD0CFF851B36AFFD1EFF -%AF8B1B61FD0CFF851B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1BFB1AFB1B -%FB1AFB1BFB1AFB1BFB1A0E150E150E150E150E150E150E1514150E151415 -%14151415141514151415141514AFFD0CFFA93D143D60AFFD18FFA9AF3C1B -%148BFD0CFFA91B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1AFB1A1B151515141515151415151514151515141515151415 -%151514151515141B1515141537FD0EFFAF3715143D61AFFD12FFAFAF613D -%151B61FD0EFF3D1A1B1B1B1A1B1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1B -%FB1AFB1BFB1AFB1BFB1A0E150E150E150E150E1514150E15141514151415 -%141514151415141514151415141514AFFD0EFF85611415141B3661618BA9 -%FFAFFFAFFFAFAF858B6161141B141B3C8BAFFD0DFFA93D1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB1A1B150E15 -%151514151515141515151415151514151515141515151415151514151515 -%141515AFFD0FFF61141B151B141B151B143D153D143D151B141B141B141B -%3DFD0FFF8B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B1B -%1AFB1BFB1AFB1BFB1AFB1B0E150E150E150E150E150E150E150E1514150E -%15141514151415141514151415141514151461A8FD0CFF851415141B1415 -%141B1415141B141B141B141B141B141B141B60FD0CFFAF3C1B141B141B1A -%1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%FB1514151515141515151415151514151515141515151415151514151515 -%141B1515141B1515143D61FD0AFFAF151B141B151B141B151B141B151B14 -%1B151B141B1B1B141B1B1B85FD09FFAF8B1A1B1B1B1A1B1B1B1A1B1B1B1A -%1B1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1AFB1BFB1AFB1B0E150E15 -%0E150E150E150E1514150E15141514151415141514151415141514151415 -%141514151415146184FD06FFAF14151415141B1415141B141B141B141B14 -%1B141B141B141B141B141BA9FD05FFAF8B3C1B141B141B1A1B141B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A1B1AFB15 -%15150E151515141515151415151514151515141515151415151514151515 -%14151515141B1515141B1415143D618585AF3715141B151B141B151B141B -%151B141B151B141B151B141B1B1B141B153D858B61611A1B1A1B1A1B1B1B -%1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B1B1AFB -%1BFB1AFB1BFB1A0E150E150E150E150E150E150E150E150E1514150E1514 -%150E15141514151415141514151415141514151415141514151415141514 -%151415141B1415141B1415141B141B141B141B141B141B141B141B141B14 -%1B141B141B141B141B141B1A1B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B151515141515151415151514151515 -%14151515141515151415151514151515141B1515141B1515141B151B141B -%151B141B151B141B151B141B151B141B151B141B151B141B151B141B1B1B -%141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1BFB1A0E150E150E150E -%150E150E150E1514150E1514151415141514151415141514151415141514 -%1514151415141514151415141B1415141B1415141B1415141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B141B141B1A1B141B1A1B14 -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1AFB1A -%1B150E1514150E1515151415151514151515141515151415151514151515 -%1415151514151515141B1515141B1515141B151B141B151B141B151B141B -%151B141B151B141B151B141B151B141B1B1B141B1B1B141B1B1B141B1B1B -%1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB -%1B1B1AFB1BFB1AFB1B0E150E150E150E150E150E150E150E150E150E1514 -%150E1514150E151415141514151415141514151415141514151415141514 -%15141514151415141B1415141B1415141B141B141B141B141B141B141B14 -%1B141B141B141B141B141B141B141B1A1B141B1A1B141B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B150E1515151415151514151515 -%1415151514151515141515151415151514151515141B1515141B1515141B -%151B141B151B141B151B141B151B141B151B141B151B141B151B141B151B -%141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB1AFB1B0E150E150E -%150E150E150E150E150E1514150E15141514151415141514151415141514 -%15141514151415141514151415141514151415141B1415141B1415141B14 -%1B141B141B141B141B141B141B141B141B141B141B141B141B141B1A1B14 -%1B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1AFB1514150E1514150E15151514151515141515151415151514151515 -%141515151415151514151515141B1515141B1515141B151B141B151B141B -%151B141B151B141B151B141B151B141B151B141B1B1B141B1B1B141B1B1B -%141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB -%1B1B1AFB1B1B1AFB1BFB1A0E150E150E150E150E150E150E150E150E150E -%150E1514150E1514150E1514151415141514151415141514151415141514 -%1514151415141514151415141B1415141B1415141B141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B1A1B141B1A1B141B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1515150E15151514151515 -%141515151415151514151515141515151415151514151515141B1515141B -%1515141B151B141B151B141B151B141B151B141B151B141B151B141B151B -%141B151B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1BFB1A0E150E -%150E150E150E150E150E150E150E1514150E1514150E1514151415141514 -%1514151415141514151415141514151415141514151415141B1415141B14 -%15141B141B141B141B141B141B141B141B141B141B141B141B141B141B14 -%1B1A1B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B150E1514150E1514150E151515141515151415151514151515 -%1415151514151515141515151415151514151515141B1515141B151B141B -%151B141B151B141B151B141B151B141B151B141B151B141B1B1B141B1B1B -%141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1AFB1B1B1AFB1B1B1AFB1B0E150E150E150E150E150E150E150E150E -%150E150E150E1514150E1514150E15141514151415141514151415141514 -%151415141514151415141514151415141B1415141B1415141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B141B141B141B141B1A1B14 -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B150E1515150E151515 -%141515151415151514151515141515151415151514151515141515151415 -%1515141B1515141B151B141B151B141B151B141B151B141B151B141B151B -%141B151B141B151B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B1B1AFB1BFB1AFB1B0E -%150E150E150E150E150E150E150E150E150E1514150E1514150E15141514 -%151415141514151415141514151415141514151415141514151415141B14 -%15141B1415141B141B141B141B141B141B141B141B141B141B141B141B14 -%1B141B141B1A1B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B150E150E1514150E1514150E1515150E15151514151515 -%141515151415151514151515141515151415151514151515141B1515141B -%1515141B151B141B151B141B151B141B151B141B151B141B151B141B1B1B -%141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1AFB1B1B1AFB1B1B1A0E150E150E150E150E150E150E150E -%150E150E150E150E150E1514150E1514150E151415141514151415141514 -%15141514151415141514151415141514151415141B1415141B1415141B14 -%1B141B141B141B141B141B141B141B141B141B141B141B141B141B141B14 -%1B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B150F150E151515 -%0E1515151415151514151515141515151415151514151515141515151415 -%151514151515141B1515141B151B141B151B141B151B141B151B141B151B -%141B151B141B151B141B151B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B1B1AFB1BFB -%1A0E150E150E150E150E150E150E150E150E150E150E1514150E1514150E -%151415141514151415141514151415141514151415141514151415141514 -%15141B1415141B1415141B141B141B141B141B141B141B141B141B141B14 -%1B141B141B141B141B1A1B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B150E150E150E1514150E1514150E1515150E151515 -%14151515141515151415151514151515141515151415151514151515141B -%1515141B1515141B151B141B151B141B151B141B151B141B151B141B151B -%141B1B1B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B0E150E150E150E150E150E150E -%150E150E150E150E150E150E150E1514150E1514150E1514151415141514 -%1514151415141514151415141514151415141514151415141B1415141B14 -%15141B141B141B141B141B141B141B141B141B141B141B141B141B141B14 -%1B141B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B150E150F15 -%0E1515150E15151514151515141515151415151514151515141515151415 -%15151415151514151515141B1515141B151B141B151B141B151B141B151B -%141B151B141B151B141B151B141B151B141B1B1B141B1B1B141B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1AFB1B1B -%1AFB1B0E150E150E150E150E150E150E150E150E150E150E150E1514150E -%1514150E1514151415141514151415141514151415141514151415141514 -%1514151415141B1415141B1415141B141B141B141B141B141B141B141B14 -%1B141B141B141B141B141B141B1A1B141B1A1B141B1A1B1A1B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B150E150E150E150E1514150E1514150E151515 -%0E1515151415151514151515141515151415151514151515141515151415 -%1515141B1515141B1515141B151B141B151B141B151B141B151B141B151B -%141B151B141B1B1B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B1A0E150E150E150E150E150E -%150E150E150E150E150E150E150E150E150E1514150E1514150E15141514 -%151415141514151415141514151415141514151415141514151415141B14 -%15141B1415141B141B141B141B141B141B141B141B141B141B141B141B14 -%1B141B141B141B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B150F15 -%0E150F150E1515150E151515141515151415151514151515141515151415 -%1515141515151415151514151515141B1515141B151B141B151B141B151B -%141B151B141B151B141B151B141B151B141B151B141B1B1B141B1B1B141B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B1B -%1AFB1B1B1A0E150E150E150E150E150E150E150E150E150E150E150E150E -%1514150E1514150E15141514151415141514151415141514151415141514 -%151415141514151415141B1415141B1415141B141B141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B1A1B141B1A1B141B1A1B1A1B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B150E150E150E150E150E1514150E151415 -%0E1515150E15151514151515141515151415151514151515141515151415 -%151514151515141B1515141B1515141B151B141B151B141B151B141B151B -%141B151B141B151B141B151B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1AFB1B0E0F0E150E150E150E -%150E150E150E150E150E150E150E150E150E150E150E1514150E1514150E -%151415141514151415141514151415141514151415141514151415141514 -%15141B1415141B1415141B141B141B141B141B141B141B141B141B141B14 -%1B141B141B141B141B141B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B15 -%0E150F150E150F150E1515150E1515150E15151514151515141515151415 -%151514151515141515151415151514151515141B1515141B1515141B151B -%141B151B141B151B141B151B141B151B141B151B141B151B141B1B1B141B -%1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B -%1AFB1B1B1AFB1B0E150E150E150E150E150E150E150E150E150E150E150E -%150E150E1514150E1514150E151415141514151415141514151415141514 -%15141514151415141514151415141B1415141B1415141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B141B1A1B141B1A1B141B1A -%1B1A1B1A1B1A1B1A1B1A1B1A1B1A1B150E150E150E150E150E150E151415 -%0E1514150E1515150E151515141515151415151514151515141515151415 -%15151415151514151515141B1515141B1515141B151B141B151B141B151B -%141B151B141B151B141B151B141B151B141B1B1B141B1B1B141B1B1B1A1B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A0E150E0F0E150E -%150E150E150E150E150E150E150E150E150E150E150E150E150E1514150E -%1514150E1514151415141514151415141514151415141514151415141514 -%1514151415141B1415141B1415141B141B141B141B141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B1A1B141B1A1B141B1A1B1A1B1A -%1B150F150E150F150E150F150E1515150E1515150E151515141515151415 -%15151415151514151515141515151415151514151515141B1515141B1515 -%141B151B141B151B141B151B141B151B141B151B141B151B141B151B141B -%1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B -%1A1B1B1B1A1B1B1B1A0E150E150E150E150E150E150E150E150E150E150E -%150E150E150E150E1514150E1514150E1514151415141514151415141514 -%1514151415141514151415141514151415141B1415141B1415141B141514 -%1B141B141B141B141B141B141B141B141B141B141B141B141B141B141B1A -%1B141B1A1B1A1B1A1B1A1B1A1B1A1B1A1B150E150E150E150E150E150E15 -%0E1514150E1514150E1515150E1515151415151514151515141515151415 -%1515141515151415151514151515141B1515141B1515141B151B141B151B -%141B151B141B151B141B151B141B151B141B151B141B1B1B141B1B1B141B -%1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B0E0F0E150E -%0F0E150E150E150E150E150E150E150E150E150E150E150E150E150E150E -%150E150E1514150E15141514151415141514151415141514151415141514 -%151415141514151415141B1415141B1415141B141B141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B141B1A1B141B1A1B141B1A -%1B1A1B150E150F150E150F150E150F150E1515150E1515150E1515151415 -%1515141515151415151514151515141515151415151514151515141B1515 -%141B1515141B151B141B151B141B151B141B151B141B151B141B151B141B -%151B141B1B1B141B1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B -%1A1B1B1B1A1B1B1B1A1B1B0E0F0E150E150E150E150E150E150E150E150E -%150E150E150E150E150E150E1514150E1514150E15141514151415141514 -%151415141514151415141514151415141514151415141B1415141B141514 -%1B1415141B141B141B141B141B141B141B141B141B141B141B141B141B14 -%1B141B1A1B141B1A1B1A1B1A1B1A1B1A1B1A1B150E150E150E150E150E15 -%0E150E150E150E150E1514150E1515150E15151514151515141515151415 -%151514151515141515151415151514151515141B1515141B1515141B151B -%141B151B141B151B141B151B141B151B141B151B141B151B141B1B1B141B -%1B1B141B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A1B1B1B1A0E150E -%0F0E150E0F0E150E150E150E150E150E150E150E150E150E150E150E150E -%150E150E150E150E1514150E151415141514151415141514151415141514 -%1514151415141514151415141514151415141B1415141B141B141B141B14 -%1B141B141B141B141B141B141B141B141B141B141B141B141B1A1B141B1A -%1B141B1A1B -%%EndData - -endstream endobj 30 0 obj <>stream -%!PS-Adobe-3.0 -%%Creator: Adobe Illustrator(R) 15.0 -%%AI8_CreatorVersion: 22.1.0 -%%For: (Aaron Pearson) () -%%Title: (MultiRPCLogo.ai) -%%CreationDate: 4/7/2019 3:22 PM -%%Canvassize: 16383 -%%BoundingBox: 0 -1000 1000 0 -%%HiResBoundingBox: 0 -1000 1000 0 -%%DocumentProcessColors: Cyan Magenta Yellow -%AI5_FileFormat 11.0 -%AI12_BuildNumber: 312 -%AI3_ColorUsage: Color -%AI7_ImageSettings: 0 -%%RGBProcessColor: 0 0 0 ([Registration]) -%AI3_Cropmarks: 0 -1000 1000 0 -%AI3_TemplateBox: 500.5 -500.5 500.5 -500.5 -%AI3_TileBox: 210.98 -911.72 788.9 -88.04 -%AI3_DocumentPreview: None -%AI5_ArtSize: 14400 14400 -%AI5_RulerUnits: 6 -%AI9_ColorModel: 1 -%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 -%AI5_TargetResolution: 800 -%AI5_NumLayers: 3 -%AI9_OpenToView: -1206 192 0.6667 1020 636 18 0 0 67 182 0 0 0 1 1 0 1 1 0 -%AI5_OpenViewLayers: 677 -%%PageOrigin:100 -800 -%AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 -%AI9_Flatten: 1 -%AI12_CMSettings: 00.MS -%%EndComments -%%BeginProlog -%%EndProlog -%%BeginSetup -%AI5_Begin_NonPrinting -Np -%AI8_PluginGroupInfo -(Adobe Flare Plugin) (Flare) (Flare.aip) -%AI8_PluginGroupInfo -(Adobe Deform Plugin) (Adobe Envelope Plugin) (Deform.aip) -%AI8_PluginGroupInfo -(Adobe Planar Group) (Adobe Live Paint Plugin) (PlanetX.aip) -%AI8_PluginGroupInfo -(Adobe Perspective Plugin Group) (Adobe Perspective Plugin Group) (Perspective.aip) -%AI8_PluginGroupInfo -(Adobe Line Plugin Group) (Line artwork) (Illustrator.exe) -%AI8_PluginGroupInfo -(Adobe Sketch Plugin Group) (Sketch artwork) (Illustrator.exe) -%AI8_PluginGroupInfo -(Adobe Vectorized Object) (Image Tracing) (Illustrator.exe) -%AI8_PluginGroupInfo -(Adobe Path Blends) (Adobe Blends Plugin) (LiveBlends.aip) -%AI8_PluginGroupInfo -(Adobe Calligraphic Brush Tool) (Adobe Calligraphic Brush Plugin) (CalligraphicBrushTool.aip) -%AI8_PluginGroupInfo -(Adobe Symbolism) (Adobe Symbolism) (ParticleSystem.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Pattern Brush Plugin) (ArtOnPathBrushTool.aip) -%AI8_PluginGroupInfo -(Adobe PatternOnPath Brush Tool) (Adobe Pattern Brush Plugin) (ArtOnPathBrushTool.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Art Brush Plugin) (ArtOnPathBrushTool.aip) -%AI8_PluginGroupInfo -(Adobe ArtOnPath Brush Tool) (Adobe Art Brush Plugin) (ArtOnPathBrushTool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Scatter Brush Plugin) (ScatterBrushTool.aip) -%AI8_PluginGroupInfo -(Adobe Scatter Brush Tool) (Adobe Scatter Brush Plugin) (ScatterBrushTool.aip) -%AI8_PluginGroupInfo -(Adobe Pattern Editor Plugin Group) (Adobe Pattern Editor Plugin Group) (SwatchLibs.aip) -%AI8_PluginGroupInfo -(Pathfinder Suite) (Adobe Compound Shape) (PathfinderS.aip) -%AI5_End_NonPrinting-- -1 Bn -%AI5_BeginGradient: (Unnamed gradient 19) -(Unnamed gradient 19) 0 2 Bd -[ -< -87878787888889898A8B8B8D8E8E8F8F909091919292939393949495969697989899999A9B9C9C9D -9E9E9F9FA0A1A2A2A3A3A4A4A5A6A7A7A8AAABABACACADADADAEAEAFB0B0B0B0B0B1B1B1B2B2B3B3 -B3B4B4B4B4B4B5B5B6B7B7B8B8B8B8B9B9B9B9B9BABABABABABBBCBCBDBDBEBFC0C1C1C2C2C3C3C3 -C4C4C5C6C7C7C8C8C8C9C9C9CACBCBCCCC -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000000000000000010204050607090B0D0F121417181B1C1E -2021232527292A2D2E30323437383B3D3F41444547494B4D4F51535457595B5D5F61636567696B6C -6E6F7173747678797B7D7E808283858687 -> -< -3635353433333231313030302F2F2F2E2E2D2E2D2C2B2B2A2929292828272626252423222121201F -1E1D1D1C1B1A191817151413131312110F0E0D0C0B0A090808070504030201000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000000000000 -> -0 -0 -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877 -> -< -EDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDEDECECECECECECECECECECECECECECECECECECECECECECEC -ECECECECECECECECECECECEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEBEB -EBEBEBEBEBEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAEAE9 -E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9E9 -> -4 %_Br -[ -0.800626 0.529107 0 0 0 0.466667 0.913725 2 1 6 50 100 %_BS -%_0.800626 0.529107 0 0 0 0.466667 0.913725 2 1 6 50 100 Bs -0.528099 0 0.211276 0 0 1 0.929412 2 1 6 50 0 %_BS -%_0.528099 0 0.211276 0 0 1 0.929412 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_Begin_NonPrinting -Np -9 Bn -%AI5_BeginGradient: (Blue Sky) -(Blue Sky) 0 2 Bd -[ -0.56173 -0 -0.12668 -0 -0.239216 -0.870588 -0.929412 -4 %_Br -[ -0.56173 0 0.12668 0 0.239216 0.870588 0.929412 2 0 6 50 100 %_BS -%_0.56173 0 0.12668 0 0.239216 0.870588 0.929412 2 0 6 50 100 Bs -0.56173 0 0.12668 0 0.239216 0.870588 0.929412 2 1 6 50 0 %_BS -%_0.56173 0 0.12668 0 0.239216 0.870588 0.929412 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Gold Dust) -(Gold Dust) 0 4 Bd -[ -< -20202121212122222323222424252526262727272828292929292A2A2A2A2A2B2B2C2C2D2D2E2E2E -2F2F302F302F30302F30303130313132323232323333333333333433333434343435343535343535 -353536363636 -> -< -2E30313233353637383A3C3C3E3F41414344464748494A4B4C4E4F50515354555658595A5C5C5D5F -6162636667696A6B6D6E6F70717374757778797A7B7D7E80818283858687898A8B8C8E8F90929395 -9597999A9B9D -> -1 -< -00000000000000000000000000000000000000000000000001010101010101010101010102020202 -0202030303030303030404040505050606060606070708080909090A0A0B0B0B0C0C0D0D0E0E0E0E -0F0F10101111 -> -< -E5E5E4E4E3E3E2E2E1E1E1E0E0DFDFDEDEDDDDDDDCDCDBDBDADAD9D9D8D8D8D7D7D6D6D5D5D4D4D4 -D3D3D2D2D1D1D0D0D0CFCFCECECDCDCCCCCCCBCBCACAC9C9C8C8C7C7C7C6C6C5C5C4C4C3C3C3C2C2 -C1C1C0C0BFBF -> -< -C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E -9D9C9B999897969594939291908F8E8D8C8B8A898887868584838281807F7E7D7C7B7A7978777675 -74737271706F -> -0 -4 %_Br -< -18191919191A1A1A1A1B1B1B1B1B1C1C1C1C1C1C1D1D1D1D1E1E1E1E1E1E1E1E1E1F1F20202020 -> -< -6866656362615F5E5C5B595856545352504F4E4B4A4846454442413F3E3C3B393836343331302E -> -1 -< -000000000000000000000000000000000000000000000000000000000000000000000000000000 -> -0.898039 -< -9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5 -> -< -030303030303030202020202020202020202020101010101010101010101010100000000000000 -> -4 %_Br -< -0000000000000000000000000000000000000000000000000000000101020304040505060709090A -090A0A0C0C0D0E0E10101212131515161718 -> -< -ADADADACACACACAAAAA9A9A7A7A6A4A4A3A2A2A09E9E9D9C9A9A989695959492918F8E8D8B898886 -858381817F7D7B7977767472706F6D6B6A68 -> -1 -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -000000000000000000000000000000000000 -> -< -FFFFFFFEFEFEFEFDFDFDFCFCFCFBFBFBFAFAF9F9F9F8F8F7F7F6F6F5F5F4F4F3F3F2F2F1F1F0F0EF -EFEEEEEDEDECEBEBEAEAE9E9E8E7E7E6E6E5 -> -< -73737374747575767677777878797A7A7B7C7C7D7E7E7F808181828384848586878889898A8B8C8D -8E8F90909192939495969798999A9B9C9D9E -> -< -00000000000000000000000000000001010101010101010101010101010101010101020202020202 -020202020202020202020303030303030303 -> -4 %_Br -[ -0.211032 0.616419 1 0.068025 0.74902 0.435294 0 2 1 6 50 99.4382 %_BS -%_0.211032 0.616419 1 0.068025 0.74902 0.435294 0 2 1 6 50 99.4382 Bs -0.125582 0.181674 1 0 0.898039 0.772549 0 2 1 6 50 86.5168 %_BS -%_0.125582 0.181674 1 0 0.898039 0.772549 0 2 1 6 50 86.5168 Bs -0.09543 0.407111 1 0.001007 0.898039 0.619608 0.011765 2 1 6 50 55.211 %_BS -%_0.09543 0.407111 1 0.001007 0.898039 0.619608 0.011765 2 1 6 50 55.211 Bs -0 0.67892 1 0.000031 1 0.45098 0 2 1 6 59.5506 0 %_BS -%_0 0.67892 1 0.000031 1 0.45098 0 2 1 6 59.5506 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 1) -(Unnamed gradient 1) 0 2 Bd -[ -< -00000001020304050506070809090A0B0C0D0E1011121415161718191A1B1C1D1E1F202121232425 -26272829 -> -< -00000000010102030304040506070708090A0B0B0C0D0C0D0D0E0F0F10111213131415161718191A -1B1B1C1D -> -< -0000000001010203030404040505060708090A0A0B0C0E0F10111112131314151615161718191A1B -1B1C1D1E -> -0 -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8D7 -D6D5D4D3 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9 -D8D7D6D5 -> -< -FFFEFDFCFBFAF9F8F7F6F5F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0E0DFDEDDDCDBDA -D9D8D7D6 -> -4 %_Br -[ -0.81 0 1 6 50 100 %_BS -%_0.81 0 1 6 50 100 Bs -1 0 1 6 50 0 %_BS -%_1 0 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 17) -(Unnamed gradient 17) 1 2 Bd -[ -< -1D1C1B1A19181817161514131211100F0E0D0C0B0A090908070605050403030201000000 -> -< -1918171716151413121211100F0E0E0D0C0B0A0909080706050504040303010100000000 -> -< -1A1918171615151413121211100F0E0D0D0B090908070605050404030302010100000000 -> -0 -< -DFE0E1E2E3E4E4E5E6E7E8E9EAEBECEDEEEFEFF0F1F2F3F4F5F6F7F8F9FAFAFBFCFDFEFF -> -< -DCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -< -DBDCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF -> -4 %_Br -[ -0.111818 0.099428 0.101717 0 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 %_BS -%_0.111818 0.099428 0.101717 0 0.87451 0.862745 0.858824 2 0.85 6 50 9.81595 Bs -0 0 0 0 1 1 1 2 0 6 50 100 %_BS -%_0 0 0 0 1 1 1 2 0 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 2) -(Unnamed gradient 2) 0 2 Bd -[ -< -B0B1B1B2B2B3B4B5B5B6B7B8B8B9BABABBBCBDBEBEBFC0C0C1C2C2C3C3C4C5C5C6C7C8C8C9CACBCB -CCCDCECFCFD0D1D1D1D2D3D4D4D5D6D6D7D8D8D9DADBDCDCDD -> -< -4F5150525153545354565557575859595A5C5B5C5C5D5E5E5F616061616263636565656666676968 -6A6B6B6C6C6D6F6F70717173727475757778787A797B7D7D7F -> -0 -0 -0 -< -9D9C9C9B9B9A999998979796969594949392929191908F8F8E8D8D8C8C8B8A8A8988888787868585 -84838382828180807F7E7E7D7D7C7B7B7A7979787877767675 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDDDCDBDAD9D8D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBE -> -4 %_Br -[ -0.867918 0.49723 0 0 0 0.458824 0.745098 2 1 6 50 100 %_BS -%_0.867918 0.49723 0 0 0 0.458824 0.745098 2 1 6 50 100 Bs -0.690425 0.31104 0 0 0 0.615686 1 2 1 6 50 0 %_BS -%_0.690425 0.31104 0 0 0 0.615686 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 28) -(Unnamed gradient 28) 1 2 Bd -[ -< -00000001020304050506070809090A0B0C0D0E0F1112131314151718181A1B1B1C1D1F2020212225 -262728292A2B2C2D2E2F2F31323334353737393B3C3D3E3F4041424445464748494A4B4D4E4F -> -< -00000000000101020302030304050505050607080908090A0A0B0C0B0C0D0E0F100F101112121312 -131415161716171818191A1A1B1B1C1D1E1D1F20212223222324252627272829292A2B2B2C2D -> -< -000000000101010102030303040404050606060809090A0A0A0A0B0D0C0D0D0E0D0F100F10111212 -13131413141716171718171A1A1B1B1B1C1C1D1F201F20212221222322252526262728292929 -> -0 -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D7 -D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1 -> -< -FFFEFDFDFCFBFAF9F8F8F7F6F5F4F3F3F2F1F0EFEEEEEDECEBEAE9E9E8E7E6E5E4E4E3E2E1E0DFDF -DEDDDCDBDADAD9D8D7D6D5D5D4D3D2D1D0D0CFCECDCCCBCBCAC9C8C7C6C6C5C4C3C2C1C1C0BF -> -< -FFFEFEFDFCFBFBFAF9F8F8F7F6F6F5F4F3F3F2F1F0F0EFEEEEEDECEBEBEAE9E8E8E7E6E6E5E4E3E3 -E2E1E0E0DFDEDEDDDCDBDBDAD9D8D8D7D6D6D5D4D3D3D2D1D0D0CFCECECDCCCBCBCAC9C8C8C7 -> -4 %_Br -[ -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -0.308598 0.176242 0.1626 0 0.694118 0.74902 0.780392 2 1 6 50 100 %_BS -%_0.308598 0.176242 0.1626 0 0.694118 0.74902 0.780392 2 1 6 50 100 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 3) -(Unnamed gradient 3) 0 2 Bd -[ -< -20212223242526272829292A2B2C2D2E2F2F30313233343536373838393A3B3C3D3E3F4041424344 -4545464748494A4A4B4C4D4E4F5050525253545455565757 -> -< -00000000010100010102010102010202010201020201020203030203030403030303030303040403 -040404040404040504040504050505050506060507060807 -> -0 -0 -< -DAD9D8D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBB9B8B7B6B5B4B3B2 -B1B0AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A -> -< -F1F1F0F0EFEFEFEEEEEDEDEDECECEBEBEBEAEAE9E9E9E8E8E7E7E7E6E6E5E5E5E4E4E4E3E3E2E2E2 -E1E1E0E0E0DFDFDEDEDEDDDDDCDCDCDBDBDADADAD9D9D8D8 -> -1 -4 %_Br -[ -0.342901 0.02884 0 0 0.603922 0.847059 1 2 1 6 50 100 %_BS -%_0.342901 0.02884 0 0 0.603922 0.847059 1 2 1 6 50 100 Bs -0.126741 0.000092 0 0 0.854902 0.945098 1 2 1 6 50 0 %_BS -%_0.126741 0.000092 0 0 0.854902 0.945098 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (Unnamed gradient 7) -(Unnamed gradient 7) 0 2 Bd -[ -< -00000001020304050506070809090A0B0C0E0F101112131314161718191A1B1C1C1D1F2020212324 -252627292A2A2B2D2E2F3032333435363738393B3C3D3E3F40414344454647484A4B4C4D4E4F5052 -5354555658585A5B5D5E6061626364666768696A6B6C6D6E6F70707172737475767778797A7B7C7D -7E7F8081828283848585868787888A8A8B8C8D8E8F8F909192929394959596979898999A9A9B9C9D -9D9E9E9E9FA0A1A1A2A2A3A3A4A4A5A5A6A6A7A7A7A8A8A9AAAAAAABABABACACADADADAEAEAFAFB0 -B0B0B1B1B1B1B2B2B2B3B3B3B4B4B4B5B5B5B5B6B6B7B7B7B8B8B8B9B9B9B9B9BABABABABABBBBBB -BCBCBCBDBDBDBDBDBEBEBEBEBEBFBFBF -> -< -00000000010102030304040506060708090A0A0B0C0D0E0E0F1010111213131415161718191A1B1B -1C1D1E1F20202122232425262728292A2B2C2D2E2F30313233343436363738393A3B3C3D3E3F4041 -424344454647484A4B4D4E4E4F505253535455565758595A5B5C5C5D5E5F60616162636465666768 -696A6A6B6C6C6D6E6F6F7071727374757677787879797A7B7C7D7D7E7F8081818283838485868687 -8888898A8B8B8C8D8D8E8F8F90909192939394959596969798989899999A9A9B9B9C9C9D9D9E9E9F -9FA0A0A1A1A2A2A2A3A3A3A3A4A4A5A5A6A6A6A7A7A7A8A8A8A9A9A9AAAAAAAAABABABABABABABAB -ACACACACACACACACACACADADADADADAD -> -< -00000000010102030304040506060708090A0A0B0C0D0E0F1011121213141516171718191A1B1C1C -1D1E1F20212122232425262829292A2B2D2E2E2F30313233343536373838393A3B3C3D3E3F404142 -4345454647484A4B4D4E4F4F515253545455565758595A5B5C5D5D5E5F6061626363646566666768 -696A6A6B6C6C6D6E6F6F707172727374757576777878797A7B7B7C7D7E7E7F808181828383848586 -8687878788898A8B8B8C8D8E8E8F8F909090919192929394949595959697979899999A9A9B9C9C9D -9D9D9E9E9E9F9FA0A0A1A1A1A2A2A2A3A3A3A3A4A4A4A5A5A5A6A6A6A6A6A7A7A7A7A7A7A7A7A8A8 -A8A8A9A9A9A9A9AAAAAAAAAAABABABAB -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000101010101010202020203030303040405050606070708090A0A0B0C -0D0E0F10101112131415161718191A1B1C1D1E202122242527282A2B2C2E2F313233353638393B3D -3E4041434546484A4C4D4F51535456585A5C5D5F61636567696B6D6F71737577797C7E8083858789 -8C8E90939597999C9EA0A2A4A6A9ABADAFB1B3B5B7B9BBBDBEC0C2C4C6C7C9CACBCCCDCED0D1D3D4 -D5D6D8D9DADBDCDDDEDFE0E1E3E4E5E6 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.749721 0.679194 0.670497 0.901457 0 0 0 2 1 6 50 100 %_BS -%_0.749721 0.679194 0.670497 0.901457 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_BeginGradient: (White, Black) -(White, Black) 0 2 Bd -[ -< -00000001020304050506070809090A0B0C0E0F101112131314161718191A1B1C1C1D1F2020212324 -252627292A2A2B2D2E2F3032333435363738393B3C3D3E3F40414344454647484A4B4C4D4E4F5052 -5354555658585A5B5D5E6061626364666768696A6B6C6D6E6F70707172737475767778797A7B7C7D -7E7F8081828283848585868787888A8A8B8C8D8E8F8F909192929394959596979898999A9A9B9C9D -9D9E9E9E9FA0A1A1A2A2A3A3A4A4A5A5A6A6A7A7A7A8A8A9AAAAAAABABABACACADADADAEAEAFAFB0 -B0B0B1B1B1B1B2B2B2B3B3B3B4B4B4B5B5B5B5B6B6B7B7B7B8B8B8B9B9B9B9B9BABABABABABBBBBB -BCBCBCBDBDBDBDBDBEBEBEBEBEBFBFBF -> -< -00000000010102030304040506060708090A0A0B0C0D0E0E0F1010111213131415161718191A1B1B -1C1D1E1F20202122232425262728292A2B2C2D2E2F30313233343436363738393A3B3C3D3E3F4041 -424344454647484A4B4D4E4E4F505253535455565758595A5B5C5C5D5E5F60616162636465666768 -696A6A6B6C6C6D6E6F6F7071727374757677787879797A7B7C7D7D7E7F8081818283838485868687 -8888898A8B8B8C8D8D8E8F8F90909192939394959596969798989899999A9A9B9B9C9C9D9D9E9E9F -9FA0A0A1A1A2A2A2A3A3A3A3A4A4A5A5A6A6A6A7A7A7A8A8A8A9A9A9AAAAAAAAABABABABABABABAB -ACACACACACACACACACACADADADADADAD -> -< -00000000010102030304040506060708090A0A0B0C0D0E0F1011121213141516171718191A1B1C1C -1D1E1F20212122232425262829292A2B2D2E2E2F30313233343536373838393A3B3C3D3E3F404142 -4345454647484A4B4D4E4F4F515253545455565758595A5B5C5D5D5E5F6061626363646566666768 -696A6A6B6C6C6D6E6F6F707172727374757576777878797A7B7B7C7D7E7E7F808181828383848586 -8687878788898A8B8B8C8D8E8E8F8F909090919192929394949595959697979899999A9A9B9C9C9D -9D9D9E9E9E9F9FA0A0A1A1A1A2A2A2A3A3A3A3A4A4A4A5A5A5A6A6A6A6A6A7A7A7A7A7A7A7A7A8A8 -A8A8A9A9A9A9A9AAAAAAAAAAABABABAB -> -< -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -00000000000000000000000000000000000000000000000000000000000000000000000000000000 -0000000000000000000000000101010101010202020203030303040405050606070708090A0A0B0C -0D0E0F10101112131415161718191A1B1C1D1E202122242527282A2B2C2E2F313233353638393B3D -3E4041434546484A4C4D4F51535456585A5C5D5F61636567696B6D6F71737577797C7E8083858789 -8C8E90939597999C9EA0A2A4A6A9ABADAFB1B3B5B7B9BBBDBEC0C2C4C6C7C9CACBCCCDCED0D1D3D4 -D5D6D8D9DADBDCDDDEDFE0E1E3E4E5E6 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -< -FFFEFDFCFBFAF9F8F7F6F5F4F3F2F1F0EFEEEDECEBEAE9E8E7E6E5E4E3E2E1E0DFDEDDDCDBDAD9D8 -D7D6D5D4D3D2D1D0CFCECDCCCBCAC9C8C7C6C5C4C3C2C1C0BFBEBDBCBBBAB9B8B7B6B5B4B3B2B1B0 -AFAEADACABAAA9A8A7A6A5A4A3A2A1A09F9E9D9C9B9A999897969594939291908F8E8D8C8B8A8988 -87868584838281807F7E7D7C7B7A797877767574737271706F6E6D6C6B6A69686766656463626160 -5F5E5D5C5B5A595857565554535251504F4E4D4C4B4A494847464544434241403F3E3D3C3B3A3938 -37363534333231302F2E2D2C2B2A292827262524232221201F1E1D1C1B1A19181716151413121110 -0F0E0D0C0B0A09080706050403020100 -> -4 %_Br -[ -0.749721 0.679194 0.670497 0.901457 0 0 0 2 1 6 50 100 %_BS -%_0.749721 0.679194 0.670497 0.901457 0 0 0 2 1 6 50 100 Bs -0 0 0 0 1 1 1 2 1 6 50 0 %_BS -%_0 0 0 0 1 1 1 2 1 6 50 0 Bs -BD -%AI5_EndGradient -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI3_BeginPattern: (Jive) -(Jive) 47.5615 109.6396 155.9004 219.2813 -%_0 A -%_0 Xw -%_u -%_0 1 0 0 0 Xy -%_0 J 0 j 1 w 10 M []0 d %_0 XR -%_47.5615 219.2813 m -%_155.9004 219.2813 L -%_155.9004 109.6396 L -%_47.5615 109.6396 L -%_47.5615 219.2813 L -%_n -%_/ArtDictionary : -%_1 /Bool (AIPattern_Editor_Backing_Tile_Rect) , -%_; -%_ -%_u -%_*u -%_1 D -%_0 O -%_1 0.829892 0.242618 0.080446 0 0.258824 0.494118 Xa -%_135.0352 74.9453 m -%_135.0566 75.0645 135.1602 75.1504 135.2813 75.1523 c -%_148.1875 75.2871 160.0352 78.4199 169.2529 86.667 C -%_161.2227 81.1094 146.3105 79.1563 137.7256 83.0488 c -%_137.6152 83.0986 137.5566 83.2188 137.584 83.3369 c -%_137.6104 83.4551 137.7168 83.5371 137.8379 83.5332 c -%_148.5176 83.2441 157.1172 86.54 163.8223 92.498 C -%_156.9531 92.9199 151.248 97.2383 151.2656 102.3428 c -%_151.2656 102.4619 151.3496 102.5645 151.4668 102.5898 c -%_151.583 102.6152 151.7012 102.5547 151.75 102.4463 c -%_152.8711 99.957 156.498 98.666 160.333 99.5664 c -%_164.5127 100.5469 167.333 103.7559 166.6338 106.7314 c -%_166.1621 108.7461 164.1973 110.1348 161.6816 110.5186 c -%_161.5547 110.5371 161.4619 110.6484 161.4648 110.7764 c -%_161.4688 110.9043 161.5674 111.0098 161.6953 111.0215 c -%_162.7637 111.124 163.875 111.1279 165.0127 111.0195 c -%_171.5029 110.4023 176.5264 106.4238 176.9619 101.8418 C -%_181.6748 102.3887 185.8467 104.998 187.3408 108.6152 c -%_187.3857 108.7236 187.501 108.7871 187.6162 108.7695 c -%_187.7314 108.75 187.8193 108.6553 187.8291 108.5391 c -%_188.2061 103.7871 186.5713 100.7002 182.8584 97.6846 C -%_188.2432 99.7441 194.3027 99.8496 200.1133 97.1465 c -%_200.2188 97.0977 200.2773 96.9824 200.2559 96.8672 c -%_200.2324 96.752 200.1328 96.668 200.0156 96.6641 c -%_195.1367 96.4736 191.5996 94.9082 188.2861 91.5918 C -%_206.5391 96.7256 221.3711 85.3906 216.2383 68.5391 c -%_216.2031 68.4238 216.0918 68.3486 215.9707 68.3613 c -%_215.8496 68.373 215.7539 68.4688 215.7441 68.5898 c -%_214.8262 78.3037 208.041 84.7051 197.8828 85.666 C -%_203.2695 83.6055 208.8828 78.6895 209.4395 70.1318 c -%_209.4473 70.0098 209.3672 69.8984 209.248 69.8691 c -%_209.1289 69.8398 209.0059 69.8984 208.9551 70.0098 c -%_206.1563 76.1641 200.6582 79.2754 194.7949 79.8223 C -%_201.1289 77.2422 205.1914 71.2207 206.3652 63.4023 c -%_206.3848 63.2793 206.3105 63.1602 206.1914 63.123 c -%_206.0742 63.084 205.9453 63.1387 205.8887 63.248 c -%_202.0234 70.8311 193.7324 76.042 183.4424 72.0605 c -%_172.8252 67.9512 168.168 55.6738 167.1387 47.0195 c -%_167.124 46.8984 167.0234 46.8047 166.9004 46.7969 c -%_166.7783 46.7891 166.668 46.8711 166.6396 46.9922 c -%_162.9199 62.6797 170.2227 78.9414 183.2764 85.832 C -%_176.1807 83.8291 169.8369 79.5723 166.249 72.4775 C -%_157.9551 71.459 152.2451 68.6152 149.3916 63.2383 c -%_149.335 63.1309 149.2109 63.0781 149.0957 63.1133 c -%_148.9805 63.1465 148.9043 63.2578 148.9141 63.3789 c -%_149.0967 65.4883 149.8555 69.709 152.9883 71.6494 C -%_146.0234 71.6387 140.4824 72.543 135.1895 74.6621 c -%_135.0781 74.708 135.0127 74.8262 135.0352 74.9453 c -%_f -%_0 D -%_164.5215 21.4746 m -%_164.4229 21.541 164.293 21.5293 164.2061 21.4492 c -%_164.1201 21.3672 164.1016 21.2383 164.1602 21.1367 c -%_165.7803 18.3398 164.3008 14.3223 161.1094 14.3223 c -%_155.3887 14.3223 152.6387 25.0918 153.5137 34.916 C -%_155.6768 29.1602 157.5469 26.8613 160.8613 24.1211 c -%_160.9551 24.043 161.0898 24.043 161.1836 24.1191 c -%_161.2773 24.1973 161.3047 24.3281 161.2471 24.4355 c -%_156.3906 33.5156 155.3496 40.502 155.3496 48.5215 C -%_156.8125 42.5625 158.5449 39.1992 163.4766 34.1406 c -%_163.5625 34.0527 163.6992 34.0391 163.8018 34.1074 c -%_163.9033 34.1777 163.9404 34.3105 163.8887 34.4238 c -%_158.5908 46.0137 158.9951 58.8711 162.9414 68.6875 c -%_162.9805 68.7852 162.9561 68.8965 162.8789 68.9688 c -%_162.8018 69.0391 162.6895 69.0566 162.5938 69.0098 c -%_157.3887 66.459 154.3301 64.7832 149.8418 58.6211 C -%_151.1992 51.2227 150.0703 47.5723 146.6699 41.4258 C -%_150.6074 51.3438 148.5117 65.3203 138.4824 71.0176 c -%_138.373 71.0791 138.2344 71.0518 138.1582 70.9531 c -%_138.0801 70.8535 138.0869 70.7119 138.1738 70.6211 c -%_141.9551 66.666 144.7051 59.9863 142.3301 52.6934 C -%_143.8594 63.082 134.7344 71.8086 124.5508 71.8086 c -%_114.9512 71.8086 108.4004 64.2988 108.9414 56.8672 c -%_109.4785 49.502 114.3848 45.8984 118.6133 44.3691 c -%_118.7246 44.3301 118.8496 44.3711 118.9131 44.4707 c -%_118.9766 44.5723 118.9629 44.7012 118.8799 44.7871 c -%_113.2695 50.4785 112.502 61.2793 122.4629 64.5469 C -%_116.6035 59.4902 118.7734 47.7168 128.1523 46.8223 c -%_128.2695 46.8105 128.3789 46.8809 128.417 46.9922 c -%_128.4551 47.1035 128.4121 47.2266 128.3135 47.2891 c -%_126.3047 48.5664 124.6348 51.0605 124.6348 53.8633 c -%_124.6348 58.5371 128.0566 60.373 130.3105 60.373 c -%_133.7324 60.373 136.5703 57.1172 136.5703 52.1934 c -%_136.5703 46.3496 131.3105 41.5098 124.5508 40.7578 c -%_117.9248 40.0234 111.7686 42.9121 108.8008 47.2168 c -%_108.7314 47.3184 108.5996 47.3555 108.4873 47.3047 c -%_108.375 47.2539 108.3164 47.1289 108.3467 47.0098 c -%_111.3652 35.3066 125.1426 30.1328 135.2344 37.5039 C -%_128.6211 30.002 118.2285 29.8984 109.5127 37.5898 c -%_109.4219 37.6699 109.2871 37.6738 109.1904 37.5996 c -%_109.0938 37.5273 109.0635 37.3945 109.1172 37.2871 c -%_111.7842 31.8789 118.3701 25.4668 127.7227 26.4023 c -%_136.2793 27.2578 141.2441 35.416 142.2461 42.0938 C -%_142.8027 33.5723 140.8525 27.5566 133.4922 21.9473 c -%_133.3955 21.873 133.3652 21.7402 133.4199 21.6309 c -%_133.4746 21.5234 133.5996 21.4688 133.7168 21.502 c -%_140.502 23.4629 145.9473 26.9277 148.7656 34.0469 C -%_148.7656 27.8848 146.627 21.6738 141.2402 17.5352 c -%_141.1426 17.4609 141.1133 17.3301 141.168 17.2207 c -%_141.2227 17.1113 141.3467 17.0566 141.4639 17.0898 c -%_144.917 18.0742 147.6348 19.5781 149.6016 22.2754 C -%_150.9121 11.1758 156.123 4.58398 162.127 4.58398 c -%_166.252 4.58398 169.332 7.61719 169.332 12.4551 c -%_169.332 15.2852 167.8438 19.2578 164.5215 21.4746 c -%_f -%_263.748 113.0938 m -%_260.5859 116.998 254.209 118.4863 247.3164 117.082 C -%_247.8262 121.3828 246.9824 125.873 245.7051 128.5664 c -%_245.6523 128.6758 245.5313 128.7334 245.4141 128.7051 c -%_245.2969 128.6758 245.2168 128.5684 245.2207 128.4473 c -%_245.5957 119.6807 240.5977 112.6035 231.7715 109.5371 C -%_238.6777 114.293 240.6973 123.7305 237.4102 128.6035 c -%_237.3418 128.7021 237.2148 128.7412 237.1035 128.6953 c -%_236.9922 128.6504 236.9277 128.5332 236.9492 128.416 c -%_237.3223 126.3555 236.3438 123.7314 234.2363 121.6895 c -%_231.3301 118.875 227.3867 118.2363 225.4258 120.2598 c -%_223.4648 122.2852 224.2285 126.207 227.1328 129.0215 c -%_228.1934 130.0488 229.3926 130.7832 230.582 131.2061 c -%_230.6953 131.2461 230.7637 131.3594 230.748 131.4775 c -%_230.7344 131.5967 230.6387 131.6885 230.5195 131.6982 c -%_224.1309 132.2529 219.75 128.4463 217.0039 123.8203 c -%_214.209 119.1152 209.4336 115.4102 203.793 116.1504 c -%_203.6738 116.166 203.5605 116.0957 203.5195 115.9824 c -%_203.4805 115.8691 203.5254 115.7422 203.6289 115.6807 c -%_206.4258 113.9961 209.5 113.2969 213.4922 114.6289 C -%_207.6973 109.7197 199.4453 106.8867 191.6523 109.4014 c -%_191.543 109.4375 191.4238 109.3945 191.3613 109.2979 c -%_191.2988 109.2012 191.3105 109.0752 191.3867 108.9902 c -%_197.2949 102.4258 209.0762 102.2949 216.4961 107.6172 C -%_213.459 103.3008 209.4277 100.1328 202.2031 99.1387 c -%_202.0879 99.123 201.998 99.0313 201.9844 98.916 c -%_201.9727 98.7998 202.0391 98.6904 202.1484 98.6504 c -%_210.4395 95.5723 218.748 98.6953 225.5938 106.8652 C -%_222.6016 100.4883 217.6875 95.3809 210.8262 92.8535 c -%_210.7109 92.8115 210.6426 92.6934 210.6641 92.5742 c -%_210.6836 92.4531 210.7871 92.3643 210.9082 92.3613 c -%_214.8516 92.2803 218.3945 93.2188 223.1738 95.9316 C -%_219.666 90.2422 220.4336 80.293 225.543 73.6738 c -%_225.6133 73.582 225.7383 73.5498 225.8457 73.5957 c -%_225.9512 73.6426 226.0137 73.7549 225.9941 73.8691 c -%_224.8145 81.0703 227.293 89.1992 231.6035 93.5117 C -%_229.4512 85.8799 231.5977 78.9355 237.5 73.8672 c -%_237.5703 73.8066 237.6699 73.79 237.7559 73.8232 c -%_237.8438 73.8564 237.9043 73.9355 237.918 74.0273 c -%_239.1523 83.4453 249.6875 93.002 258.5195 93.8027 c -%_258.6445 93.8135 258.7422 93.9141 258.75 94.0381 c -%_258.7578 94.1621 258.6758 94.2754 258.5527 94.3027 c -%_254.2734 95.2715 249.8613 94.793 246.1641 93.2715 C -%_248.8242 96.2051 252.1035 98.3828 255.7188 99.5176 c -%_255.8359 99.5537 255.9082 99.668 255.8945 99.7891 c -%_255.8809 99.9102 255.7813 100.0039 255.6602 100.0127 c -%_251.1504 100.3242 246.7363 99.0068 242.9297 96.4746 C -%_247.291 103.0957 253.9102 108.0195 262.3574 109.9805 c -%_262.4785 110.0088 262.5605 110.1191 262.5547 110.2432 c -%_262.5469 110.3672 262.4512 110.4668 262.3281 110.4805 c -%_250.4102 111.7822 240.582 107.1621 234.1074 98.5625 C -%_235.7559 103.4629 240.4727 108.3184 247.0527 111.1816 c -%_252.8984 113.7266 258.9023 114.1279 263.4746 112.6914 c -%_263.5801 112.6582 263.6973 112.6982 263.7598 112.791 c -%_263.8223 112.8828 263.8184 113.0059 263.748 113.0938 c -%_f -%_210.8438 37.5215 m -%_215.6504 48.0078 215.3086 56.207 211.4375 66.5762 c -%_211.3926 66.6934 211.2715 66.7607 211.1484 66.7363 c -%_211.0254 66.7109 210.9395 66.5996 210.9453 66.4746 c -%_211.5664 53.8535 208.1191 44.8203 200.6465 38.668 C -%_208.8965 48.5195 205 68.2275 191.8242 68.2275 c -%_182.2393 68.2275 174.3086 60.252 172.3691 50.7031 c -%_172.3447 50.582 172.4111 50.459 172.5273 50.416 c -%_172.6426 50.3711 172.7734 50.416 172.8359 50.5215 c -%_175.6787 55.2832 180.2451 58.373 185.2939 58.373 c -%_193.4277 58.373 195.834 51.9063 195.834 47.375 c -%_195.834 41.1875 190.9082 36.0313 187.1279 36.0313 c -%_183.6904 36.0313 182.0869 38.8555 182.0869 40.959 c -%_182.0869 44.8574 185.085 48.125 188.4639 49.123 c -%_188.583 49.1582 188.6611 49.2773 188.6436 49.4023 c -%_188.624 49.5273 188.5186 49.6191 188.3936 49.6211 c -%_184.2861 49.6465 180.8154 47.7656 178.7627 44.0527 C -%_178.4932 46.9277 178.4902 48.7383 179.4033 51.7754 c -%_179.4385 51.8926 179.3848 52.0176 179.2773 52.0742 c -%_179.168 52.1309 179.0352 52.1016 178.9609 52.0059 c -%_171.6045 42.6133 175.125 26.3809 180.9404 19.6484 C -%_175.4082 23.6309 170.5234 32.2813 170.6006 44.041 c -%_170.6016 44.1641 170.5156 44.2676 170.3955 44.291 c -%_170.2754 44.3164 170.1563 44.25 170.1113 44.1367 c -%_166.0029 33.8848 168.1826 14.8887 179.3926 4.28516 C -%_176.5088 3.88867 173.5254 3.93945 170.2676 4.97852 c -%_170.1523 5.01367 170.0273 4.96484 169.9688 4.85938 c -%_169.9102 4.75195 169.9336 4.61914 170.0273 4.54102 c -%_174.1191 1.08594 179.8418 0 185.2939 0 C -%_180.5967 5.5 182.1572 16.5547 189.6494 16.5547 c -%_194.9961 16.5547 197.4238 8.25586 193.2949 3.77344 c -%_193.2168 3.6875 193.207 3.55859 193.2695 3.46289 c -%_193.334 3.36523 193.4551 3.32227 193.5664 3.36133 c -%_198.3457 5.01563 203.5117 9.15039 203.5117 14.377 c -%_203.5117 19.4199 198.6992 23.7715 191.7109 23.4277 C -%_200.5293 25.9336 209.7617 23.1602 214.5918 17.1758 c -%_214.666 17.082 214.7969 17.0547 214.9023 17.1074 c -%_215.0098 17.1621 215.0645 17.2832 215.0352 17.3984 c -%_212.2441 28.1152 203.0684 32.5977 191.5957 31.1055 C -%_200.877 34.8613 214.8457 31.5859 221.0195 23.7949 c -%_221.0918 23.7031 221.2188 23.6738 221.3262 23.7227 c -%_221.4316 23.7734 221.4902 23.8906 221.4668 24.0039 c -%_220.0957 30.6191 216.6035 35.5664 210.8438 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.343297 0.001434 0 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 56.8086 m -%_237.2051 56.6895 237.1016 56.6016 236.9805 56.6016 c -%_224.0742 56.4648 212.2266 53.334 203.0098 45.0859 C -%_211.0391 50.6445 225.9512 52.5957 234.5371 48.7051 c -%_234.6465 48.6543 234.7051 48.5332 234.6777 48.416 c -%_234.6523 48.2988 234.5449 48.2168 234.4238 48.2188 c -%_223.7441 48.5098 215.1445 45.2129 208.4395 39.2559 C -%_215.3086 38.832 221.0137 34.5156 220.9961 29.4102 c -%_220.9961 29.291 220.9121 29.1875 220.7949 29.1621 c -%_220.6797 29.1387 220.5605 29.1973 220.5117 29.3066 c -%_219.3906 31.7949 215.7637 33.0879 211.9297 32.1875 c -%_207.75 31.2051 204.9297 27.998 205.6289 25.0215 c -%_206.0996 23.0078 208.0645 21.6191 210.5801 21.2344 c -%_210.707 21.2148 210.8008 21.1055 210.7969 20.9766 c -%_210.793 20.8496 210.6953 20.7441 210.5664 20.7305 c -%_209.498 20.6289 208.3867 20.625 207.25 20.7344 c -%_200.7598 21.3516 195.7363 25.3281 195.3008 29.9121 C -%_190.5889 29.3652 186.417 26.7539 184.9229 23.1387 c -%_184.8779 23.0293 184.7646 22.9668 184.6475 22.9844 c -%_184.5322 23.002 184.4443 23.0977 184.4346 23.2148 c -%_184.0576 27.9648 185.6924 31.0527 189.4053 34.0684 C -%_184.0205 32.0098 177.959 31.9043 172.1484 34.6055 c -%_172.043 34.6563 171.9844 34.7715 172.0059 34.8867 c -%_172.0293 35.002 172.1289 35.0859 172.2461 35.0898 c -%_177.125 35.2793 180.6631 36.8457 183.9795 40.1621 C -%_165.7227 35.0273 150.8906 46.3633 156.0234 63.2129 c -%_156.0586 63.3301 156.1699 63.4043 156.291 63.3926 c -%_156.4121 63.3809 156.5078 63.2852 156.5176 63.1641 c -%_157.4355 53.4492 164.2207 47.0469 174.3789 46.0879 C -%_168.9922 48.1465 163.3789 53.0625 162.8223 61.6211 c -%_162.8145 61.7441 162.8945 61.8535 163.0137 61.8848 c -%_163.1328 61.9141 163.2559 61.8535 163.3066 61.7422 c -%_166.1055 55.5879 171.6035 52.4785 177.4668 51.9297 C -%_171.1328 54.5117 167.0703 60.5332 165.8965 68.3516 c -%_165.877 68.4746 165.9512 68.5918 166.0703 68.6309 c -%_166.1875 68.668 166.3164 68.6152 166.373 68.5039 c -%_170.2383 60.9219 178.5293 55.7109 188.8213 59.6934 c -%_199.4375 63.8027 204.0938 76.0781 205.123 84.7324 c -%_205.1387 84.8555 205.2383 84.9492 205.3613 84.957 c -%_205.4844 84.9629 205.5938 84.8809 205.623 84.7617 c -%_209.3418 69.0723 202.0391 52.8125 188.9873 45.9219 C -%_196.082 47.9238 202.4258 52.1816 206.0137 59.2754 C -%_214.3066 60.293 220.0176 63.1387 222.8711 68.5156 c -%_222.9277 68.6211 223.0508 68.6738 223.166 68.6406 c -%_223.2813 68.6055 223.3574 68.4941 223.3477 68.375 c -%_223.166 66.2656 222.4063 62.0449 219.2734 60.1035 C -%_226.2383 60.1152 231.7793 59.2109 237.0723 57.0898 c -%_237.1836 57.0449 237.25 56.9277 237.2266 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 110.2773 m -%_207.8398 110.2129 207.9688 110.2227 208.0566 110.3047 c -%_208.1426 110.3848 208.1602 110.5137 208.1016 110.6172 c -%_206.4824 113.4141 207.9609 117.4297 211.1523 117.4297 c -%_216.873 117.4297 219.623 106.6602 218.748 96.8379 C -%_216.5859 102.5918 214.7148 104.8926 211.4004 107.6328 c -%_211.3066 107.709 211.1719 107.7109 211.0781 107.6328 c -%_210.9844 107.5566 210.957 107.4238 211.0156 107.3164 c -%_215.8711 98.2383 216.9121 91.252 216.9121 83.2324 C -%_215.4492 89.1895 213.7168 92.5527 208.7852 97.6133 c -%_208.6992 97.7012 208.5625 97.7148 208.4609 97.6445 c -%_208.3594 97.5742 208.3223 97.4414 208.373 97.3301 c -%_213.6719 85.7383 213.2676 72.8828 209.3203 63.0664 c -%_209.2813 62.9688 209.3066 62.8574 209.3828 62.7852 c -%_209.4609 62.7129 209.5723 62.6973 209.668 62.7422 c -%_214.873 65.293 217.9316 66.9688 222.4199 73.1328 C -%_221.0625 80.5313 222.1914 84.1797 225.5918 90.3262 C -%_221.6543 80.4102 223.75 66.4336 233.7793 60.7363 c -%_233.8887 60.6738 234.0273 60.7012 234.1035 60.8008 c -%_234.1816 60.9004 234.1758 61.041 234.0879 61.1328 c -%_230.3066 65.0879 227.5566 71.7676 229.9316 79.0586 C -%_228.4023 68.6699 237.5273 59.9453 247.7109 59.9453 c -%_257.3105 59.9453 263.8613 67.4531 263.3203 74.8848 c -%_262.7832 82.25 257.877 85.8555 253.6484 87.3828 c -%_253.5371 87.4238 253.4121 87.3809 253.3496 87.2813 c -%_253.2852 87.1816 253.2988 87.0508 253.3828 86.9668 c -%_258.9922 81.2734 259.7598 70.4746 249.7988 67.207 C -%_255.6582 72.2637 253.4883 84.0352 244.1094 84.9316 c -%_243.9922 84.9414 243.8828 84.8711 243.8457 84.7598 c -%_243.8066 84.6504 243.8496 84.5273 243.9492 84.4648 c -%_245.957 83.1855 247.627 80.6934 247.627 77.8906 c -%_247.627 73.2168 244.2051 71.3789 241.9512 71.3789 c -%_238.5293 71.3789 235.6914 74.6348 235.6914 79.5605 c -%_235.6914 85.4023 240.9512 90.2441 247.7109 90.9941 c -%_254.3379 91.7305 260.4941 88.8398 263.4609 84.5352 c -%_263.5313 84.4336 263.6621 84.3984 263.7754 84.4492 c -%_263.8867 84.5 263.9453 84.623 263.916 84.7422 c -%_260.8965 96.4453 247.1191 101.6191 237.0273 94.25 C -%_243.6406 101.75 254.0332 101.8555 262.75 94.1641 c -%_262.8398 94.084 262.9746 94.0781 263.0723 94.1523 c -%_263.168 94.2266 263.1992 94.3574 263.1445 94.4668 c -%_260.4785 99.873 253.8926 106.2852 244.5391 105.3516 c -%_235.9824 104.4961 231.0176 96.3359 230.0156 89.6602 C -%_229.459 98.1816 231.4102 104.1953 238.7695 109.8047 c -%_238.8672 109.8789 238.8965 110.0117 238.8418 110.1211 c -%_238.7871 110.2305 238.6621 110.2852 238.5449 110.25 c -%_231.7598 108.291 226.3145 104.8262 223.4961 97.707 C -%_223.4961 103.8672 225.6348 110.0781 231.0215 114.2168 c -%_231.1191 114.291 231.1484 114.4238 231.0938 114.5332 c -%_231.0391 114.6406 230.916 114.6953 230.7988 114.6621 c -%_227.3457 113.6797 224.627 112.1738 222.6602 109.4785 C -%_221.3496 120.5781 216.1387 127.168 210.1348 127.168 c -%_206.0098 127.168 202.9297 124.1348 202.9297 119.2988 c -%_202.9297 116.4688 204.418 112.4961 207.7402 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 18.6602 m -%_111.6758 14.7559 118.0527 13.2676 124.9453 14.6719 C -%_124.4355 10.3691 125.2793 5.88086 126.5566 3.18555 c -%_126.6094 3.07813 126.7305 3.01953 126.8477 3.04883 c -%_126.9648 3.07813 127.0449 3.18555 127.041 3.30664 c -%_126.666 12.0723 131.6641 19.1484 140.4902 22.2148 C -%_133.584 17.459 131.5645 8.02148 134.8516 3.15039 c -%_134.9199 3.05078 135.0469 3.01172 135.1582 3.05664 c -%_135.2695 3.10156 135.334 3.21875 135.3125 3.33789 c -%_134.9395 5.39844 135.918 8.02148 138.0254 10.0625 c -%_140.9316 12.877 144.875 13.5156 146.8359 11.4922 c -%_148.7969 9.4668 148.0332 5.54492 145.1289 2.73242 c -%_144.0684 1.70508 142.8691 0.96875 141.6797 0.546875 c -%_141.5664 0.505859 141.498 0.392578 141.5137 0.275391 c -%_141.5273 0.15625 141.623 0.064453 141.7422 0.054688 c -%_148.1309 -0.5 152.5117 3.30664 155.2578 7.93164 c -%_158.0527 12.6367 162.8281 16.3438 168.4688 15.6035 c -%_168.5879 15.5879 168.7012 15.6582 168.7422 15.7715 c -%_168.7813 15.8848 168.7363 16.0098 168.6328 16.0723 c -%_165.8359 17.7559 162.7617 18.4551 158.7695 17.125 C -%_164.5645 22.0332 172.8164 24.8652 180.6104 22.3516 c -%_180.7197 22.3164 180.8389 22.3594 180.9014 22.4551 c -%_180.9639 22.5508 180.9541 22.6777 180.876 22.7637 c -%_174.9668 29.3281 163.1855 29.459 155.7656 24.1348 C -%_158.8027 28.4512 162.834 31.6211 170.0586 32.6133 c -%_170.1738 32.6289 170.2637 32.7227 170.2773 32.8379 c -%_170.2891 32.9531 170.2227 33.0625 170.1133 33.1035 c -%_161.8223 36.1797 153.5137 33.0586 146.668 24.8867 C -%_149.6602 31.2656 154.5742 36.373 161.4355 38.9004 c -%_161.5508 38.9414 161.6191 39.0586 161.5977 39.1797 c -%_161.5781 39.3008 161.4746 39.3887 161.3535 39.3906 c -%_157.4102 39.4727 153.8672 38.5332 149.0879 35.8203 C -%_152.5957 41.5117 151.8281 51.459 146.7188 58.0801 c -%_146.6484 58.1719 146.5234 58.2031 146.416 58.1582 c -%_146.3105 58.1113 146.248 57.998 146.2676 57.8828 c -%_147.4473 50.6836 144.9688 42.5547 140.6582 38.2422 C -%_142.8105 45.873 140.6641 52.8184 134.7617 57.8848 c -%_134.6914 57.9453 134.5918 57.9629 134.5059 57.9297 c -%_134.418 57.8965 134.3574 57.8184 134.3438 57.7266 c -%_133.1094 48.3086 122.5742 38.752 113.7422 37.9512 c -%_113.6172 37.9395 113.5195 37.8398 113.5117 37.7148 c -%_113.5039 37.5898 113.5859 37.4785 113.709 37.4512 c -%_117.9883 36.4824 122.4004 36.9609 126.0977 38.4805 C -%_123.4375 35.5488 120.1582 33.3711 116.543 32.2363 c -%_116.4258 32.1992 116.3535 32.0859 116.3672 31.9648 c -%_116.3809 31.8438 116.4805 31.748 116.6016 31.7402 c -%_121.1113 31.4297 125.5254 32.7461 129.332 35.2793 C -%_124.9707 28.6582 118.3516 23.7344 109.9043 21.7715 c -%_109.7832 21.7441 109.7012 21.6328 109.707 21.5098 c -%_109.7148 21.3867 109.8105 21.2871 109.9336 21.2734 c -%_121.8516 19.9707 131.6797 24.5918 138.1543 33.1914 C -%_136.5059 28.2891 131.7891 23.4355 125.209 20.5723 c -%_119.3633 18.0273 113.3594 17.625 108.7871 19.0625 c -%_108.6816 19.0957 108.5645 19.0547 108.502 18.9629 c -%_108.4395 18.8691 108.4434 18.7461 108.5137 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 94.2324 m -%_156.6113 83.7461 156.9531 75.5469 160.8242 65.1777 c -%_160.8691 65.0605 160.9902 64.9922 161.1133 65.0176 c -%_161.2363 65.043 161.3223 65.1543 161.3164 65.2773 c -%_160.6953 77.9004 164.1426 86.9316 171.6152 93.0859 C -%_163.3652 83.2324 167.2617 63.5254 180.4385 63.5254 c -%_190.0244 63.5254 197.9531 71.502 199.8926 81.0508 c -%_199.918 81.1719 199.8516 81.293 199.7344 81.3379 c -%_199.6191 81.3828 199.4883 81.3379 199.4258 81.2305 c -%_196.584 76.4688 192.0176 73.3789 186.9697 73.3789 c -%_178.834 73.3789 176.4277 79.8457 176.4277 84.3789 c -%_176.4277 90.5645 181.3545 95.7207 185.1357 95.7207 c -%_188.5732 95.7207 190.1768 92.8984 190.1768 90.7949 c -%_190.1768 86.8965 187.1787 83.6289 183.8018 82.6309 c -%_183.6807 82.5938 183.6045 82.4766 183.6221 82.3516 c -%_183.6396 82.2266 183.7451 82.1328 183.8721 82.1328 c -%_187.9775 82.1074 191.4473 83.9863 193.5 87.7012 C -%_193.7695 84.8262 193.7715 83.0156 192.8594 79.9766 c -%_192.8242 79.8594 192.877 79.7344 192.9844 79.6777 c -%_193.0938 79.623 193.2266 79.6504 193.3008 79.748 c -%_200.6582 89.1406 197.1367 105.3711 191.3223 112.1055 C -%_196.8535 108.123 201.7383 99.4707 201.6621 87.7109 c -%_201.6602 87.5898 201.7461 87.4844 201.8672 87.4609 c -%_201.9863 87.4375 202.1055 87.502 202.1504 87.6152 c -%_206.2598 97.8691 204.0801 116.8633 192.8691 127.4668 C -%_195.7539 127.8652 198.7363 127.8145 201.9941 126.7754 c -%_202.1094 126.7383 202.2344 126.7891 202.293 126.8945 c -%_202.3516 127 202.3281 127.1328 202.2344 127.2109 c -%_198.1426 130.666 192.4199 131.752 186.9697 131.752 C -%_191.666 126.252 190.1064 115.1992 182.6162 115.1992 c -%_177.2656 115.1992 174.8379 123.498 178.9668 127.9805 c -%_179.0449 128.0664 179.0547 128.1934 178.9922 128.291 c -%_178.9277 128.3887 178.8066 128.4297 178.6953 128.3926 c -%_173.916 126.7363 168.75 122.6035 168.75 117.375 c -%_168.75 112.334 173.5625 107.9805 180.5537 108.3242 C -%_171.7324 105.8203 162.5 108.5918 157.6699 114.5781 c -%_157.5957 114.6699 157.4648 114.6992 157.3594 114.6445 c -%_157.252 114.5918 157.1973 114.4707 157.2266 114.3535 c -%_160.0176 103.6387 169.1934 99.1543 180.667 100.6484 C -%_171.3848 96.8906 157.416 100.166 151.2422 107.957 c -%_151.1699 108.0488 151.043 108.0801 150.9355 108.0293 c -%_150.8301 107.9805 150.7715 107.8633 150.7949 107.748 c -%_152.166 101.1328 155.6582 96.1875 161.418 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.829892 0.242618 0.080446 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 74.9453 m -%_26.7178 75.0645 26.8213 75.1504 26.9424 75.1523 c -%_39.8486 75.2871 51.6963 78.4199 60.9141 86.667 C -%_52.8838 81.1094 37.9717 79.1563 29.3867 83.0488 c -%_29.2764 83.0986 29.2178 83.2188 29.2451 83.3369 c -%_29.2715 83.4551 29.3779 83.5371 29.499 83.5332 c -%_40.1787 83.2441 48.7783 86.54 55.4834 92.498 C -%_48.6143 92.9199 42.9092 97.2383 42.9268 102.3428 c -%_42.9268 102.4619 43.0107 102.5645 43.1279 102.5898 c -%_43.2441 102.6152 43.3623 102.5547 43.4111 102.4463 c -%_44.5322 99.957 48.1592 98.666 51.9941 99.5664 c -%_56.1738 100.5469 58.9941 103.7559 58.2949 106.7314 c -%_57.8232 108.7461 55.8584 110.1348 53.3428 110.5186 c -%_53.2158 110.5371 53.123 110.6484 53.126 110.7764 c -%_53.1299 110.9043 53.2285 111.0098 53.3564 111.0215 c -%_54.4248 111.124 55.5361 111.1279 56.6738 111.0195 c -%_63.1641 110.4023 68.1875 106.4238 68.623 101.8418 C -%_73.3359 102.3887 77.5078 104.998 79.002 108.6152 c -%_79.0469 108.7236 79.1621 108.7871 79.2773 108.7695 c -%_79.3926 108.75 79.4805 108.6553 79.4902 108.5391 c -%_79.8672 103.7871 78.2324 100.7002 74.5195 97.6846 C -%_79.9043 99.7441 85.9648 99.8496 91.7754 97.1465 c -%_91.8809 97.0977 91.9395 96.9824 91.918 96.8672 c -%_91.8945 96.752 91.7949 96.668 91.6777 96.6641 c -%_86.7988 96.4736 83.2617 94.9082 79.9473 91.5918 C -%_98.2012 96.7256 113.0332 85.3906 107.9004 68.5391 c -%_107.8652 68.4238 107.7539 68.3486 107.6328 68.3613 c -%_107.5117 68.373 107.416 68.4688 107.4063 68.5898 c -%_106.4883 78.3037 99.7031 84.7051 89.5449 85.666 C -%_94.9316 83.6055 100.5449 78.6895 101.1016 70.1318 c -%_101.1094 70.0098 101.0293 69.8984 100.9102 69.8691 c -%_100.791 69.8398 100.668 69.8984 100.6172 70.0098 c -%_97.8184 76.1641 92.3203 79.2754 86.457 79.8223 C -%_92.791 77.2422 96.8535 71.2207 98.0273 63.4023 c -%_98.0469 63.2793 97.9727 63.1602 97.8535 63.123 c -%_97.7363 63.084 97.6074 63.1387 97.5508 63.248 c -%_93.6855 70.8311 85.3945 76.042 75.1035 72.0605 c -%_64.4863 67.9512 59.8291 55.6738 58.7998 47.0195 c -%_58.7852 46.8984 58.6846 46.8047 58.5615 46.7969 c -%_58.4395 46.7891 58.3291 46.8711 58.3008 46.9922 c -%_54.5811 62.6797 61.8838 78.9414 74.9375 85.832 C -%_67.8418 83.8291 61.498 79.5723 57.9102 72.4775 C -%_49.6162 71.459 43.9063 68.6152 41.0527 63.2383 c -%_40.9961 63.1309 40.8721 63.0781 40.7568 63.1133 c -%_40.6416 63.1465 40.5654 63.2578 40.5752 63.3789 c -%_40.7578 65.4883 41.5166 69.709 44.6494 71.6494 C -%_37.6846 71.6387 32.1436 72.543 26.8506 74.6621 c -%_26.7393 74.708 26.6738 74.8262 26.6963 74.9453 c -%_f -%_0 D -%_56.1826 21.4746 m -%_56.084 21.541 55.9541 21.5293 55.8672 21.4492 c -%_55.7813 21.3672 55.7627 21.2383 55.8213 21.1367 c -%_57.4414 18.3398 55.9619 14.3223 52.7705 14.3223 c -%_47.0498 14.3223 44.2998 25.0918 45.1748 34.916 C -%_47.3379 29.1602 49.208 26.8613 52.5225 24.1211 c -%_52.6162 24.043 52.751 24.043 52.8447 24.1191 c -%_52.9385 24.1973 52.9658 24.3281 52.9082 24.4355 c -%_48.0518 33.5156 47.0107 40.502 47.0107 48.5215 C -%_48.4736 42.5625 50.2061 39.1992 55.1377 34.1406 c -%_55.2236 34.0527 55.3604 34.0391 55.4629 34.1074 c -%_55.5645 34.1777 55.6016 34.3105 55.5498 34.4238 c -%_50.252 46.0137 50.6563 58.8711 54.6025 68.6875 c -%_54.6416 68.7852 54.6172 68.8965 54.54 68.9688 c -%_54.4629 69.0391 54.3506 69.0566 54.2549 69.0098 c -%_49.0498 66.459 45.9912 64.7832 41.5029 58.6211 C -%_42.8604 51.2227 41.7314 47.5723 38.3311 41.4258 C -%_42.2686 51.3438 40.1729 65.3203 30.1436 71.0176 c -%_30.0342 71.0791 29.8955 71.0518 29.8193 70.9531 c -%_29.7412 70.8535 29.748 70.7119 29.835 70.6211 c -%_33.6162 66.666 36.3662 59.9863 33.9912 52.6934 C -%_35.5205 63.082 26.3955 71.8086 16.2119 71.8086 c -%_6.6123 71.8086 0.061523 64.2988 0.602539 56.8672 c -%_1.13965 49.502 6.0459 45.8984 10.2744 44.3691 c -%_10.3857 44.3301 10.5107 44.3711 10.5742 44.4707 c -%_10.6377 44.5723 10.624 44.7012 10.541 44.7871 c -%_4.93066 50.4785 4.16309 61.2793 14.124 64.5469 C -%_8.26465 59.4902 10.4346 47.7168 19.8135 46.8223 c -%_19.9307 46.8105 20.04 46.8809 20.0781 46.9922 c -%_20.1162 47.1035 20.0732 47.2266 19.9746 47.2891 c -%_17.9658 48.5664 16.2959 51.0605 16.2959 53.8633 c -%_16.2959 58.5371 19.7178 60.373 21.9717 60.373 c -%_25.3936 60.373 28.2314 57.1172 28.2314 52.1934 c -%_28.2314 46.3496 22.9717 41.5098 16.2119 40.7578 c -%_9.58594 40.0234 3.42969 42.9121 0.461914 47.2168 c -%_0.392578 47.3184 0.260742 47.3555 0.148438 47.3047 c -%_0.036133 47.2539 -0.022461 47.1289 0.007813 47.0098 c -%_3.02637 35.3066 16.8037 30.1328 26.8955 37.5039 C -%_20.2822 30.002 9.88965 29.8984 1.17383 37.5898 c -%_1.08301 37.6699 0.948242 37.6738 0.851563 37.5996 c -%_0.754883 37.5273 0.724609 37.3945 0.77832 37.2871 c -%_3.44531 31.8789 10.0313 25.4668 19.3838 26.4023 c -%_27.9404 27.2578 32.9053 35.416 33.9072 42.0938 C -%_34.4639 33.5723 32.5137 27.5566 25.1533 21.9473 c -%_25.0566 21.873 25.0264 21.7402 25.0811 21.6309 c -%_25.1357 21.5234 25.2607 21.4688 25.3779 21.502 c -%_32.1631 23.4629 37.6084 26.9277 40.4268 34.0469 C -%_40.4268 27.8848 38.2881 21.6738 32.9014 17.5352 c -%_32.8037 17.4609 32.7744 17.3301 32.8291 17.2207 c -%_32.8838 17.1113 33.0078 17.0566 33.125 17.0898 c -%_36.5781 18.0742 39.2959 19.5781 41.2627 22.2754 C -%_42.5732 11.1758 47.7842 4.58398 53.7881 4.58398 c -%_57.9131 4.58398 60.9932 7.61719 60.9932 12.4551 c -%_60.9932 15.2852 59.5049 19.2578 56.1826 21.4746 c -%_f -%_155.4102 113.0938 m -%_152.248 116.998 145.8711 118.4863 138.9785 117.082 C -%_139.4883 121.3828 138.6445 125.873 137.3672 128.5664 c -%_137.3145 128.6758 137.1934 128.7334 137.0762 128.7051 c -%_136.959 128.6758 136.8789 128.5684 136.8828 128.4473 c -%_137.2578 119.6807 132.2598 112.6035 123.4336 109.5371 C -%_130.3398 114.293 132.3594 123.7305 129.0723 128.6035 c -%_129.0039 128.7021 128.877 128.7412 128.7656 128.6953 c -%_128.6543 128.6504 128.5898 128.5332 128.6113 128.416 c -%_128.9844 126.3555 128.0059 123.7314 125.8984 121.6895 c -%_122.9922 118.875 119.0488 118.2363 117.0879 120.2598 c -%_115.127 122.2852 115.8906 126.207 118.7949 129.0215 c -%_119.8555 130.0488 121.0547 130.7832 122.2441 131.2061 c -%_122.3574 131.2461 122.4258 131.3594 122.4102 131.4775 c -%_122.3965 131.5967 122.3008 131.6885 122.1816 131.6982 c -%_115.793 132.2529 111.4121 128.4463 108.666 123.8203 c -%_105.8711 119.1152 101.0957 115.4102 95.4551 116.1504 c -%_95.3359 116.166 95.2227 116.0957 95.1816 115.9824 c -%_95.1426 115.8691 95.1875 115.7422 95.291 115.6807 c -%_98.0879 113.9961 101.1621 113.2969 105.1543 114.6289 C -%_99.3594 109.7197 91.1074 106.8867 83.3145 109.4014 c -%_83.2051 109.4375 83.0859 109.3945 83.0234 109.2979 c -%_82.9609 109.2012 82.9727 109.0752 83.0488 108.9902 c -%_88.957 102.4258 100.7383 102.2949 108.1582 107.6172 C -%_105.1211 103.3008 101.0898 100.1328 93.8652 99.1387 c -%_93.75 99.123 93.6602 99.0313 93.6465 98.916 c -%_93.6348 98.7998 93.7012 98.6904 93.8105 98.6504 c -%_102.1016 95.5723 110.4102 98.6953 117.2559 106.8652 C -%_114.2637 100.4883 109.3496 95.3809 102.4883 92.8535 c -%_102.373 92.8115 102.3047 92.6934 102.3262 92.5742 c -%_102.3457 92.4531 102.4492 92.3643 102.5703 92.3613 c -%_106.5137 92.2803 110.0566 93.2188 114.8359 95.9316 C -%_111.3281 90.2422 112.0957 80.293 117.2051 73.6738 c -%_117.2754 73.582 117.4004 73.5498 117.5078 73.5957 c -%_117.6133 73.6426 117.6758 73.7549 117.6563 73.8691 c -%_116.4766 81.0703 118.9551 89.1992 123.2656 93.5117 C -%_121.1133 85.8799 123.2598 78.9355 129.1621 73.8672 c -%_129.2324 73.8066 129.332 73.79 129.418 73.8232 c -%_129.5059 73.8564 129.5664 73.9355 129.5801 74.0273 c -%_130.8145 83.4453 141.3496 93.002 150.1816 93.8027 c -%_150.3066 93.8135 150.4043 93.9141 150.4121 94.0381 c -%_150.4199 94.1621 150.3379 94.2754 150.2148 94.3027 c -%_145.9355 95.2715 141.5234 94.793 137.8262 93.2715 C -%_140.4863 96.2051 143.7656 98.3828 147.3809 99.5176 c -%_147.498 99.5537 147.5703 99.668 147.5566 99.7891 c -%_147.543 99.9102 147.4434 100.0039 147.3223 100.0127 c -%_142.8125 100.3242 138.3984 99.0068 134.5918 96.4746 C -%_138.9531 103.0957 145.5723 108.0195 154.0195 109.9805 c -%_154.1406 110.0088 154.2227 110.1191 154.2168 110.2432 c -%_154.209 110.3672 154.1133 110.4668 153.9902 110.4805 c -%_142.0723 111.7822 132.2441 107.1621 125.7695 98.5625 C -%_127.418 103.4629 132.1348 108.3184 138.7148 111.1816 c -%_144.5605 113.7266 150.5645 114.1279 155.1367 112.6914 c -%_155.2422 112.6582 155.3594 112.6982 155.4219 112.791 c -%_155.4844 112.8828 155.4805 113.0059 155.4102 113.0938 c -%_f -%_102.5059 37.5215 m -%_107.3125 48.0078 106.9707 56.207 103.0996 66.5762 c -%_103.0547 66.6934 102.9336 66.7607 102.8105 66.7363 c -%_102.6875 66.7109 102.6016 66.5996 102.6074 66.4746 c -%_103.2285 53.8535 99.7813 44.8203 92.3086 38.668 C -%_100.5586 48.5195 96.6621 68.2275 83.4863 68.2275 c -%_73.9004 68.2275 65.9697 60.252 64.0303 50.7031 c -%_64.0059 50.582 64.0723 50.459 64.1885 50.416 c -%_64.3037 50.3711 64.4346 50.416 64.4971 50.5215 c -%_67.3398 55.2832 71.9063 58.373 76.9551 58.373 c -%_85.0898 58.373 87.4961 51.9063 87.4961 47.375 c -%_87.4961 41.1875 82.5703 36.0313 78.7891 36.0313 c -%_75.3516 36.0313 73.748 38.8555 73.748 40.959 c -%_73.748 44.8574 76.7461 48.125 80.125 49.123 c -%_80.2441 49.1582 80.3223 49.2773 80.3047 49.4023 c -%_80.2852 49.5273 80.1797 49.6191 80.0547 49.6211 c -%_75.9473 49.6465 72.4766 47.7656 70.4238 44.0527 C -%_70.1543 46.9277 70.1514 48.7383 71.0645 51.7754 c -%_71.0996 51.8926 71.0459 52.0176 70.9385 52.0742 c -%_70.8291 52.1309 70.6963 52.1016 70.6221 52.0059 c -%_63.2656 42.6133 66.7861 26.3809 72.6016 19.6484 C -%_67.0693 23.6309 62.1846 32.2813 62.2617 44.041 c -%_62.2627 44.1641 62.1768 44.2676 62.0566 44.291 c -%_61.9365 44.3164 61.8174 44.25 61.7725 44.1367 c -%_57.6641 33.8848 59.8438 14.8887 71.0537 4.28516 C -%_68.1699 3.88867 65.1865 3.93945 61.9287 4.97852 c -%_61.8135 5.01367 61.6885 4.96484 61.6299 4.85938 c -%_61.5713 4.75195 61.5947 4.61914 61.6885 4.54102 c -%_65.7803 1.08594 71.5029 0 76.9551 0 C -%_72.2578 5.5 73.8184 16.5547 81.3105 16.5547 c -%_86.6582 16.5547 89.0859 8.25586 84.957 3.77344 c -%_84.8789 3.6875 84.8691 3.55859 84.9316 3.46289 c -%_84.9961 3.36523 85.1172 3.32227 85.2285 3.36133 c -%_90.0078 5.01563 95.1738 9.15039 95.1738 14.377 c -%_95.1738 19.4199 90.3613 23.7715 83.373 23.4277 C -%_92.1914 25.9336 101.4238 23.1602 106.2539 17.1758 c -%_106.3281 17.082 106.459 17.0547 106.5645 17.1074 c -%_106.6719 17.1621 106.7266 17.2832 106.6973 17.3984 c -%_103.9063 28.1152 94.7305 32.5977 83.2578 31.1055 C -%_92.5391 34.8613 106.5078 31.5859 112.6816 23.7949 c -%_112.7539 23.7031 112.8809 23.6738 112.9883 23.7227 c -%_113.0938 23.7734 113.1523 23.8906 113.1289 24.0039 c -%_111.7578 30.6191 108.2656 35.5664 102.5059 37.5215 C -%_f -%_*U -%_*u -%_1 D -%_0.343297 0.001434 0 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 56.8086 m -%_128.8672 56.6895 128.7637 56.6016 128.6426 56.6016 c -%_115.7363 56.4648 103.8887 53.334 94.6719 45.0859 C -%_102.7012 50.6445 117.6133 52.5957 126.1992 48.7051 c -%_126.3086 48.6543 126.3672 48.5332 126.3398 48.416 c -%_126.3145 48.2988 126.207 48.2168 126.0859 48.2188 c -%_115.4063 48.5098 106.8066 45.2129 100.1016 39.2559 C -%_106.9707 38.832 112.6758 34.5156 112.6582 29.4102 c -%_112.6582 29.291 112.5742 29.1875 112.457 29.1621 c -%_112.3418 29.1387 112.2227 29.1973 112.1738 29.3066 c -%_111.0527 31.7949 107.4258 33.0879 103.5918 32.1875 c -%_99.4121 31.2051 96.5918 27.998 97.291 25.0215 c -%_97.7617 23.0078 99.7266 21.6191 102.2422 21.2344 c -%_102.3691 21.2148 102.4629 21.1055 102.459 20.9766 c -%_102.4551 20.8496 102.3574 20.7441 102.2285 20.7305 c -%_101.1602 20.6289 100.0488 20.625 98.9121 20.7344 c -%_92.4219 21.3516 87.3984 25.3281 86.9629 29.9121 C -%_82.25 29.3652 78.0781 26.7539 76.584 23.1387 c -%_76.5391 23.0293 76.4258 22.9668 76.3086 22.9844 c -%_76.1934 23.002 76.1055 23.0977 76.0957 23.2148 c -%_75.7188 27.9648 77.3535 31.0527 81.0664 34.0684 C -%_75.6816 32.0098 69.6201 31.9043 63.8096 34.6055 c -%_63.7041 34.6563 63.6455 34.7715 63.667 34.8867 c -%_63.6904 35.002 63.79 35.0859 63.9072 35.0898 c -%_68.7861 35.2793 72.3242 36.8457 75.6406 40.1621 C -%_57.3838 35.0273 42.5518 46.3633 47.6846 63.2129 c -%_47.7197 63.3301 47.8311 63.4043 47.9521 63.3926 c -%_48.0732 63.3809 48.1689 63.2852 48.1787 63.1641 c -%_49.0967 53.4492 55.8818 47.0469 66.04 46.0879 C -%_60.6533 48.1465 55.04 53.0625 54.4834 61.6211 c -%_54.4756 61.7441 54.5557 61.8535 54.6748 61.8848 c -%_54.7939 61.9141 54.917 61.8535 54.9678 61.7422 c -%_57.7666 55.5879 63.2646 52.4785 69.1279 51.9297 C -%_62.7939 54.5117 58.7314 60.5332 57.5576 68.3516 c -%_57.5381 68.4746 57.6123 68.5918 57.7314 68.6309 c -%_57.8486 68.668 57.9775 68.6152 58.0342 68.5039 c -%_61.8994 60.9219 70.1904 55.7109 80.4824 59.6934 c -%_91.0996 63.8027 95.7559 76.0781 96.7852 84.7324 c -%_96.8008 84.8555 96.9004 84.9492 97.0234 84.957 c -%_97.1465 84.9629 97.2559 84.8809 97.2852 84.7617 c -%_101.0039 69.0723 93.7012 52.8125 80.6484 45.9219 C -%_87.7441 47.9238 94.0879 52.1816 97.6758 59.2754 C -%_105.9688 60.293 111.6797 63.1387 114.5332 68.5156 c -%_114.5898 68.6211 114.7129 68.6738 114.8281 68.6406 c -%_114.9434 68.6055 115.0195 68.4941 115.0098 68.375 c -%_114.8281 66.2656 114.0684 62.0449 110.9355 60.1035 C -%_117.9004 60.1152 123.4414 59.2109 128.7344 57.0898 c -%_128.8457 57.0449 128.9121 56.9277 128.8887 56.8086 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 110.2773 m -%_99.502 110.2129 99.6309 110.2227 99.7188 110.3047 c -%_99.8047 110.3848 99.8223 110.5137 99.7637 110.6172 c -%_98.1445 113.4141 99.623 117.4297 102.8145 117.4297 c -%_108.5352 117.4297 111.2852 106.6602 110.4102 96.8379 C -%_108.248 102.5918 106.377 104.8926 103.0625 107.6328 c -%_102.9688 107.709 102.834 107.7109 102.7402 107.6328 c -%_102.6465 107.5566 102.6191 107.4238 102.6777 107.3164 c -%_107.5332 98.2383 108.5742 91.252 108.5742 83.2324 C -%_107.1113 89.1895 105.3789 92.5527 100.4473 97.6133 c -%_100.3613 97.7012 100.2246 97.7148 100.123 97.6445 c -%_100.0215 97.5742 99.9844 97.4414 100.0352 97.3301 c -%_105.334 85.7383 104.9297 72.8828 100.9824 63.0664 c -%_100.9434 62.9688 100.9688 62.8574 101.0449 62.7852 c -%_101.123 62.7129 101.2344 62.6973 101.3301 62.7422 c -%_106.5352 65.293 109.5938 66.9688 114.082 73.1328 C -%_112.7246 80.5313 113.8535 84.1797 117.2539 90.3262 C -%_113.3164 80.4102 115.4121 66.4336 125.4414 60.7363 c -%_125.5508 60.6738 125.6895 60.7012 125.7656 60.8008 c -%_125.8438 60.9004 125.8379 61.041 125.75 61.1328 c -%_121.9688 65.0879 119.2188 71.7676 121.5938 79.0586 C -%_120.0645 68.6699 129.1895 59.9453 139.373 59.9453 c -%_148.9727 59.9453 155.5234 67.4531 154.9824 74.8848 c -%_154.4453 82.25 149.5391 85.8555 145.3105 87.3828 c -%_145.1992 87.4238 145.0742 87.3809 145.0117 87.2813 c -%_144.9473 87.1816 144.9609 87.0508 145.0449 86.9668 c -%_150.6543 81.2734 151.4219 70.4746 141.4609 67.207 C -%_147.3203 72.2637 145.1504 84.0352 135.7715 84.9316 c -%_135.6543 84.9414 135.5449 84.8711 135.5078 84.7598 c -%_135.4688 84.6504 135.5117 84.5273 135.6113 84.4648 c -%_137.6191 83.1855 139.2891 80.6934 139.2891 77.8906 c -%_139.2891 73.2168 135.8672 71.3789 133.6133 71.3789 c -%_130.1914 71.3789 127.3535 74.6348 127.3535 79.5605 c -%_127.3535 85.4023 132.6133 90.2441 139.373 90.9941 c -%_146 91.7305 152.1563 88.8398 155.123 84.5352 c -%_155.1934 84.4336 155.3242 84.3984 155.4375 84.4492 c -%_155.5488 84.5 155.6074 84.623 155.5781 84.7422 c -%_152.5586 96.4453 138.7813 101.6191 128.6895 94.25 C -%_135.3027 101.75 145.6953 101.8555 154.4121 94.1641 c -%_154.502 94.084 154.6367 94.0781 154.7344 94.1523 c -%_154.8301 94.2266 154.8613 94.3574 154.8066 94.4668 c -%_152.1406 99.873 145.5547 106.2852 136.2012 105.3516 c -%_127.6445 104.4961 122.6797 96.3359 121.6777 89.6602 C -%_121.1211 98.1816 123.0723 104.1953 130.4316 109.8047 c -%_130.5293 109.8789 130.5586 110.0117 130.5039 110.1211 c -%_130.4492 110.2305 130.3242 110.2852 130.207 110.25 c -%_123.4219 108.291 117.9766 104.8262 115.1582 97.707 C -%_115.1582 103.8672 117.2969 110.0781 122.6836 114.2168 c -%_122.7813 114.291 122.8105 114.4238 122.7559 114.5332 c -%_122.7012 114.6406 122.5781 114.6953 122.4609 114.6621 c -%_119.0078 113.6797 116.2891 112.1738 114.3223 109.4785 C -%_113.0117 120.5781 107.8008 127.168 101.7969 127.168 c -%_97.6719 127.168 94.5918 124.1348 94.5918 119.2988 c -%_94.5918 116.4688 96.0801 112.4961 99.4023 110.2773 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 18.6602 m -%_3.33691 14.7559 9.71387 13.2676 16.6064 14.6719 C -%_16.0967 10.3691 16.9404 5.88086 18.2178 3.18555 c -%_18.2705 3.07813 18.3916 3.01953 18.5088 3.04883 c -%_18.626 3.07813 18.7061 3.18555 18.7021 3.30664 c -%_18.3271 12.0723 23.3252 19.1484 32.1514 22.2148 C -%_25.2451 17.459 23.2256 8.02148 26.5127 3.15039 c -%_26.5811 3.05078 26.708 3.01172 26.8193 3.05664 c -%_26.9307 3.10156 26.9951 3.21875 26.9736 3.33789 c -%_26.6006 5.39844 27.5791 8.02148 29.6865 10.0625 c -%_32.5928 12.877 36.5361 13.5156 38.4971 11.4922 c -%_40.458 9.4668 39.6943 5.54492 36.79 2.73242 c -%_35.7295 1.70508 34.5303 0.96875 33.3408 0.546875 c -%_33.2275 0.505859 33.1592 0.392578 33.1748 0.275391 c -%_33.1885 0.15625 33.2842 0.064453 33.4033 0.054688 c -%_39.792 -0.5 44.1729 3.30664 46.9189 7.93164 c -%_49.7139 12.6367 54.4893 16.3438 60.1299 15.6035 c -%_60.249 15.5879 60.3623 15.6582 60.4033 15.7715 c -%_60.4424 15.8848 60.3975 16.0098 60.2939 16.0723 c -%_57.4971 17.7559 54.4229 18.4551 50.4307 17.125 C -%_56.2256 22.0332 64.4775 24.8652 72.2715 22.3516 c -%_72.3809 22.3164 72.5 22.3594 72.5625 22.4551 c -%_72.625 22.5508 72.6152 22.6777 72.5371 22.7637 c -%_66.6279 29.3281 54.8467 29.459 47.4268 24.1348 C -%_50.4639 28.4512 54.4951 31.6211 61.7197 32.6133 c -%_61.835 32.6289 61.9248 32.7227 61.9385 32.8379 c -%_61.9502 32.9531 61.8838 33.0625 61.7744 33.1035 c -%_53.4834 36.1797 45.1748 33.0586 38.3291 24.8867 C -%_41.3213 31.2656 46.2354 36.373 53.0967 38.9004 c -%_53.2119 38.9414 53.2803 39.0586 53.2588 39.1797 c -%_53.2393 39.3008 53.1357 39.3887 53.0146 39.3906 c -%_49.0713 39.4727 45.5283 38.5332 40.749 35.8203 C -%_44.2568 41.5117 43.4893 51.459 38.3799 58.0801 c -%_38.3096 58.1719 38.1846 58.2031 38.0771 58.1582 c -%_37.9717 58.1113 37.9092 57.998 37.9287 57.8828 c -%_39.1084 50.6836 36.6299 42.5547 32.3193 38.2422 C -%_34.4717 45.873 32.3252 52.8184 26.4229 57.8848 c -%_26.3525 57.9453 26.2529 57.9629 26.167 57.9297 c -%_26.0791 57.8965 26.0186 57.8184 26.0049 57.7266 c -%_24.7705 48.3086 14.2354 38.752 5.40332 37.9512 c -%_5.27832 37.9395 5.18066 37.8398 5.17285 37.7148 c -%_5.16504 37.5898 5.24707 37.4785 5.37012 37.4512 c -%_9.64941 36.4824 14.0615 36.9609 17.7588 38.4805 C -%_15.0986 35.5488 11.8193 33.3711 8.2041 32.2363 c -%_8.08691 32.1992 8.01465 32.0859 8.02832 31.9648 c -%_8.04199 31.8438 8.1416 31.748 8.2627 31.7402 c -%_12.7725 31.4297 17.1865 32.7461 20.9932 35.2793 C -%_16.6318 28.6582 10.0127 23.7344 1.56543 21.7715 c -%_1.44434 21.7441 1.3623 21.6328 1.36816 21.5098 c -%_1.37598 21.3867 1.47168 21.2871 1.59473 21.2734 c -%_13.5127 19.9707 23.3408 24.5918 29.8154 33.1914 C -%_28.167 28.2891 23.4502 23.4355 16.8701 20.5723 c -%_11.0244 18.0273 5.02051 17.625 0.448242 19.0625 c -%_0.342773 19.0957 0.225586 19.0547 0.163086 18.9629 c -%_0.100586 18.8691 0.104492 18.7461 0.174805 18.6602 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 94.2324 m -%_48.2725 83.7461 48.6143 75.5469 52.4854 65.1777 c -%_52.5303 65.0605 52.6514 64.9922 52.7744 65.0176 c -%_52.8975 65.043 52.9834 65.1543 52.9775 65.2773 c -%_52.3564 77.9004 55.8037 86.9316 63.2764 93.0859 C -%_55.0264 83.2324 58.9229 63.5254 72.0996 63.5254 c -%_81.6855 63.5254 89.6152 71.502 91.5547 81.0508 c -%_91.5801 81.1719 91.5137 81.293 91.3965 81.3379 c -%_91.2813 81.3828 91.1504 81.3379 91.0879 81.2305 c -%_88.2461 76.4688 83.6797 73.3789 78.6309 73.3789 c -%_70.4951 73.3789 68.0889 79.8457 68.0889 84.3789 c -%_68.0889 90.5645 73.0156 95.7207 76.7969 95.7207 c -%_80.2344 95.7207 81.8379 92.8984 81.8379 90.7949 c -%_81.8379 86.8965 78.8398 83.6289 75.4629 82.6309 c -%_75.3418 82.5938 75.2656 82.4766 75.2832 82.3516 c -%_75.3008 82.2266 75.4063 82.1328 75.5332 82.1328 c -%_79.6387 82.1074 83.1094 83.9863 85.1621 87.7012 C -%_85.4316 84.8262 85.4336 83.0156 84.5215 79.9766 c -%_84.4863 79.8594 84.5391 79.7344 84.6465 79.6777 c -%_84.7559 79.623 84.8887 79.6504 84.9629 79.748 c -%_92.3203 89.1406 88.7988 105.3711 82.9844 112.1055 C -%_88.5156 108.123 93.4004 99.4707 93.3242 87.7109 c -%_93.3223 87.5898 93.4082 87.4844 93.5293 87.4609 c -%_93.6484 87.4375 93.7676 87.502 93.8125 87.6152 c -%_97.9219 97.8691 95.7422 116.8633 84.5313 127.4668 C -%_87.416 127.8652 90.3984 127.8145 93.6563 126.7754 c -%_93.7715 126.7383 93.8965 126.7891 93.9551 126.8945 c -%_94.0137 127 93.9902 127.1328 93.8965 127.2109 c -%_89.8047 130.666 84.082 131.752 78.6309 131.752 C -%_83.3281 126.252 81.7676 115.1992 74.2773 115.1992 c -%_68.9268 115.1992 66.499 123.498 70.6279 127.9805 c -%_70.7061 128.0664 70.7158 128.1934 70.6533 128.291 c -%_70.5889 128.3887 70.4678 128.4297 70.3564 128.3926 c -%_65.5771 126.7363 60.4111 122.6035 60.4111 117.375 c -%_60.4111 112.334 65.2236 107.9805 72.2148 108.3242 C -%_63.3936 105.8203 54.1611 108.5918 49.3311 114.5781 c -%_49.2568 114.6699 49.126 114.6992 49.0205 114.6445 c -%_48.9131 114.5918 48.8584 114.4707 48.8877 114.3535 c -%_51.6787 103.6387 60.8545 99.1543 72.3281 100.6484 C -%_63.0459 96.8906 49.0771 100.166 42.9033 107.957 c -%_42.8311 108.0488 42.7041 108.0801 42.5967 108.0293 c -%_42.4912 107.9805 42.4326 107.8633 42.4561 107.748 c -%_43.8271 101.1328 47.3193 96.1875 53.0791 94.2324 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary -endstream endobj 31 0 obj <>stream -: -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.829892 0.242618 0.080446 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_135.0352 184.5869 m -%_135.0566 184.7061 135.1602 184.792 135.2813 184.7939 c -%_148.1875 184.9287 160.0352 188.0615 169.2529 196.3086 C -%_161.2227 190.751 146.3105 188.7979 137.7256 192.6904 c -%_137.6152 192.7402 137.5566 192.8604 137.584 192.9785 c -%_137.6104 193.0967 137.7168 193.1787 137.8379 193.1748 c -%_148.5176 192.8857 157.1172 196.1816 163.8223 202.1396 C -%_156.9531 202.5615 151.248 206.8799 151.2656 211.9844 c -%_151.2656 212.1035 151.3496 212.2061 151.4668 212.2314 c -%_151.583 212.2568 151.7012 212.1963 151.75 212.0879 c -%_152.8711 209.5986 156.498 208.3076 160.333 209.208 c -%_164.5127 210.1885 167.333 213.3975 166.6338 216.373 c -%_166.1621 218.3877 164.1973 219.7764 161.6816 220.1602 c -%_161.5547 220.1787 161.4619 220.29 161.4648 220.418 c -%_161.4688 220.5459 161.5674 220.6514 161.6953 220.6631 c -%_162.7637 220.7656 163.875 220.7695 165.0127 220.6611 c -%_171.5029 220.0439 176.5264 216.0654 176.9619 211.4834 C -%_181.6748 212.0303 185.8467 214.6396 187.3408 218.2568 c -%_187.3857 218.3652 187.501 218.4287 187.6162 218.4111 c -%_187.7314 218.3916 187.8193 218.2969 187.8291 218.1807 c -%_188.2061 213.4287 186.5713 210.3418 182.8584 207.3262 C -%_188.2432 209.3857 194.3027 209.4912 200.1133 206.7881 c -%_200.2188 206.7393 200.2773 206.624 200.2559 206.5088 c -%_200.2324 206.3936 200.1328 206.3096 200.0156 206.3057 c -%_195.1367 206.1152 191.5996 204.5498 188.2861 201.2334 C -%_206.5391 206.3672 221.3711 195.0322 216.2383 178.1807 c -%_216.2031 178.0654 216.0918 177.9902 215.9707 178.0029 c -%_215.8496 178.0146 215.7539 178.1104 215.7441 178.2314 c -%_214.8262 187.9453 208.041 194.3467 197.8828 195.3076 C -%_203.2695 193.2471 208.8828 188.3311 209.4395 179.7734 c -%_209.4473 179.6514 209.3672 179.54 209.248 179.5107 c -%_209.1289 179.4814 209.0059 179.54 208.9551 179.6514 c -%_206.1563 185.8057 200.6582 188.917 194.7949 189.4639 C -%_201.1289 186.8838 205.1914 180.8623 206.3652 173.0439 c -%_206.3848 172.9209 206.3105 172.8018 206.1914 172.7646 c -%_206.0742 172.7256 205.9453 172.7803 205.8887 172.8896 c -%_202.0234 180.4727 193.7324 185.6836 183.4424 181.7021 c -%_172.8252 177.5928 168.168 165.3154 167.1387 156.6611 c -%_167.124 156.54 167.0234 156.4463 166.9004 156.4385 c -%_166.7783 156.4307 166.668 156.5127 166.6396 156.6338 c -%_162.9199 172.3213 170.2227 188.583 183.2764 195.4736 C -%_176.1807 193.4707 169.8369 189.2139 166.249 182.1191 C -%_157.9551 181.1006 152.2451 178.2568 149.3916 172.8799 c -%_149.335 172.7725 149.2109 172.7197 149.0957 172.7549 c -%_148.9805 172.7881 148.9043 172.8994 148.9141 173.0205 c -%_149.0967 175.1299 149.8555 179.3506 152.9883 181.291 C -%_146.0234 181.2803 140.4824 182.1846 135.1895 184.3037 c -%_135.0781 184.3496 135.0127 184.4678 135.0352 184.5869 c -%_f -%_0 D -%_164.5215 131.1162 m -%_164.4229 131.1826 164.293 131.1709 164.2061 131.0908 c -%_164.1201 131.0088 164.1016 130.8799 164.1602 130.7783 c -%_165.7803 127.9814 164.3008 123.9639 161.1094 123.9639 c -%_155.3887 123.9639 152.6387 134.7334 153.5137 144.5576 C -%_155.6768 138.8018 157.5469 136.5029 160.8613 133.7627 c -%_160.9551 133.6846 161.0898 133.6846 161.1836 133.7607 c -%_161.2773 133.8389 161.3047 133.9697 161.2471 134.0771 c -%_156.3906 143.1572 155.3496 150.1436 155.3496 158.1631 C -%_156.8125 152.2041 158.5449 148.8408 163.4766 143.7822 c -%_163.5625 143.6943 163.6992 143.6807 163.8018 143.749 c -%_163.9033 143.8193 163.9404 143.9521 163.8887 144.0654 c -%_158.5908 155.6553 158.9951 168.5127 162.9414 178.3291 c -%_162.9805 178.4268 162.9561 178.5381 162.8789 178.6104 c -%_162.8018 178.6807 162.6895 178.6982 162.5938 178.6514 c -%_157.3887 176.1006 154.3301 174.4248 149.8418 168.2627 C -%_151.1992 160.8643 150.0703 157.2139 146.6699 151.0674 C -%_150.6074 160.9854 148.5117 174.9619 138.4824 180.6592 c -%_138.373 180.7207 138.2344 180.6934 138.1582 180.5947 c -%_138.0801 180.4951 138.0869 180.3535 138.1738 180.2627 c -%_141.9551 176.3076 144.7051 169.6279 142.3301 162.335 C -%_143.8594 172.7236 134.7344 181.4502 124.5508 181.4502 c -%_114.9512 181.4502 108.4004 173.9404 108.9414 166.5088 c -%_109.4785 159.1436 114.3848 155.54 118.6133 154.0107 c -%_118.7246 153.9717 118.8496 154.0127 118.9131 154.1123 c -%_118.9766 154.2139 118.9629 154.3428 118.8799 154.4287 c -%_113.2695 160.1201 112.502 170.9209 122.4629 174.1885 C -%_116.6035 169.1318 118.7734 157.3584 128.1523 156.4639 c -%_128.2695 156.4521 128.3789 156.5225 128.417 156.6338 c -%_128.4551 156.7451 128.4121 156.8682 128.3135 156.9307 c -%_126.3047 158.208 124.6348 160.7021 124.6348 163.5049 c -%_124.6348 168.1787 128.0566 170.0146 130.3105 170.0146 c -%_133.7324 170.0146 136.5703 166.7588 136.5703 161.835 c -%_136.5703 155.9912 131.3105 151.1514 124.5508 150.3994 c -%_117.9248 149.665 111.7686 152.5537 108.8008 156.8584 c -%_108.7314 156.96 108.5996 156.9971 108.4873 156.9463 c -%_108.375 156.8955 108.3164 156.7705 108.3467 156.6514 c -%_111.3652 144.9482 125.1426 139.7744 135.2344 147.1455 C -%_128.6211 139.6436 118.2285 139.54 109.5127 147.2314 c -%_109.4219 147.3115 109.2871 147.3154 109.1904 147.2412 c -%_109.0938 147.1689 109.0635 147.0361 109.1172 146.9287 c -%_111.7842 141.5205 118.3701 135.1084 127.7227 136.0439 c -%_136.2793 136.8994 141.2441 145.0576 142.2461 151.7354 C -%_142.8027 143.2139 140.8525 137.1982 133.4922 131.5889 c -%_133.3955 131.5146 133.3652 131.3818 133.4199 131.2725 c -%_133.4746 131.165 133.5996 131.1104 133.7168 131.1436 c -%_140.502 133.1045 145.9473 136.5693 148.7656 143.6885 C -%_148.7656 137.5264 146.627 131.3154 141.2402 127.1768 c -%_141.1426 127.1025 141.1133 126.9717 141.168 126.8623 c -%_141.2227 126.7529 141.3467 126.6982 141.4639 126.7314 c -%_144.917 127.7158 147.6348 129.2197 149.6016 131.917 C -%_150.9121 120.8174 156.123 114.2256 162.127 114.2256 c -%_166.252 114.2256 169.332 117.2588 169.332 122.0967 c -%_169.332 124.9268 167.8438 128.8994 164.5215 131.1162 c -%_f -%_263.748 222.7354 m -%_260.5859 226.6396 254.209 228.1279 247.3164 226.7236 C -%_247.8262 231.0244 246.9824 235.5146 245.7051 238.208 c -%_245.6523 238.3174 245.5313 238.375 245.4141 238.3467 c -%_245.2969 238.3174 245.2168 238.21 245.2207 238.0889 c -%_245.5957 229.3223 240.5977 222.2451 231.7715 219.1787 C -%_238.6777 223.9346 240.6973 233.3721 237.4102 238.2451 c -%_237.3418 238.3438 237.2148 238.3828 237.1035 238.3369 c -%_236.9922 238.292 236.9277 238.1748 236.9492 238.0576 c -%_237.3223 235.9971 236.3438 233.373 234.2363 231.3311 c -%_231.3301 228.5166 227.3867 227.8779 225.4258 229.9014 c -%_223.4648 231.9268 224.2285 235.8486 227.1328 238.6631 c -%_228.1934 239.6904 229.3926 240.4248 230.582 240.8477 c -%_230.6953 240.8877 230.7637 241.001 230.748 241.1191 c -%_230.7344 241.2383 230.6387 241.3301 230.5195 241.3398 c -%_224.1309 241.8945 219.75 238.0879 217.0039 233.4619 c -%_214.209 228.7568 209.4336 225.0518 203.793 225.792 c -%_203.6738 225.8076 203.5605 225.7373 203.5195 225.624 c -%_203.4805 225.5107 203.5254 225.3838 203.6289 225.3223 c -%_206.4258 223.6377 209.5 222.9385 213.4922 224.2705 C -%_207.6973 219.3613 199.4453 216.5283 191.6523 219.043 c -%_191.543 219.0791 191.4238 219.0361 191.3613 218.9395 c -%_191.2988 218.8428 191.3105 218.7168 191.3867 218.6318 c -%_197.2949 212.0674 209.0762 211.9365 216.4961 217.2588 C -%_213.459 212.9424 209.4277 209.7744 202.2031 208.7803 c -%_202.0879 208.7646 201.998 208.6729 201.9844 208.5576 c -%_201.9727 208.4414 202.0391 208.332 202.1484 208.292 c -%_210.4395 205.2139 218.748 208.3369 225.5938 216.5068 C -%_222.6016 210.1299 217.6875 205.0225 210.8262 202.4951 c -%_210.7109 202.4531 210.6426 202.335 210.6641 202.2158 c -%_210.6836 202.0947 210.7871 202.0059 210.9082 202.0029 c -%_214.8516 201.9219 218.3945 202.8604 223.1738 205.5732 C -%_219.666 199.8838 220.4336 189.9346 225.543 183.3154 c -%_225.6133 183.2236 225.7383 183.1914 225.8457 183.2373 c -%_225.9512 183.2842 226.0137 183.3965 225.9941 183.5107 c -%_224.8145 190.7119 227.293 198.8408 231.6035 203.1533 C -%_229.4512 195.5215 231.5977 188.5771 237.5 183.5088 c -%_237.5703 183.4482 237.6699 183.4316 237.7559 183.4648 c -%_237.8438 183.498 237.9043 183.5771 237.918 183.6689 c -%_239.1523 193.0869 249.6875 202.6436 258.5195 203.4443 c -%_258.6445 203.4551 258.7422 203.5557 258.75 203.6797 c -%_258.7578 203.8037 258.6758 203.917 258.5527 203.9443 c -%_254.2734 204.9131 249.8613 204.4346 246.1641 202.9131 C -%_248.8242 205.8467 252.1035 208.0244 255.7188 209.1592 c -%_255.8359 209.1953 255.9082 209.3096 255.8945 209.4307 c -%_255.8809 209.5518 255.7813 209.6455 255.6602 209.6543 c -%_251.1504 209.9658 246.7363 208.6484 242.9297 206.1162 C -%_247.291 212.7373 253.9102 217.6611 262.3574 219.6221 c -%_262.4785 219.6504 262.5605 219.7607 262.5547 219.8848 c -%_262.5469 220.0088 262.4512 220.1084 262.3281 220.1221 c -%_250.4102 221.4238 240.582 216.8037 234.1074 208.2041 C -%_235.7559 213.1045 240.4727 217.96 247.0527 220.8232 c -%_252.8984 223.3682 258.9023 223.7695 263.4746 222.333 c -%_263.5801 222.2998 263.6973 222.3398 263.7598 222.4326 c -%_263.8223 222.5244 263.8184 222.6475 263.748 222.7354 c -%_f -%_210.8438 147.1631 m -%_215.6504 157.6494 215.3086 165.8486 211.4375 176.2178 c -%_211.3926 176.335 211.2715 176.4023 211.1484 176.3779 c -%_211.0254 176.3525 210.9395 176.2412 210.9453 176.1162 c -%_211.5664 163.4951 208.1191 154.4619 200.6465 148.3096 C -%_208.8965 158.1611 205 177.8691 191.8242 177.8691 c -%_182.2393 177.8691 174.3086 169.8936 172.3691 160.3447 c -%_172.3447 160.2236 172.4111 160.1006 172.5273 160.0576 c -%_172.6426 160.0127 172.7734 160.0576 172.8359 160.1631 c -%_175.6787 164.9248 180.2451 168.0146 185.2939 168.0146 c -%_193.4277 168.0146 195.834 161.5479 195.834 157.0166 c -%_195.834 150.8291 190.9082 145.6729 187.1279 145.6729 c -%_183.6904 145.6729 182.0869 148.4971 182.0869 150.6006 c -%_182.0869 154.499 185.085 157.7666 188.4639 158.7646 c -%_188.583 158.7998 188.6611 158.9189 188.6436 159.0439 c -%_188.624 159.1689 188.5186 159.2607 188.3936 159.2627 c -%_184.2861 159.2881 180.8154 157.4072 178.7627 153.6943 C -%_178.4932 156.5693 178.4902 158.3799 179.4033 161.417 c -%_179.4385 161.5342 179.3848 161.6592 179.2773 161.7158 c -%_179.168 161.7725 179.0352 161.7432 178.9609 161.6475 c -%_171.6045 152.2549 175.125 136.0225 180.9404 129.29 C -%_175.4082 133.2725 170.5234 141.9229 170.6006 153.6826 c -%_170.6016 153.8057 170.5156 153.9092 170.3955 153.9326 c -%_170.2754 153.958 170.1563 153.8916 170.1113 153.7783 c -%_166.0029 143.5264 168.1826 124.5303 179.3926 113.9268 C -%_176.5088 113.5303 173.5254 113.5811 170.2676 114.6201 c -%_170.1523 114.6553 170.0273 114.6064 169.9688 114.501 c -%_169.9102 114.3936 169.9336 114.2607 170.0273 114.1826 c -%_174.1191 110.7275 179.8418 109.6416 185.2939 109.6416 C -%_180.5967 115.1416 182.1572 126.1963 189.6494 126.1963 c -%_194.9961 126.1963 197.4238 117.8975 193.2949 113.415 c -%_193.2168 113.3291 193.207 113.2002 193.2695 113.1045 c -%_193.334 113.0068 193.4551 112.9639 193.5664 113.0029 c -%_198.3457 114.6572 203.5117 118.792 203.5117 124.0186 c -%_203.5117 129.0615 198.6992 133.4131 191.7109 133.0693 C -%_200.5293 135.5752 209.7617 132.8018 214.5918 126.8174 c -%_214.666 126.7236 214.7969 126.6963 214.9023 126.749 c -%_215.0098 126.8037 215.0645 126.9248 215.0352 127.04 c -%_212.2441 137.7568 203.0684 142.2393 191.5957 140.7471 C -%_200.877 144.5029 214.8457 141.2275 221.0195 133.4365 c -%_221.0918 133.3447 221.2188 133.3154 221.3262 133.3643 c -%_221.4316 133.415 221.4902 133.5322 221.4668 133.6455 c -%_220.0957 140.2607 216.6035 145.208 210.8438 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.343297 0.001434 0 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_237.2266 166.4502 m -%_237.2051 166.3311 237.1016 166.2432 236.9805 166.2432 c -%_224.0742 166.1064 212.2266 162.9756 203.0098 154.7275 C -%_211.0391 160.2861 225.9512 162.2373 234.5371 158.3467 c -%_234.6465 158.2959 234.7051 158.1748 234.6777 158.0576 c -%_234.6523 157.9404 234.5449 157.8584 234.4238 157.8604 c -%_223.7441 158.1514 215.1445 154.8545 208.4395 148.8975 C -%_215.3086 148.4736 221.0137 144.1572 220.9961 139.0518 c -%_220.9961 138.9326 220.9121 138.8291 220.7949 138.8037 c -%_220.6797 138.7803 220.5605 138.8389 220.5117 138.9482 c -%_219.3906 141.4365 215.7637 142.7295 211.9297 141.8291 c -%_207.75 140.8467 204.9297 137.6396 205.6289 134.6631 c -%_206.0996 132.6494 208.0645 131.2607 210.5801 130.876 c -%_210.707 130.8564 210.8008 130.7471 210.7969 130.6182 c -%_210.793 130.4912 210.6953 130.3857 210.5664 130.3721 c -%_209.498 130.2705 208.3867 130.2666 207.25 130.376 c -%_200.7598 130.9932 195.7363 134.9697 195.3008 139.5537 C -%_190.5889 139.0068 186.417 136.3955 184.9229 132.7803 c -%_184.8779 132.6709 184.7646 132.6084 184.6475 132.626 c -%_184.5322 132.6436 184.4443 132.7393 184.4346 132.8564 c -%_184.0576 137.6064 185.6924 140.6943 189.4053 143.71 C -%_184.0205 141.6514 177.959 141.5459 172.1484 144.2471 c -%_172.043 144.2979 171.9844 144.4131 172.0059 144.5283 c -%_172.0293 144.6436 172.1289 144.7275 172.2461 144.7314 c -%_177.125 144.9209 180.6631 146.4873 183.9795 149.8037 C -%_165.7227 144.6689 150.8906 156.0049 156.0234 172.8545 c -%_156.0586 172.9717 156.1699 173.0459 156.291 173.0342 c -%_156.4121 173.0225 156.5078 172.9268 156.5176 172.8057 c -%_157.4355 163.0908 164.2207 156.6885 174.3789 155.7295 C -%_168.9922 157.7881 163.3789 162.7041 162.8223 171.2627 c -%_162.8145 171.3857 162.8945 171.4951 163.0137 171.5264 c -%_163.1328 171.5557 163.2559 171.4951 163.3066 171.3838 c -%_166.1055 165.2295 171.6035 162.1201 177.4668 161.5713 C -%_171.1328 164.1533 167.0703 170.1748 165.8965 177.9932 c -%_165.877 178.1162 165.9512 178.2334 166.0703 178.2725 c -%_166.1875 178.3096 166.3164 178.2568 166.373 178.1455 c -%_170.2383 170.5635 178.5293 165.3525 188.8213 169.335 c -%_199.4375 173.4443 204.0938 185.7197 205.123 194.374 c -%_205.1387 194.4971 205.2383 194.5908 205.3613 194.5986 c -%_205.4844 194.6045 205.5938 194.5225 205.623 194.4033 c -%_209.3418 178.7139 202.0391 162.4541 188.9873 155.5635 C -%_196.082 157.5654 202.4258 161.8232 206.0137 168.917 C -%_214.3066 169.9346 220.0176 172.7803 222.8711 178.1572 c -%_222.9277 178.2627 223.0508 178.3154 223.166 178.2822 c -%_223.2813 178.2471 223.3574 178.1357 223.3477 178.0166 c -%_223.166 175.9072 222.4063 171.6865 219.2734 169.7451 C -%_226.2383 169.7568 231.7793 168.8525 237.0723 166.7314 c -%_237.1836 166.6865 237.25 166.5693 237.2266 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_207.7402 219.9189 m -%_207.8398 219.8545 207.9688 219.8643 208.0566 219.9463 c -%_208.1426 220.0264 208.1602 220.1553 208.1016 220.2588 c -%_206.4824 223.0557 207.9609 227.0713 211.1523 227.0713 c -%_216.873 227.0713 219.623 216.3018 218.748 206.4795 C -%_216.5859 212.2334 214.7148 214.5342 211.4004 217.2744 c -%_211.3066 217.3506 211.1719 217.3525 211.0781 217.2744 c -%_210.9844 217.1982 210.957 217.0654 211.0156 216.958 c -%_215.8711 207.8799 216.9121 200.8936 216.9121 192.874 C -%_215.4492 198.8311 213.7168 202.1943 208.7852 207.2549 c -%_208.6992 207.3428 208.5625 207.3564 208.4609 207.2861 c -%_208.3594 207.2158 208.3223 207.083 208.373 206.9717 c -%_213.6719 195.3799 213.2676 182.5244 209.3203 172.708 c -%_209.2813 172.6104 209.3066 172.499 209.3828 172.4268 c -%_209.4609 172.3545 209.5723 172.3389 209.668 172.3838 c -%_214.873 174.9346 217.9316 176.6104 222.4199 182.7744 C -%_221.0625 190.1729 222.1914 193.8213 225.5918 199.9678 C -%_221.6543 190.0518 223.75 176.0752 233.7793 170.3779 c -%_233.8887 170.3154 234.0273 170.3428 234.1035 170.4424 c -%_234.1816 170.542 234.1758 170.6826 234.0879 170.7744 c -%_230.3066 174.7295 227.5566 181.4092 229.9316 188.7002 C -%_228.4023 178.3115 237.5273 169.5869 247.7109 169.5869 c -%_257.3105 169.5869 263.8613 177.0947 263.3203 184.5264 c -%_262.7832 191.8916 257.877 195.4971 253.6484 197.0244 c -%_253.5371 197.0654 253.4121 197.0225 253.3496 196.9229 c -%_253.2852 196.8232 253.2988 196.6924 253.3828 196.6084 c -%_258.9922 190.915 259.7598 180.1162 249.7988 176.8486 C -%_255.6582 181.9053 253.4883 193.6768 244.1094 194.5732 c -%_243.9922 194.583 243.8828 194.5127 243.8457 194.4014 c -%_243.8066 194.292 243.8496 194.1689 243.9492 194.1064 c -%_245.957 192.8271 247.627 190.335 247.627 187.5322 c -%_247.627 182.8584 244.2051 181.0205 241.9512 181.0205 c -%_238.5293 181.0205 235.6914 184.2764 235.6914 189.2021 c -%_235.6914 195.0439 240.9512 199.8857 247.7109 200.6357 c -%_254.3379 201.3721 260.4941 198.4814 263.4609 194.1768 c -%_263.5313 194.0752 263.6621 194.04 263.7754 194.0908 c -%_263.8867 194.1416 263.9453 194.2646 263.916 194.3838 c -%_260.8965 206.0869 247.1191 211.2607 237.0273 203.8916 C -%_243.6406 211.3916 254.0332 211.4971 262.75 203.8057 c -%_262.8398 203.7256 262.9746 203.7197 263.0723 203.7939 c -%_263.168 203.8682 263.1992 203.999 263.1445 204.1084 c -%_260.4785 209.5146 253.8926 215.9268 244.5391 214.9932 c -%_235.9824 214.1377 231.0176 205.9775 230.0156 199.3018 C -%_229.459 207.8232 231.4102 213.8369 238.7695 219.4463 c -%_238.8672 219.5205 238.8965 219.6533 238.8418 219.7627 c -%_238.7871 219.8721 238.6621 219.9268 238.5449 219.8916 c -%_231.7598 217.9326 226.3145 214.4678 223.4961 207.3486 C -%_223.4961 213.5088 225.6348 219.7197 231.0215 223.8584 c -%_231.1191 223.9326 231.1484 224.0654 231.0938 224.1748 c -%_231.0391 224.2822 230.916 224.3369 230.7988 224.3037 c -%_227.3457 223.3213 224.627 221.8154 222.6602 219.1201 C -%_221.3496 230.2197 216.1387 236.8096 210.1348 236.8096 c -%_206.0098 236.8096 202.9297 233.7764 202.9297 228.9404 c -%_202.9297 226.1104 204.418 222.1377 207.7402 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_108.5137 128.3018 m -%_111.6758 124.3975 118.0527 122.9092 124.9453 124.3135 C -%_124.4355 120.0107 125.2793 115.5225 126.5566 112.8271 c -%_126.6094 112.7197 126.7305 112.6611 126.8477 112.6904 c -%_126.9648 112.7197 127.0449 112.8271 127.041 112.9482 c -%_126.666 121.7139 131.6641 128.79 140.4902 131.8564 C -%_133.584 127.1006 131.5645 117.6631 134.8516 112.792 c -%_134.9199 112.6924 135.0469 112.6533 135.1582 112.6982 c -%_135.2695 112.7432 135.334 112.8604 135.3125 112.9795 c -%_134.9395 115.04 135.918 117.6631 138.0254 119.7041 c -%_140.9316 122.5186 144.875 123.1572 146.8359 121.1338 c -%_148.7969 119.1084 148.0332 115.1865 145.1289 112.374 c -%_144.0684 111.3467 142.8691 110.6104 141.6797 110.1885 c -%_141.5664 110.1475 141.498 110.0342 141.5137 109.917 c -%_141.5273 109.7979 141.623 109.7061 141.7422 109.6963 c -%_148.1309 109.1416 152.5117 112.9482 155.2578 117.5732 c -%_158.0527 122.2783 162.8281 125.9854 168.4688 125.2451 c -%_168.5879 125.2295 168.7012 125.2998 168.7422 125.4131 c -%_168.7813 125.5264 168.7363 125.6514 168.6328 125.7139 c -%_165.8359 127.3975 162.7617 128.0967 158.7695 126.7666 C -%_164.5645 131.6748 172.8164 134.5068 180.6104 131.9932 c -%_180.7197 131.958 180.8389 132.001 180.9014 132.0967 c -%_180.9639 132.1924 180.9541 132.3193 180.876 132.4053 c -%_174.9668 138.9697 163.1855 139.1006 155.7656 133.7764 C -%_158.8027 138.0928 162.834 141.2627 170.0586 142.2549 c -%_170.1738 142.2705 170.2637 142.3643 170.2773 142.4795 c -%_170.2891 142.5947 170.2227 142.7041 170.1133 142.7451 c -%_161.8223 145.8213 153.5137 142.7002 146.668 134.5283 C -%_149.6602 140.9072 154.5742 146.0146 161.4355 148.542 c -%_161.5508 148.583 161.6191 148.7002 161.5977 148.8213 c -%_161.5781 148.9424 161.4746 149.0303 161.3535 149.0322 c -%_157.4102 149.1143 153.8672 148.1748 149.0879 145.4619 C -%_152.5957 151.1533 151.8281 161.1006 146.7188 167.7217 c -%_146.6484 167.8135 146.5234 167.8447 146.416 167.7998 c -%_146.3105 167.7529 146.248 167.6396 146.2676 167.5244 c -%_147.4473 160.3252 144.9688 152.1963 140.6582 147.8838 C -%_142.8105 155.5146 140.6641 162.46 134.7617 167.5264 c -%_134.6914 167.5869 134.5918 167.6045 134.5059 167.5713 c -%_134.418 167.5381 134.3574 167.46 134.3438 167.3682 c -%_133.1094 157.9502 122.5742 148.3936 113.7422 147.5928 c -%_113.6172 147.5811 113.5195 147.4814 113.5117 147.3564 c -%_113.5039 147.2314 113.5859 147.1201 113.709 147.0928 c -%_117.9883 146.124 122.4004 146.6025 126.0977 148.1221 C -%_123.4375 145.1904 120.1582 143.0127 116.543 141.8779 c -%_116.4258 141.8408 116.3535 141.7275 116.3672 141.6064 c -%_116.3809 141.4854 116.4805 141.3896 116.6016 141.3818 c -%_121.1113 141.0713 125.5254 142.3877 129.332 144.9209 C -%_124.9707 138.2998 118.3516 133.376 109.9043 131.4131 c -%_109.7832 131.3857 109.7012 131.2744 109.707 131.1514 c -%_109.7148 131.0283 109.8105 130.9287 109.9336 130.915 c -%_121.8516 129.6123 131.6797 134.2334 138.1543 142.833 C -%_136.5059 137.9307 131.7891 133.0771 125.209 130.2139 c -%_119.3633 127.6689 113.3594 127.2666 108.7871 128.7041 c -%_108.6816 128.7373 108.5645 128.6963 108.502 128.6045 c -%_108.4395 128.5107 108.4434 128.3877 108.5137 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_161.418 203.874 m -%_156.6113 193.3877 156.9531 185.1885 160.8242 174.8193 c -%_160.8691 174.7021 160.9902 174.6338 161.1133 174.6592 c -%_161.2363 174.6846 161.3223 174.7959 161.3164 174.9189 c -%_160.6953 187.542 164.1426 196.5732 171.6152 202.7275 C -%_163.3652 192.874 167.2617 173.167 180.4385 173.167 c -%_190.0244 173.167 197.9531 181.1436 199.8926 190.6924 c -%_199.918 190.8135 199.8516 190.9346 199.7344 190.9795 c -%_199.6191 191.0244 199.4883 190.9795 199.4258 190.8721 c -%_196.584 186.1104 192.0176 183.0205 186.9697 183.0205 c -%_178.834 183.0205 176.4277 189.4873 176.4277 194.0205 c -%_176.4277 200.2061 181.3545 205.3623 185.1357 205.3623 c -%_188.5732 205.3623 190.1768 202.54 190.1768 200.4365 c -%_190.1768 196.5381 187.1787 193.2705 183.8018 192.2725 c -%_183.6807 192.2354 183.6045 192.1182 183.6221 191.9932 c -%_183.6396 191.8682 183.7451 191.7744 183.8721 191.7744 c -%_187.9775 191.749 191.4473 193.6279 193.5 197.3428 C -%_193.7695 194.4678 193.7715 192.6572 192.8594 189.6182 c -%_192.8242 189.501 192.877 189.376 192.9844 189.3193 c -%_193.0938 189.2646 193.2266 189.292 193.3008 189.3896 c -%_200.6582 198.7822 197.1367 215.0127 191.3223 221.7471 C -%_196.8535 217.7646 201.7383 209.1123 201.6621 197.3525 c -%_201.6602 197.2314 201.7461 197.126 201.8672 197.1025 c -%_201.9863 197.0791 202.1055 197.1436 202.1504 197.2568 c -%_206.2598 207.5107 204.0801 226.5049 192.8691 237.1084 C -%_195.7539 237.5068 198.7363 237.4561 201.9941 236.417 c -%_202.1094 236.3799 202.2344 236.4307 202.293 236.5361 c -%_202.3516 236.6416 202.3281 236.7744 202.2344 236.8525 c -%_198.1426 240.3076 192.4199 241.3936 186.9697 241.3936 C -%_191.666 235.8936 190.1064 224.8408 182.6162 224.8408 c -%_177.2656 224.8408 174.8379 233.1396 178.9668 237.6221 c -%_179.0449 237.708 179.0547 237.835 178.9922 237.9326 c -%_178.9277 238.0303 178.8066 238.0713 178.6953 238.0342 c -%_173.916 236.3779 168.75 232.2451 168.75 227.0166 c -%_168.75 221.9756 173.5625 217.6221 180.5537 217.9658 C -%_171.7324 215.4619 162.5 218.2334 157.6699 224.2197 c -%_157.5957 224.3115 157.4648 224.3408 157.3594 224.2861 c -%_157.252 224.2334 157.1973 224.1123 157.2266 223.9951 c -%_160.0176 213.2803 169.1934 208.7959 180.667 210.29 C -%_171.3848 206.5322 157.416 209.8076 151.2422 217.5986 c -%_151.1699 217.6904 151.043 217.7217 150.9355 217.6709 c -%_150.8301 217.6221 150.7715 217.5049 150.7949 217.3896 c -%_152.166 210.7744 155.6582 205.8291 161.418 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_1 /Bool (AIPattern_Is_Repeated_Art) , -%_; -%_ -%_9 () XW -%_u -%_*u -%_1 D -%_1 0.829892 0.242618 0.080446 0 0.258824 0.494118 Xa -%_0 1 0 0 0 Xy -%_26.6963 184.5869 m -%_26.7178 184.7061 26.8213 184.792 26.9424 184.7939 c -%_39.8486 184.9287 51.6963 188.0615 60.9141 196.3086 C -%_52.8838 190.751 37.9717 188.7979 29.3867 192.6904 c -%_29.2764 192.7402 29.2178 192.8604 29.2451 192.9785 c -%_29.2715 193.0967 29.3779 193.1787 29.499 193.1748 c -%_40.1787 192.8857 48.7783 196.1816 55.4834 202.1396 C -%_48.6143 202.5615 42.9092 206.8799 42.9268 211.9844 c -%_42.9268 212.1035 43.0107 212.2061 43.1279 212.2314 c -%_43.2441 212.2568 43.3623 212.1963 43.4111 212.0879 c -%_44.5322 209.5986 48.1592 208.3076 51.9941 209.208 c -%_56.1738 210.1885 58.9941 213.3975 58.2949 216.373 c -%_57.8232 218.3877 55.8584 219.7764 53.3428 220.1602 c -%_53.2158 220.1787 53.123 220.29 53.126 220.418 c -%_53.1299 220.5459 53.2285 220.6514 53.3564 220.6631 c -%_54.4248 220.7656 55.5361 220.7695 56.6738 220.6611 c -%_63.1641 220.0439 68.1875 216.0654 68.623 211.4834 C -%_73.3359 212.0303 77.5078 214.6396 79.002 218.2568 c -%_79.0469 218.3652 79.1621 218.4287 79.2773 218.4111 c -%_79.3926 218.3916 79.4805 218.2969 79.4902 218.1807 c -%_79.8672 213.4287 78.2324 210.3418 74.5195 207.3262 C -%_79.9043 209.3857 85.9648 209.4912 91.7754 206.7881 c -%_91.8809 206.7393 91.9395 206.624 91.918 206.5088 c -%_91.8945 206.3936 91.7949 206.3096 91.6777 206.3057 c -%_86.7988 206.1152 83.2617 204.5498 79.9473 201.2334 C -%_98.2012 206.3672 113.0332 195.0322 107.9004 178.1807 c -%_107.8652 178.0654 107.7539 177.9902 107.6328 178.0029 c -%_107.5117 178.0146 107.416 178.1104 107.4063 178.2314 c -%_106.4883 187.9453 99.7031 194.3467 89.5449 195.3076 C -%_94.9316 193.2471 100.5449 188.3311 101.1016 179.7734 c -%_101.1094 179.6514 101.0293 179.54 100.9102 179.5107 c -%_100.791 179.4814 100.668 179.54 100.6172 179.6514 c -%_97.8184 185.8057 92.3203 188.917 86.457 189.4639 C -%_92.791 186.8838 96.8535 180.8623 98.0273 173.0439 c -%_98.0469 172.9209 97.9727 172.8018 97.8535 172.7646 c -%_97.7363 172.7256 97.6074 172.7803 97.5508 172.8896 c -%_93.6855 180.4727 85.3945 185.6836 75.1035 181.7021 c -%_64.4863 177.5928 59.8291 165.3154 58.7998 156.6611 c -%_58.7852 156.54 58.6846 156.4463 58.5615 156.4385 c -%_58.4395 156.4307 58.3291 156.5127 58.3008 156.6338 c -%_54.5811 172.3213 61.8838 188.583 74.9375 195.4736 C -%_67.8418 193.4707 61.498 189.2139 57.9102 182.1191 C -%_49.6162 181.1006 43.9063 178.2568 41.0527 172.8799 c -%_40.9961 172.7725 40.8721 172.7197 40.7568 172.7549 c -%_40.6416 172.7881 40.5654 172.8994 40.5752 173.0205 c -%_40.7578 175.1299 41.5166 179.3506 44.6494 181.291 C -%_37.6846 181.2803 32.1436 182.1846 26.8506 184.3037 c -%_26.7393 184.3496 26.6738 184.4678 26.6963 184.5869 c -%_f -%_0 D -%_56.1826 131.1162 m -%_56.084 131.1826 55.9541 131.1709 55.8672 131.0908 c -%_55.7813 131.0088 55.7627 130.8799 55.8213 130.7783 c -%_57.4414 127.9814 55.9619 123.9639 52.7705 123.9639 c -%_47.0498 123.9639 44.2998 134.7334 45.1748 144.5576 C -%_47.3379 138.8018 49.208 136.5029 52.5225 133.7627 c -%_52.6162 133.6846 52.751 133.6846 52.8447 133.7607 c -%_52.9385 133.8389 52.9658 133.9697 52.9082 134.0771 c -%_48.0518 143.1572 47.0107 150.1436 47.0107 158.1631 C -%_48.4736 152.2041 50.2061 148.8408 55.1377 143.7822 c -%_55.2236 143.6943 55.3604 143.6807 55.4629 143.749 c -%_55.5645 143.8193 55.6016 143.9521 55.5498 144.0654 c -%_50.252 155.6553 50.6563 168.5127 54.6025 178.3291 c -%_54.6416 178.4268 54.6172 178.5381 54.54 178.6104 c -%_54.4629 178.6807 54.3506 178.6982 54.2549 178.6514 c -%_49.0498 176.1006 45.9912 174.4248 41.5029 168.2627 C -%_42.8604 160.8643 41.7314 157.2139 38.3311 151.0674 C -%_42.2686 160.9854 40.1729 174.9619 30.1436 180.6592 c -%_30.0342 180.7207 29.8955 180.6934 29.8193 180.5947 c -%_29.7412 180.4951 29.748 180.3535 29.835 180.2627 c -%_33.6162 176.3076 36.3662 169.6279 33.9912 162.335 C -%_35.5205 172.7236 26.3955 181.4502 16.2119 181.4502 c -%_6.6123 181.4502 0.061523 173.9404 0.602539 166.5088 c -%_1.13965 159.1436 6.0459 155.54 10.2744 154.0107 c -%_10.3857 153.9717 10.5107 154.0127 10.5742 154.1123 c -%_10.6377 154.2139 10.624 154.3428 10.541 154.4287 c -%_4.93066 160.1201 4.16309 170.9209 14.124 174.1885 C -%_8.26465 169.1318 10.4346 157.3584 19.8135 156.4639 c -%_19.9307 156.4521 20.04 156.5225 20.0781 156.6338 c -%_20.1162 156.7451 20.0732 156.8682 19.9746 156.9307 c -%_17.9658 158.208 16.2959 160.7021 16.2959 163.5049 c -%_16.2959 168.1787 19.7178 170.0146 21.9717 170.0146 c -%_25.3936 170.0146 28.2314 166.7588 28.2314 161.835 c -%_28.2314 155.9912 22.9717 151.1514 16.2119 150.3994 c -%_9.58594 149.665 3.42969 152.5537 0.461914 156.8584 c -%_0.392578 156.96 0.260742 156.9971 0.148438 156.9463 c -%_0.036133 156.8955 -0.022461 156.7705 0.007813 156.6514 c -%_3.02637 144.9482 16.8037 139.7744 26.8955 147.1455 C -%_20.2822 139.6436 9.88965 139.54 1.17383 147.2314 c -%_1.08301 147.3115 0.948242 147.3154 0.851563 147.2412 c -%_0.754883 147.1689 0.724609 147.0361 0.77832 146.9287 c -%_3.44531 141.5205 10.0313 135.1084 19.3838 136.0439 c -%_27.9404 136.8994 32.9053 145.0576 33.9072 151.7354 C -%_34.4639 143.2139 32.5137 137.1982 25.1533 131.5889 c -%_25.0566 131.5146 25.0264 131.3818 25.0811 131.2725 c -%_25.1357 131.165 25.2607 131.1104 25.3779 131.1436 c -%_32.1631 133.1045 37.6084 136.5693 40.4268 143.6885 C -%_40.4268 137.5264 38.2881 131.3154 32.9014 127.1768 c -%_32.8037 127.1025 32.7744 126.9717 32.8291 126.8623 c -%_32.8838 126.7529 33.0078 126.6982 33.125 126.7314 c -%_36.5781 127.7158 39.2959 129.2197 41.2627 131.917 C -%_42.5732 120.8174 47.7842 114.2256 53.7881 114.2256 c -%_57.9131 114.2256 60.9932 117.2588 60.9932 122.0967 c -%_60.9932 124.9268 59.5049 128.8994 56.1826 131.1162 c -%_f -%_155.4102 222.7354 m -%_152.248 226.6396 145.8711 228.1279 138.9785 226.7236 C -%_139.4883 231.0244 138.6445 235.5146 137.3672 238.208 c -%_137.3145 238.3174 137.1934 238.375 137.0762 238.3467 c -%_136.959 238.3174 136.8789 238.21 136.8828 238.0889 c -%_137.2578 229.3223 132.2598 222.2451 123.4336 219.1787 C -%_130.3398 223.9346 132.3594 233.3721 129.0723 238.2451 c -%_129.0039 238.3438 128.877 238.3828 128.7656 238.3369 c -%_128.6543 238.292 128.5898 238.1748 128.6113 238.0576 c -%_128.9844 235.9971 128.0059 233.373 125.8984 231.3311 c -%_122.9922 228.5166 119.0488 227.8779 117.0879 229.9014 c -%_115.127 231.9268 115.8906 235.8486 118.7949 238.6631 c -%_119.8555 239.6904 121.0547 240.4248 122.2441 240.8477 c -%_122.3574 240.8877 122.4258 241.001 122.4102 241.1191 c -%_122.3965 241.2383 122.3008 241.3301 122.1816 241.3398 c -%_115.793 241.8945 111.4121 238.0879 108.666 233.4619 c -%_105.8711 228.7568 101.0957 225.0518 95.4551 225.792 c -%_95.3359 225.8076 95.2227 225.7373 95.1816 225.624 c -%_95.1426 225.5107 95.1875 225.3838 95.291 225.3223 c -%_98.0879 223.6377 101.1621 222.9385 105.1543 224.2705 C -%_99.3594 219.3613 91.1074 216.5283 83.3145 219.043 c -%_83.2051 219.0791 83.0859 219.0361 83.0234 218.9395 c -%_82.9609 218.8428 82.9727 218.7168 83.0488 218.6318 c -%_88.957 212.0674 100.7383 211.9365 108.1582 217.2588 C -%_105.1211 212.9424 101.0898 209.7744 93.8652 208.7803 c -%_93.75 208.7646 93.6602 208.6729 93.6465 208.5576 c -%_93.6348 208.4414 93.7012 208.332 93.8105 208.292 c -%_102.1016 205.2139 110.4102 208.3369 117.2559 216.5068 C -%_114.2637 210.1299 109.3496 205.0225 102.4883 202.4951 c -%_102.373 202.4531 102.3047 202.335 102.3262 202.2158 c -%_102.3457 202.0947 102.4492 202.0059 102.5703 202.0029 c -%_106.5137 201.9219 110.0566 202.8604 114.8359 205.5732 C -%_111.3281 199.8838 112.0957 189.9346 117.2051 183.3154 c -%_117.2754 183.2236 117.4004 183.1914 117.5078 183.2373 c -%_117.6133 183.2842 117.6758 183.3965 117.6563 183.5107 c -%_116.4766 190.7119 118.9551 198.8408 123.2656 203.1533 C -%_121.1133 195.5215 123.2598 188.5771 129.1621 183.5088 c -%_129.2324 183.4482 129.332 183.4316 129.418 183.4648 c -%_129.5059 183.498 129.5664 183.5771 129.5801 183.6689 c -%_130.8145 193.0869 141.3496 202.6436 150.1816 203.4443 c -%_150.3066 203.4551 150.4043 203.5557 150.4121 203.6797 c -%_150.4199 203.8037 150.3379 203.917 150.2148 203.9443 c -%_145.9355 204.9131 141.5234 204.4346 137.8262 202.9131 C -%_140.4863 205.8467 143.7656 208.0244 147.3809 209.1592 c -%_147.498 209.1953 147.5703 209.3096 147.5566 209.4307 c -%_147.543 209.5518 147.4434 209.6455 147.3223 209.6543 c -%_142.8125 209.9658 138.3984 208.6484 134.5918 206.1162 C -%_138.9531 212.7373 145.5723 217.6611 154.0195 219.6221 c -%_154.1406 219.6504 154.2227 219.7607 154.2168 219.8848 c -%_154.209 220.0088 154.1133 220.1084 153.9902 220.1221 c -%_142.0723 221.4238 132.2441 216.8037 125.7695 208.2041 C -%_127.418 213.1045 132.1348 217.96 138.7148 220.8232 c -%_144.5605 223.3682 150.5645 223.7695 155.1367 222.333 c -%_155.2422 222.2998 155.3594 222.3398 155.4219 222.4326 c -%_155.4844 222.5244 155.4805 222.6475 155.4102 222.7354 c -%_f -%_102.5059 147.1631 m -%_107.3125 157.6494 106.9707 165.8486 103.0996 176.2178 c -%_103.0547 176.335 102.9336 176.4023 102.8105 176.3779 c -%_102.6875 176.3525 102.6016 176.2412 102.6074 176.1162 c -%_103.2285 163.4951 99.7813 154.4619 92.3086 148.3096 C -%_100.5586 158.1611 96.6621 177.8691 83.4863 177.8691 c -%_73.9004 177.8691 65.9697 169.8936 64.0303 160.3447 c -%_64.0059 160.2236 64.0723 160.1006 64.1885 160.0576 c -%_64.3037 160.0127 64.4346 160.0576 64.4971 160.1631 c -%_67.3398 164.9248 71.9063 168.0146 76.9551 168.0146 c -%_85.0898 168.0146 87.4961 161.5479 87.4961 157.0166 c -%_87.4961 150.8291 82.5703 145.6729 78.7891 145.6729 c -%_75.3516 145.6729 73.748 148.4971 73.748 150.6006 c -%_73.748 154.499 76.7461 157.7666 80.125 158.7646 c -%_80.2441 158.7998 80.3223 158.9189 80.3047 159.0439 c -%_80.2852 159.1689 80.1797 159.2607 80.0547 159.2627 c -%_75.9473 159.2881 72.4766 157.4072 70.4238 153.6943 C -%_70.1543 156.5693 70.1514 158.3799 71.0645 161.417 c -%_71.0996 161.5342 71.0459 161.6592 70.9385 161.7158 c -%_70.8291 161.7725 70.6963 161.7432 70.6221 161.6475 c -%_63.2656 152.2549 66.7861 136.0225 72.6016 129.29 C -%_67.0693 133.2725 62.1846 141.9229 62.2617 153.6826 c -%_62.2627 153.8057 62.1768 153.9092 62.0566 153.9326 c -%_61.9365 153.958 61.8174 153.8916 61.7725 153.7783 c -%_57.6641 143.5264 59.8438 124.5303 71.0537 113.9268 C -%_68.1699 113.5303 65.1865 113.5811 61.9287 114.6201 c -%_61.8135 114.6553 61.6885 114.6064 61.6299 114.501 c -%_61.5713 114.3936 61.5947 114.2607 61.6885 114.1826 c -%_65.7803 110.7275 71.5029 109.6416 76.9551 109.6416 C -%_72.2578 115.1416 73.8184 126.1963 81.3105 126.1963 c -%_86.6582 126.1963 89.0859 117.8975 84.957 113.415 c -%_84.8789 113.3291 84.8691 113.2002 84.9316 113.1045 c -%_84.9961 113.0068 85.1172 112.9639 85.2285 113.0029 c -%_90.0078 114.6572 95.1738 118.792 95.1738 124.0186 c -%_95.1738 129.0615 90.3613 133.4131 83.373 133.0693 C -%_92.1914 135.5752 101.4238 132.8018 106.2539 126.8174 c -%_106.3281 126.7236 106.459 126.6963 106.5645 126.749 c -%_106.6719 126.8037 106.7266 126.9248 106.6973 127.04 c -%_103.9063 137.7568 94.7305 142.2393 83.2578 140.7471 C -%_92.5391 144.5029 106.5078 141.2275 112.6816 133.4365 c -%_112.7539 133.3447 112.8809 133.3154 112.9883 133.3643 c -%_113.0938 133.415 113.1523 133.5322 113.1289 133.6455 c -%_111.7578 140.2607 108.2656 145.208 102.5059 147.1631 C -%_f -%_*U -%_*u -%_1 D -%_0.343297 0.001434 0 0 0.615686 0.862745 0.976471 Xa -%_0 0.4 0 0 0 Xy -%_128.8887 166.4502 m -%_128.8672 166.3311 128.7637 166.2432 128.6426 166.2432 c -%_115.7363 166.1064 103.8887 162.9756 94.6719 154.7275 C -%_102.7012 160.2861 117.6133 162.2373 126.1992 158.3467 c -%_126.3086 158.2959 126.3672 158.1748 126.3398 158.0576 c -%_126.3145 157.9404 126.207 157.8584 126.0859 157.8604 c -%_115.4063 158.1514 106.8066 154.8545 100.1016 148.8975 C -%_106.9707 148.4736 112.6758 144.1572 112.6582 139.0518 c -%_112.6582 138.9326 112.5742 138.8291 112.457 138.8037 c -%_112.3418 138.7803 112.2227 138.8389 112.1738 138.9482 c -%_111.0527 141.4365 107.4258 142.7295 103.5918 141.8291 c -%_99.4121 140.8467 96.5918 137.6396 97.291 134.6631 c -%_97.7617 132.6494 99.7266 131.2607 102.2422 130.876 c -%_102.3691 130.8564 102.4629 130.7471 102.459 130.6182 c -%_102.4551 130.4912 102.3574 130.3857 102.2285 130.3721 c -%_101.1602 130.2705 100.0488 130.2666 98.9121 130.376 c -%_92.4219 130.9932 87.3984 134.9697 86.9629 139.5537 C -%_82.25 139.0068 78.0781 136.3955 76.584 132.7803 c -%_76.5391 132.6709 76.4258 132.6084 76.3086 132.626 c -%_76.1934 132.6436 76.1055 132.7393 76.0957 132.8564 c -%_75.7188 137.6064 77.3535 140.6943 81.0664 143.71 C -%_75.6816 141.6514 69.6201 141.5459 63.8096 144.2471 c -%_63.7041 144.2979 63.6455 144.4131 63.667 144.5283 c -%_63.6904 144.6436 63.79 144.7275 63.9072 144.7314 c -%_68.7861 144.9209 72.3242 146.4873 75.6406 149.8037 C -%_57.3838 144.6689 42.5518 156.0049 47.6846 172.8545 c -%_47.7197 172.9717 47.8311 173.0459 47.9521 173.0342 c -%_48.0732 173.0225 48.1689 172.9268 48.1787 172.8057 c -%_49.0967 163.0908 55.8818 156.6885 66.04 155.7295 C -%_60.6533 157.7881 55.04 162.7041 54.4834 171.2627 c -%_54.4756 171.3857 54.5557 171.4951 54.6748 171.5264 c -%_54.7939 171.5557 54.917 171.4951 54.9678 171.3838 c -%_57.7666 165.2295 63.2646 162.1201 69.1279 161.5713 C -%_62.7939 164.1533 58.7314 170.1748 57.5576 177.9932 c -%_57.5381 178.1162 57.6123 178.2334 57.7314 178.2725 c -%_57.8486 178.3096 57.9775 178.2568 58.0342 178.1455 c -%_61.8994 170.5635 70.1904 165.3525 80.4824 169.335 c -%_91.0996 173.4443 95.7559 185.7197 96.7852 194.374 c -%_96.8008 194.4971 96.9004 194.5908 97.0234 194.5986 c -%_97.1465 194.6045 97.2559 194.5225 97.2852 194.4033 c -%_101.0039 178.7139 93.7012 162.4541 80.6484 155.5635 C -%_87.7441 157.5654 94.0879 161.8232 97.6758 168.917 C -%_105.9688 169.9346 111.6797 172.7803 114.5332 178.1572 c -%_114.5898 178.2627 114.7129 178.3154 114.8281 178.2822 c -%_114.9434 178.2471 115.0195 178.1357 115.0098 178.0166 c -%_114.8281 175.9072 114.0684 171.6865 110.9355 169.7451 C -%_117.9004 169.7568 123.4414 168.8525 128.7344 166.7314 c -%_128.8457 166.6865 128.9121 166.5693 128.8887 166.4502 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0 D -%_99.4023 219.9189 m -%_99.502 219.8545 99.6309 219.8643 99.7188 219.9463 c -%_99.8047 220.0264 99.8223 220.1553 99.7637 220.2588 c -%_98.1445 223.0557 99.623 227.0713 102.8145 227.0713 c -%_108.5352 227.0713 111.2852 216.3018 110.4102 206.4795 C -%_108.248 212.2334 106.377 214.5342 103.0625 217.2744 c -%_102.9688 217.3506 102.834 217.3525 102.7402 217.2744 c -%_102.6465 217.1982 102.6191 217.0654 102.6777 216.958 c -%_107.5332 207.8799 108.5742 200.8936 108.5742 192.874 C -%_107.1113 198.8311 105.3789 202.1943 100.4473 207.2549 c -%_100.3613 207.3428 100.2246 207.3564 100.123 207.2861 c -%_100.0215 207.2158 99.9844 207.083 100.0352 206.9717 c -%_105.334 195.3799 104.9297 182.5244 100.9824 172.708 c -%_100.9434 172.6104 100.9688 172.499 101.0449 172.4268 c -%_101.123 172.3545 101.2344 172.3389 101.3301 172.3838 c -%_106.5352 174.9346 109.5938 176.6104 114.082 182.7744 C -%_112.7246 190.1729 113.8535 193.8213 117.2539 199.9678 C -%_113.3164 190.0518 115.4121 176.0752 125.4414 170.3779 c -%_125.5508 170.3154 125.6895 170.3428 125.7656 170.4424 c -%_125.8438 170.542 125.8379 170.6826 125.75 170.7744 c -%_121.9688 174.7295 119.2188 181.4092 121.5938 188.7002 C -%_120.0645 178.3115 129.1895 169.5869 139.373 169.5869 c -%_148.9727 169.5869 155.5234 177.0947 154.9824 184.5264 c -%_154.4453 191.8916 149.5391 195.4971 145.3105 197.0244 c -%_145.1992 197.0654 145.0742 197.0225 145.0117 196.9229 c -%_144.9473 196.8232 144.9609 196.6924 145.0449 196.6084 c -%_150.6543 190.915 151.4219 180.1162 141.4609 176.8486 C -%_147.3203 181.9053 145.1504 193.6768 135.7715 194.5732 c -%_135.6543 194.583 135.5449 194.5127 135.5078 194.4014 c -%_135.4688 194.292 135.5117 194.1689 135.6113 194.1064 c -%_137.6191 192.8271 139.2891 190.335 139.2891 187.5322 c -%_139.2891 182.8584 135.8672 181.0205 133.6133 181.0205 c -%_130.1914 181.0205 127.3535 184.2764 127.3535 189.2021 c -%_127.3535 195.0439 132.6133 199.8857 139.373 200.6357 c -%_146 201.3721 152.1563 198.4814 155.123 194.1768 c -%_155.1934 194.0752 155.3242 194.04 155.4375 194.0908 c -%_155.5488 194.1416 155.6074 194.2646 155.5781 194.3838 c -%_152.5586 206.0869 138.7813 211.2607 128.6895 203.8916 C -%_135.3027 211.3916 145.6953 211.4971 154.4121 203.8057 c -%_154.502 203.7256 154.6367 203.7197 154.7344 203.7939 c -%_154.8301 203.8682 154.8613 203.999 154.8066 204.1084 c -%_152.1406 209.5146 145.5547 215.9268 136.2012 214.9932 c -%_127.6445 214.1377 122.6797 205.9775 121.6777 199.3018 C -%_121.1211 207.8232 123.0723 213.8369 130.4316 219.4463 c -%_130.5293 219.5205 130.5586 219.6533 130.5039 219.7627 c -%_130.4492 219.8721 130.3242 219.9268 130.207 219.8916 c -%_123.4219 217.9326 117.9766 214.4678 115.1582 207.3486 C -%_115.1582 213.5088 117.2969 219.7197 122.6836 223.8584 c -%_122.7813 223.9326 122.8105 224.0654 122.7559 224.1748 c -%_122.7012 224.2822 122.5781 224.3369 122.4609 224.3037 c -%_119.0078 223.3213 116.2891 221.8154 114.3223 219.1201 C -%_113.0117 230.2197 107.8008 236.8096 101.7969 236.8096 c -%_97.6719 236.8096 94.5918 233.7764 94.5918 228.9404 c -%_94.5918 226.1104 96.0801 222.1377 99.4023 219.9189 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_0.174805 128.3018 m -%_3.33691 124.3975 9.71387 122.9092 16.6064 124.3135 C -%_16.0967 120.0107 16.9404 115.5225 18.2178 112.8271 c -%_18.2705 112.7197 18.3916 112.6611 18.5088 112.6904 c -%_18.626 112.7197 18.7061 112.8271 18.7021 112.9482 c -%_18.3271 121.7139 23.3252 128.79 32.1514 131.8564 C -%_25.2451 127.1006 23.2256 117.6631 26.5127 112.792 c -%_26.5811 112.6924 26.708 112.6533 26.8193 112.6982 c -%_26.9307 112.7432 26.9951 112.8604 26.9736 112.9795 c -%_26.6006 115.04 27.5791 117.6631 29.6865 119.7041 c -%_32.5928 122.5186 36.5361 123.1572 38.4971 121.1338 c -%_40.458 119.1084 39.6943 115.1865 36.79 112.374 c -%_35.7295 111.3467 34.5303 110.6104 33.3408 110.1885 c -%_33.2275 110.1475 33.1592 110.0342 33.1748 109.917 c -%_33.1885 109.7979 33.2842 109.7061 33.4033 109.6963 c -%_39.792 109.1416 44.1729 112.9482 46.9189 117.5732 c -%_49.7139 122.2783 54.4893 125.9854 60.1299 125.2451 c -%_60.249 125.2295 60.3623 125.2998 60.4033 125.4131 c -%_60.4424 125.5264 60.3975 125.6514 60.2939 125.7139 c -%_57.4971 127.3975 54.4229 128.0967 50.4307 126.7666 C -%_56.2256 131.6748 64.4775 134.5068 72.2715 131.9932 c -%_72.3809 131.958 72.5 132.001 72.5625 132.0967 c -%_72.625 132.1924 72.6152 132.3193 72.5371 132.4053 c -%_66.6279 138.9697 54.8467 139.1006 47.4268 133.7764 C -%_50.4639 138.0928 54.4951 141.2627 61.7197 142.2549 c -%_61.835 142.2705 61.9248 142.3643 61.9385 142.4795 c -%_61.9502 142.5947 61.8838 142.7041 61.7744 142.7451 c -%_53.4834 145.8213 45.1748 142.7002 38.3291 134.5283 C -%_41.3213 140.9072 46.2354 146.0146 53.0967 148.542 c -%_53.2119 148.583 53.2803 148.7002 53.2588 148.8213 c -%_53.2393 148.9424 53.1357 149.0303 53.0146 149.0322 c -%_49.0713 149.1143 45.5283 148.1748 40.749 145.4619 C -%_44.2568 151.1533 43.4893 161.1006 38.3799 167.7217 c -%_38.3096 167.8135 38.1846 167.8447 38.0771 167.7998 c -%_37.9717 167.7529 37.9092 167.6396 37.9287 167.5244 c -%_39.1084 160.3252 36.6299 152.1963 32.3193 147.8838 C -%_34.4717 155.5146 32.3252 162.46 26.4229 167.5264 c -%_26.3525 167.5869 26.2529 167.6045 26.167 167.5713 c -%_26.0791 167.5381 26.0186 167.46 26.0049 167.3682 c -%_24.7705 157.9502 14.2354 148.3936 5.40332 147.5928 c -%_5.27832 147.5811 5.18066 147.4814 5.17285 147.3564 c -%_5.16504 147.2314 5.24707 147.1201 5.37012 147.0928 c -%_9.64941 146.124 14.0615 146.6025 17.7588 148.1221 C -%_15.0986 145.1904 11.8193 143.0127 8.2041 141.8779 c -%_8.08691 141.8408 8.01465 141.7275 8.02832 141.6064 c -%_8.04199 141.4854 8.1416 141.3896 8.2627 141.3818 c -%_12.7725 141.0713 17.1865 142.3877 20.9932 144.9209 C -%_16.6318 138.2998 10.0127 133.376 1.56543 131.4131 c -%_1.44434 131.3857 1.3623 131.2744 1.36816 131.1514 c -%_1.37598 131.0283 1.47168 130.9287 1.59473 130.915 c -%_13.5127 129.6123 23.3408 134.2334 29.8154 142.833 C -%_28.167 137.9307 23.4502 133.0771 16.8701 130.2139 c -%_11.0244 127.6689 5.02051 127.2666 0.448242 128.7041 c -%_0.342773 128.7373 0.225586 128.6963 0.163086 128.6045 c -%_0.100586 128.5107 0.104492 128.3877 0.174805 128.3018 c -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_53.0791 203.874 m -%_48.2725 193.3877 48.6143 185.1885 52.4854 174.8193 c -%_52.5303 174.7021 52.6514 174.6338 52.7744 174.6592 c -%_52.8975 174.6846 52.9834 174.7959 52.9775 174.9189 c -%_52.3564 187.542 55.8037 196.5732 63.2764 202.7275 C -%_55.0264 192.874 58.9229 173.167 72.0996 173.167 c -%_81.6855 173.167 89.6152 181.1436 91.5547 190.6924 c -%_91.5801 190.8135 91.5137 190.9346 91.3965 190.9795 c -%_91.2813 191.0244 91.1504 190.9795 91.0879 190.8721 c -%_88.2461 186.1104 83.6797 183.0205 78.6309 183.0205 c -%_70.4951 183.0205 68.0889 189.4873 68.0889 194.0205 c -%_68.0889 200.2061 73.0156 205.3623 76.7969 205.3623 c -%_80.2344 205.3623 81.8379 202.54 81.8379 200.4365 c -%_81.8379 196.5381 78.8398 193.2705 75.4629 192.2725 c -%_75.3418 192.2354 75.2656 192.1182 75.2832 191.9932 c -%_75.3008 191.8682 75.4063 191.7744 75.5332 191.7744 c -%_79.6387 191.749 83.1094 193.6279 85.1621 197.3428 C -%_85.4316 194.4678 85.4336 192.6572 84.5215 189.6182 c -%_84.4863 189.501 84.5391 189.376 84.6465 189.3193 c -%_84.7559 189.2646 84.8887 189.292 84.9629 189.3896 c -%_92.3203 198.7822 88.7988 215.0127 82.9844 221.7471 C -%_88.5156 217.7646 93.4004 209.1123 93.3242 197.3525 c -%_93.3223 197.2314 93.4082 197.126 93.5293 197.1025 c -%_93.6484 197.0791 93.7676 197.1436 93.8125 197.2568 c -%_97.9219 207.5107 95.7422 226.5049 84.5313 237.1084 C -%_87.416 237.5068 90.3984 237.4561 93.6563 236.417 c -%_93.7715 236.3799 93.8965 236.4307 93.9551 236.5361 c -%_94.0137 236.6416 93.9902 236.7744 93.8965 236.8525 c -%_89.8047 240.3076 84.082 241.3936 78.6309 241.3936 C -%_83.3281 235.8936 81.7676 224.8408 74.2773 224.8408 c -%_68.9268 224.8408 66.499 233.1396 70.6279 237.6221 c -%_70.7061 237.708 70.7158 237.835 70.6533 237.9326 c -%_70.5889 238.0303 70.4678 238.0713 70.3564 238.0342 c -%_65.5771 236.3779 60.4111 232.2451 60.4111 227.0166 c -%_60.4111 221.9756 65.2236 217.6221 72.2148 217.9658 C -%_63.3936 215.4619 54.1611 218.2334 49.3311 224.2197 c -%_49.2568 224.3115 49.126 224.3408 49.0205 224.2861 c -%_48.9131 224.2334 48.8584 224.1123 48.8877 223.9951 c -%_51.6787 213.2803 60.8545 208.7959 72.3281 210.29 C -%_63.0459 206.5322 49.0771 209.8076 42.9033 217.5986 c -%_42.8311 217.6904 42.7041 217.7217 42.5967 217.6709 c -%_42.4912 217.6221 42.4326 217.5049 42.4561 217.3896 c -%_43.8271 210.7744 47.3193 205.8291 53.0791 203.874 C -%_f -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_*U -%_/ArtDictionary : -%_(-3.141593) /String (BBAccumRotation) , -%_; -%_ -%_U -%_/ArtDictionary : -%_1 /Bool (AIPattern_Is_Main_Copy_of_EditGroup) , -%_; -%_ -%_9 () XW -%_U -E -%AI3_EndPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginBrushPattern -(Unnamed 6) 0 A -0 Xw -u -u -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR --3818.5 3818.5 m --3717.1816 3818.5 L --3717.1816 3810.7832 L --3818.5 3810.7832 L --3818.5 3818.5 L -n -u -0 O -0.698207 0.674464 0.638605 0.739437 0.137255 0.121569 0.12549 Xa --3717.3 3812.2073 m --3717.1504 3812.2439 -3717.2041 3811.8247 -3717.1816 3811.7495 C --3717.4319 3811.8423 -3717.2937 3812.3159 -3717.3 3812.2073 C -f --3719.7693 3813.1582 m --3719.7256 3812.9871 L --3720.0896 3813.4063 L --3719.7693 3813.1582 L -f --3722.0784 3813.1504 m --3721.8601 3813.8643 -3721.2417 3813.0352 -3720.8303 3813.2888 C --3720.7625 3813.4524 L --3720.5769 3812.8772 L --3721.0769 3812.9683 -3721.7263 3813.3499 -3722.0784 3813.1504 C -f --3723.3096 3811.6072 m --3723.2336 3811.8843 -3723.5759 3811.8455 -3723.0225 3811.6936 C --3723.0503 3811.6631 -3723.0583 3811.6455 -3723.0745 3811.6233 C --3723.1243 3811.6272 -3723.1929 3811.6262 -3723.3096 3811.6072 C -f --3723.0745 3811.6233 m --3722.8313 3811.6033 -3723.2336 3811.3904 -3723.0745 3811.6233 C --3723.0745 3811.6233 L -f --3724.1975 3811.782 m --3723.8772 3811.5342 L --3723.9441 3811.3704 -3724.2292 3811.3333 -3724.1233 3811.2134 C --3724.4519 3811.3496 -3724.3843 3811.5127 -3724.1975 3811.782 C -f --3724.5012 3812.303 m --3724.3352 3812.198 L --3724.3643 3812.1294 -3724.4082 3812.105 -3724.5012 3812.303 C -f --3723.9832 3811.9768 m --3724.3352 3812.198 L --3724.2888 3812.313 -3724.2839 3812.5447 -3724.1736 3812.1184 C --3724.2024 3812.3296 -3724.1328 3812.1262 -3723.9832 3811.9768 C -f --3723.7839 3812.0852 m --3723.6042 3812.2405 -3723.3721 3812.3384 -3723.6936 3812.5852 C --3723.0808 3812.4871 -3723.1711 3811.9856 -3723.7839 3812.0852 C -f --3722.1963 3813.8887 m --3721.9561 3814.0984 L --3721.7483 3813.8584 L --3721.8521 3813.9771 -3722.2112 3813.6653 -3722.1963 3813.8887 C -f --3726.1929 3811.4126 m --3726.2129 3811.5647 -3726.0852 3811.8174 -3726.0613 3812.0122 C --3725.8247 3811.8374 L --3725.9463 3811.7334 -3726.1768 3811.6375 -3726.1929 3811.4126 C -f --3726.0613 3812.0122 m --3726.4153 3812.2727 L --3726.0991 3812.303 -3726.0413 3812.1792 -3726.0613 3812.0122 C -f --3724.5583 3813.0955 m --3723.9768 3812.5479 L --3724.6704 3813.1033 L --3724.5583 3813.0955 L -f --3727.5449 3811.3936 m --3727.3442 3811.042 L --3727.7017 3811.5735 L --3727.5449 3811.3936 L -f --3728.4417 3811.4551 m --3728.2932 3811.1638 -3728.6453 3810.9624 -3728.4883 3810.7832 C --3728.7319 3810.8352 -3728.9399 3811.0852 -3729.1272 3811.3103 C --3728.9282 3811.1848 -3728.7161 3811.2168 -3728.4417 3811.4551 C -f --3729.4417 3811.6375 m --3729.3423 3811.5679 -3729.2393 3811.4431 -3729.1272 3811.3103 C --3729.2329 3811.3772 -3729.3369 3811.4744 -3729.4417 3811.6375 C -f --3727.0183 3812.1975 m --3727.0457 3812.1055 -3727.0984 3811.8655 -3727.2969 3811.7639 C --3727.1577 3812.1912 L --3727.1152 3812.1936 -3727.0671 3812.1951 -3727.0183 3812.1975 C -f --3727.1528 3812.2046 m --3727.1577 3812.1912 L --3727.3088 3812.1814 -3727.4136 3812.1719 -3727.4585 3812.167 c --3727.4199 3812.1707 -3727.3279 3812.1824 -3727.1528 3812.2046 C -f --3726.9832 3812.1992 m --3726.9961 3812.198 -3727.0056 3812.1975 -3727.0183 3812.1975 C --3727.0049 3812.24 -3726.9968 3812.2534 -3726.9832 3812.1992 C -f --3725.4863 3812.709 m --3725.6943 3812.948 -3726.1279 3813.2039 -3725.7083 3813.5686 C --3725.5591 3813.2759 -3725.7993 3813.0686 -3725.4863 3812.709 c -f --3726.8103 3812.7334 m --3726.4343 3812.8311 L --3726.4417 3812.7183 -3726.5095 3812.5535 -3726.4065 3812.4351 C --3726.8103 3812.7334 L -f --3726.9944 3812.8694 m --3726.8103 3812.7334 L --3726.9497 3812.6975 L --3726.9944 3812.8694 L -f --3728.7976 3812.0376 m --3728.96 3812.2239 -3729.1377 3812.2393 -3729.3384 3812.2693 C --3729.1233 3812.3533 -3728.9009 3812.3992 -3728.6897 3812.3972 C --3728.6599 3812.2632 -3728.5671 3812.0222 -3728.7976 3812.0376 C -f --3727.9983 3812.1563 m --3728.0095 3812.1663 -3728.0239 3812.1707 -3728.0344 3812.1807 C --3728.0122 3812.2173 -3727.9944 3812.2283 -3727.9983 3812.1563 C -f --3731.3142 3812.2664 m --3731.3032 3812.2896 -3731.2937 3812.3196 -3731.2825 3812.344 C --3731.28 3812.3196 -3731.2783 3812.2952 -3731.2751 3812.27 C --3731.3142 3812.2664 L -f --3728.6536 3812.4771 m --3728.4919 3812.5598 -3728.3953 3812.4551 -3728.3032 3812.3242 C --3728.4241 3812.3662 -3728.5522 3812.3943 -3728.6897 3812.3972 C --3728.7031 3812.4583 -3728.7056 3812.4983 -3728.6536 3812.4771 C -f --3729.9929 3811.8374 m --3729.9087 3811.9272 -3729.8132 3812.0032 -3729.7129 3812.0723 C --3729.7952 3811.9373 -3729.9631 3811.7263 -3729.9929 3811.8374 C -f --3728.0889 3812.0623 m --3728.0808 3812.0559 -3728.0735 3812.0479 -3728.0647 3812.0432 C --3728.1177 3811.9524 -3728.1111 3811.9966 -3728.0889 3812.0623 C -f --3728.0889 3812.0623 m --3728.1721 3812.1243 -3728.2375 3812.2295 -3728.3032 3812.3242 C --3728.2048 3812.2896 -3728.1135 3812.2439 -3728.0344 3812.1807 C --3728.0544 3812.1504 -3728.0745 3812.104 -3728.0889 3812.0623 C -f --3731.9128 3815.0093 m --3731.8843 3814.6133 -3731.4592 3814.2471 -3731.0923 3814.6719 C --3730.7312 3814.375 -3730.9673 3813.0723 -3731.2825 3812.344 C --3731.2937 3812.5166 -3731.2937 3812.6763 -3731.6653 3812.9104 C --3731.5352 3813.126 -3730.8408 3813.4163 -3731.1543 3813.7747 C --3731.6465 3813.9783 -3731.5576 3813.6343 -3731.7969 3813.4253 C --3731.5935 3813.9182 -3732.4231 3814.1431 -3732.3159 3814.8687 C --3731.8843 3814.6133 L --3731.8762 3814.7263 -3732.0327 3814.9063 -3731.9128 3815.0093 C -f --3730.5745 3812.3843 m --3730.4216 3812.3352 L --3730.5959 3812.2664 -3730.7207 3812.1079 -3730.9504 3811.7976 C --3731.2048 3811.9915 -3731.2576 3812.1382 -3731.2751 3812.27 C --3730.5222 3812.3252 L --3730.5745 3812.3843 L -f --3729.7351 3812.3335 m --3729.8545 3812.7644 -3730.2217 3812.948 -3729.9968 3813.4143 C --3729.5481 3813.3843 -3729.6824 3813.0542 -3729.4143 3812.8672 C --3730.1384 3812.9744 -3729.2063 3812.6272 -3729.7295 3812.3831 C --3729.5872 3812.3096 -3729.4592 3812.2871 -3729.3384 3812.2693 C --3729.4688 3812.2173 -3729.5945 3812.1519 -3729.7129 3812.0723 C --3729.7063 3812.0823 -3729.7017 3812.0896 -3729.6963 3812.0989 C --3729.6929 3812.0984 L --3729.6929 3812.1006 -3729.6936 3812.1016 -3729.6936 3812.104 C --3729.6624 3812.1582 -3729.6521 3812.1912 -3729.6873 3812.1604 C --3729.6897 3812.1653 -3729.6985 3812.167 -3729.7024 3812.1692 C --3729.7073 3812.2283 -3729.7207 3812.2808 -3729.7351 3812.3311 C --3729.9448 3812.2422 -3729.7681 3812.22 -3729.7024 3812.1692 C --3729.7 3812.1472 -3729.6943 3812.1272 -3729.6936 3812.104 C --3729.6943 3812.1023 -3729.6953 3812.1006 -3729.6963 3812.0989 C --3730.4216 3812.3352 L --3730.2681 3812.3953 -3730.0759 3812.3831 -3729.7351 3812.3335 C -f --3726.0952 3814.4951 m --3726.1177 3814.4573 -3726.1167 3814.4263 -3726.1184 3814.3953 C --3726.1653 3814.448 -3726.1831 3814.4839 -3726.0952 3814.4951 C -f --3726.3936 3814.2351 m --3726.3408 3814.1753 -3726.2969 3814.0032 -3726.1255 3814.0471 C --3725.9768 3814.1763 -3726.1262 3814.2534 -3726.1184 3814.3953 C --3726.0151 3814.2808 -3725.7568 3814.0862 -3726.0808 3813.8762 C --3726.1321 3813.9351 L --3726.4241 3813.7871 -3726.7993 3813.2495 -3726.7483 3813.1902 C --3726.6631 3813.5784 -3726.5879 3813.854 -3726.3936 3814.2351 C -f --3728.0852 3813.3943 m --3728.6892 3813.6055 L --3728.3816 3813.9783 L --3728.3972 3813.7544 L --3728.0537 3813.8423 -3728.1279 3813.5667 -3728.0852 3813.3943 C -f --3731.3833 3812.052 m --3731.3032 3811.5967 L --3731.6521 3812.24 L --3731.3833 3812.052 L -f --3732.1682 3812.1062 m --3732.1392 3811.7112 L --3732.3464 3811.9495 L --3732.1682 3812.1062 L -f --3776.4617 3817.0166 m --3776.6392 3817.1287 L --3776.5552 3817.094 -3776.5012 3817.0564 -3776.4617 3817.0166 C -f --3775.1768 3817.0435 m --3775.1453 3816.8484 L --3775.2048 3816.9558 -3775.2292 3817.0352 -3775.1768 3817.0435 C -f --3751.4456 3812.1509 m --3751.7041 3811.7815 -3751.9929 3811.2083 -3751.9617 3811.6536 C --3751.8823 3812.0872 L --3751.7017 3812.0093 -3751.5632 3812.0576 -3751.4456 3812.1509 C -f --3764.6479 3814.7415 m --3764.6233 3814.7832 -3764.5977 3814.8286 -3764.5723 3814.8728 C --3764.5095 3814.7246 -3764.4504 3814.5872 -3764.3977 3814.4583 C --3764.4729 3814.5471 -3764.5583 3814.6416 -3764.6479 3814.7415 C -f --3764.8303 3816.5364 m --3765.1711 3816.2566 L --3765.0945 3816.354 -3764.9849 3816.448 -3764.8303 3816.5364 C -f --3783.4792 3817.4768 m --3783.6863 3817.9182 L --3783.3623 3817.9163 -3783.5049 3817.6936 -3783.4792 3817.4768 C -f --3740.2073 3812.2664 m --3740.4304 3812.0967 -3740.6079 3812.0254 -3740.7639 3812.0044 C --3740.4951 3812.2534 -3740.2783 3812.6272 -3740.2073 3812.2664 C -f --3775.9561 3812.4126 m --3776.0647 3812.4912 -3776.1111 3812.5796 -3776.1079 3812.6763 C --3775.9961 3812.6023 -3775.9329 3812.5193 -3775.9561 3812.4126 C -f --3741.4082 3812.0059 m --3741.3689 3812.0496 -3741.3303 3812.0713 -3741.2903 3812.1079 C --3741.1272 3812.0352 -3740.9631 3811.9768 -3740.7639 3812.0044 C --3740.9624 3811.8196 -3741.1897 3811.7046 -3741.4082 3812.0059 C -f --3808.9297 3817.1172 m --3808.9482 3817.0984 -3808.9705 3817.0884 -3808.9873 3817.0652 C --3808.9929 3817.1243 -3808.9673 3817.1272 -3808.9297 3817.1172 C -f --3816.3442 3812.74 m --3816.2712 3812.7124 -3816.1521 3812.7119 -3816.0398 3812.7063 C --3816.0945 3812.6763 -3816.1863 3812.6792 -3816.3442 3812.74 c -f --3735.3264 3811.917 m --3735.1599 3811.8887 -3735.3 3811.8694 -3735.3264 3811.917 C --3735.3264 3811.917 L -f --3734.5168 3813.6331 m --3734.5522 3813.6814 -3734.5791 3813.7439 -3734.5833 3813.844 C --3734.5696 3813.74 -3734.5464 3813.6736 -3734.5168 3813.6331 c -f --3743.0664 3814.7063 m --3743.0713 3814.7063 -3743.0752 3814.7046 -3743.0808 3814.7046 C --3743.0313 3814.7896 -3743.0398 3814.7732 -3743.0664 3814.7063 C -f --3735.0759 3812.1143 m --3735.1384 3812.0613 -3735.2104 3812.0166 -3735.2888 3811.9856 C --3735.2544 3812.0193 -3735.1897 3812.0613 -3735.0759 3812.1143 C -f --3735.1096 3811.9092 m --3735.0522 3811.9287 -3735.0071 3811.9395 -3734.9641 3811.9512 C --3734.9431 3811.8792 -3734.9617 3811.8335 -3735.1096 3811.9092 C -f --3735.5583 3811.9407 m --3735.4631 3811.9336 -3735.3743 3811.9539 -3735.2888 3811.9856 C --3735.3215 3811.9558 -3735.3352 3811.9319 -3735.3264 3811.917 C --3735.3752 3811.9236 -3735.4441 3811.9326 -3735.5583 3811.9407 c -f --3795.2932 3815.9558 m --3795.3042 3815.9424 -3795.3169 3815.9336 -3795.3289 3815.9153 C --3795.4968 3816.0952 -3795.4231 3816.0667 -3795.2932 3815.9558 C -f --3755.7783 3816.6563 m --3755.7705 3816.6519 -3755.7664 3816.6404 -3755.7593 3816.636 C --3755.7671 3816.6311 -3755.7769 3816.625 -3755.7839 3816.6199 C --3755.7783 3816.6563 L -f --3756.3762 3816.979 m --3756.1216 3816.4392 -3755.9768 3816.5056 -3755.7839 3816.6199 C --3755.9817 3815.3694 L --3756.3762 3816.979 L -f -*u --3779.5383 3817.1416 m --3779.1184 3817.532 L --3779.6252 3818.1736 -3779.9919 3817.9524 -3779.5977 3818.5 C --3779.5383 3817.1416 -3777.9656 3818.3616 -3777.9072 3817.0039 C --3777.6304 3817.2896 L --3777.7097 3817.2766 -3777.7224 3817.3562 -3777.8008 3817.3433 C --3777.2625 3817.9934 -3777.4009 3816.3616 -3776.7073 3816.5542 C --3776.4656 3816.6582 -3776.2969 3816.855 -3776.4617 3817.0166 C --3775.9231 3816.6807 L --3775.7664 3816.7073 -3775.8047 3816.9431 -3775.9607 3816.917 C --3775.1392 3816.8086 L --3775.1453 3816.8484 L --3775.0281 3816.636 -3774.7625 3816.3064 -3774.6328 3816.1663 C --3774.4241 3816.3616 -3774.7375 3816.3103 -3774.6841 3816.479 C --3774.2292 3816.1504 L --3774.0439 3816.5032 -3774.4209 3816.844 -3774.7351 3816.7935 C --3774.3103 3818.1494 -3774.3577 3816.4524 -3773.4409 3817.2444 C --3773.8704 3817.4163 L --3773.5935 3818.1863 -3773.2583 3817.9072 -3772.7727 3818.3875 C --3772.8879 3818.1367 -3773.7449 3817.1775 -3773.2512 3816.8391 C --3773.1121 3816.9414 -3772.9287 3816.99 -3772.6624 3816.7168 C --3772.6599 3817.2 -3772.3999 3817.0811 -3772.0745 3817.0535 C --3772.0967 3817.6936 L --3771.7449 3817.5088 -3771.7727 3817.1831 -3771.5657 3816.8953 C --3771.1736 3816.9583 -3771.0923 3817.4536 -3771 3817.8711 C --3770.3721 3817.9727 -3771.4336 3817.0767 -3770.6904 3816.9558 C --3770.1682 3817.2007 -3769.8015 3816.9392 -3769.1768 3816.5564 C --3768.8113 3816.7776 -3769.2407 3816.948 -3769.1096 3817.1311 C --3768.7856 3816.6206 L --3768.7063 3816.6331 -3768.7319 3816.7896 -3768.7449 3816.8687 C --3768.4719 3816.6707 -3768.7224 3816.229 -3768.2932 3816.0559 C --3768.1775 3815.3511 -3767.4121 3817.0852 -3766.8809 3816.2854 C --3766.75 3816.4673 -3766.9441 3816.6775 -3766.9041 3816.9253 C --3766.1753 3816.3999 -3766.2793 3816.5435 -3765.6809 3815.8367 C --3765.1711 3816.2566 L --3765.5457 3815.7766 -3765.0671 3815.2083 -3764.6479 3814.7415 C --3764.7808 3814.5093 -3764.8943 3814.3064 -3764.9705 3814.2095 C --3764.3015 3813.8662 L --3764.2207 3813.9712 -3764.2881 3814.1912 -3764.3977 3814.4583 C --3764.3521 3814.4055 -3764.3088 3814.3533 -3764.2751 3814.3047 C --3764.0359 3814.5413 -3764.1599 3814.9104 -3764.3313 3815.2676 C --3764.4128 3815.1416 -3764.4937 3815.0071 -3764.5723 3814.8728 C --3764.7375 3815.2615 -3764.8921 3815.6919 -3764.8577 3816.0667 C --3764.8142 3815.9927 -3764.7305 3815.9292 -3764.6384 3815.8936 C --3764.6816 3815.9993 -3764.7092 3816.0935 -3764.6892 3816.1575 c --3764.6665 3816.2246 -3764.5967 3816.0833 -3764.4873 3815.9197 C --3764.3352 3816.6331 L --3764.2983 3816.3499 L --3763.4231 3816.7959 L --3762.7969 3816.0784 -3762.2522 3815.021 -3761.2583 3814.7271 C --3761.5049 3815.25 -3761.3113 3815.5811 -3761.3247 3816.2007 C --3761.5959 3815.5447 -3762.0945 3816.479 -3762.6096 3816.3462 c --3762.3408 3816.4153 -3762.3999 3816.7112 -3762.4683 3816.813 C --3761.5496 3816.2168 L --3761.5703 3816.7239 -3761.3545 3816.5967 -3761.1145 3816.8064 C --3761.2959 3815.8047 -3760.4297 3816.1392 -3760.0559 3815.8323 C --3760.0327 3816.1682 -3760.1223 3816.5122 -3760.5784 3816.4304 C --3760.0752 3817.1848 -3759.9282 3815.2544 -3759.4343 3815.8953 C --3759.5457 3815.9031 -3759.6057 3815.8518 -3759.6497 3816.0232 C --3759.3896 3815.7239 -3758.7537 3815.9612 -3758.9033 3816.2534 C --3759.0144 3816.2603 L --3758.2751 3816.3792 -3756.7639 3816.2676 -3756.6536 3815.417 C --3756.6462 3815.5276 -3756.7505 3816.4424 -3756.7952 3816.6143 C --3755.4761 3813.7527 L --3755.5923 3814.4832 -3755.1462 3816.2224 -3755.7593 3816.636 C --3755.5833 3816.74 -3755.3655 3816.8616 -3754.9944 3816.6033 C --3755.1145 3816.4993 -3755.2937 3815.5471 -3755.1296 3815.48 C --3754.6792 3816.2932 -3754.8169 3815.9153 -3754.2617 3816.6084 C --3754.4417 3816.4524 -3754.2417 3815.3064 -3753.9573 3815.3433 C --3754.0017 3815.5144 -3753.9336 3816.4734 -3754.0376 3816.5928 C --3753.3296 3815.4683 L --3753.5063 3815.6707 -3753.3608 3816.4214 -3753.2024 3816.74 C --3753.2759 3816.5193 -3752.5903 3816.76 -3752.4016 3816.6487 C --3752.7017 3816.3875 L --3751.9023 3816.5579 -3751.9121 3814.8064 -3751.1191 3814.8655 C --3751.2151 3815.0974 -3751.3562 3816.2952 -3750.9529 3816.4363 C --3750.7681 3815.8606 -3750.1345 3813.6663 -3749.4329 3813.2227 C --3749.2983 3813.552 L --3748.76 3813.1768 L --3749.0952 3814.0435 -3750.0359 3815.8672 -3750.5496 3816.5767 C --3750.2505 3816.8374 -3750.4663 3816.9656 -3750.0183 3816.9351 C --3749.8601 3817.2439 -3750.2625 3817.4031 -3750.3943 3817.4214 C --3749.3513 3817.6206 L --3749.3977 3816.948 -3748.5537 3816.9463 -3748.5935 3816.386 C --3749.7263 3817.0833 L --3749.7722 3816.4119 -3749.0713 3815.1753 -3748.3323 3815.2932 C --3748.1443 3815.5613 -3748.4729 3816.49 -3748.4575 3816.7144 C --3748.3616 3816.4832 -3747.7561 3816.2722 -3747.6882 3816.4363 C --3748.0017 3816.7959 L --3747.5903 3817.0486 -3747.3303 3815.9048 -3746.8359 3816.5464 C --3746.6653 3816.5896 -3746.3264 3817.4119 -3746.2969 3817.0144 C --3746.5752 3816.2471 -3746.6296 3813.8743 -3746.4441 3813.2979 C --3746.3843 3813.3499 -3745.5481 3814.0313 -3745.3533 3814.4104 C --3745.0723 3815.0122 -3745.7751 3815.844 -3745.5359 3816.3606 C --3745.5256 3816.1768 -3745.3704 3815.9502 -3745.3057 3815.8772 C --3745.1265 3816.0342 -3745.3799 3816.4463 -3744.9905 3816.3633 C --3744.9255 3815.6824 -3744.1985 3816.4207 -3744.8064 3815.7871 C --3744.4255 3815.5923 -3744.4016 3815.9282 -3743.9543 3815.8975 C --3744.0967 3815.4573 -3743.5527 3814.3992 -3743.1711 3814.2039 C --3743.1936 3814.3772 -3743.1079 3814.6033 -3743.0664 3814.7063 C --3742.2856 3814.7676 -3741.8665 3815.0774 -3741.1384 3815.0833 C --3741.0713 3815.2483 -3740.72 3815.448 -3740.8696 3815.7415 C --3740.7649 3815.6206 -3740.6687 3815.3894 -3740.4441 3815.3733 C --3740.0095 3815.9624 -3740.9448 3815.4646 -3740.6135 3816.1736 C --3740.5852 3815.7776 -3740.0327 3815.626 -3739.7129 3815.3792 C --3739.8113 3814.7671 -3740.4519 3815.2615 -3740.7722 3815.5088 C --3740.7737 3814.6653 -3740.2161 3813.7815 -3739.4551 3813.3911 C --3738.8503 3813.1814 -3739.1929 3813.9363 -3739.0879 3813.8167 C --3737.9519 3813.9639 -3738.1201 3812.3433 -3737.1768 3812.9524 C --3736.8025 3813.4895 -3737.1599 3814.021 -3737.0769 3814.4092 C --3737.5696 3814.6128 -3737.8333 3814.0679 -3738.1672 3814.0896 C --3737.7561 3814.344 L --3737.9128 3814.5232 -3738.2417 3814.6582 -3738.4209 3814.5032 C --3738.1072 3814.9856 -3736.5017 3814.5952 -3735.6252 3815.0413 C --3735.4695 3814.8616 -3735.2007 3814.6743 -3735.3279 3814.4583 C --3735.6052 3814.5332 L --3735.8601 3814.0999 -3735.0833 3813.9336 -3735.4343 3813.7312 C --3735.0623 3813.4263 -3734.6453 3812.9473 -3734.1216 3813.1924 C --3734.0232 3813.8054 L --3734.0344 3813.626 -3734.3655 3813.4407 -3734.5127 3813.6272 c --3734.2944 3813.355 -3733.7097 3814.4573 -3733.4705 3813.6543 C --3733.8376 3813.2295 L --3733.4641 3812.9214 -3733.0024 3812.2703 -3732.5383 3812.4639 C --3732.7495 3811.8584 -3732.6453 3812.5332 -3732.9751 3811.8247 C --3732.6892 3812.7063 -3734.1624 3811.7876 -3733.7031 3812.7134 C --3734.0415 3811.8916 -3734.2888 3812.3655 -3734.7312 3811.6638 C --3734.7175 3811.8662 -3734.5745 3812.0513 -3734.9641 3811.9512 C --3734.9817 3812.0103 -3735.0232 3812.0852 -3735.0496 3812.1294 C --3735.0615 3812.1243 -3735.0657 3812.1206 -3735.0759 3812.1143 C --3735.0681 3812.1223 -3735.0623 3812.1311 -3735.0544 3812.1382 C --3735.0713 3812.1687 -3735.0728 3812.1753 -3735.0464 3812.146 C --3734.9536 3812.2356 -3734.8784 3812.3416 -3734.8479 3812.4539 C --3735.0413 3812.9182 -3735.6609 3812.9038 -3735.8704 3813.1443 C --3736.1016 3813.0479 -3735.7737 3812.9119 -3735.8999 3812.6963 C --3736.2129 3813.0559 L --3736.2439 3812.6072 -3736.8271 3812.3096 -3736.2825 3812.0464 C --3736.7727 3812.0264 L --3737.0613 3811.7747 -3737.4583 3 -endstream endobj 32 0 obj <>stream -811.6743 -3737.7031 3811.8633 C --3737.9343 3811.7664 -3738.2871 3812.3606 -3738.0857 3812.0088 C --3738.8545 3812.2871 L --3738.8616 3812.1753 L --3739.6201 3812.1184 -3740.4231 3812.9192 -3741.2903 3812.1079 C --3741.5457 3812.2212 -3741.8096 3812.3599 -3742.2368 3812.2327 C --3742.3201 3811.844 L --3742.6479 3811.979 -3743.3047 3811.4551 -3743.4456 3811.8599 C --3743.7993 3810.8142 -3745.0369 3811.6316 -3745.6135 3811.4463 C --3745.6353 3811.9536 L --3746.0322 3811.9253 -3746.4128 3812.0696 -3746.9055 3812.2727 C --3746.8752 3812.7207 L --3747.3 3813.0884 -3747.9673 3812.4019 -3748.6392 3812.448 C --3748.5935 3812.2766 -3748.4231 3812.3213 -3748.3025 3812.4253 C --3749.1052 3811.4119 -3749.9961 3813.1614 -3750.7241 3812.4236 C --3750.9055 3812.5872 -3751.0369 3812.5313 -3751.1641 3812.4192 C --3751.1472 3812.4175 -3751.1321 3812.4092 -3751.1191 3812.3953 C --3751.1377 3812.3904 -3751.1653 3812.3887 -3751.1936 3812.3894 C --3751.2737 3812.3123 -3751.3562 3812.2227 -3751.4456 3812.1509 C --3751.3696 3812.26 -3751.2969 3812.3496 -3751.2336 3812.3911 C --3751.3735 3812.4004 -3751.5857 3812.4558 -3751.7937 3812.5686 C --3751.8823 3812.0872 L --3751.8992 3812.0935 -3751.9128 3812.0923 -3751.9304 3812.1006 C --3752.1345 3811.9231 -3752.0945 3812.3286 -3751.9856 3812.6912 C --3752.0903 3812.77 -3752.1863 3812.8655 -3752.2607 3812.9812 C --3752.4265 3812.2039 -3752.8064 3813.2432 -3753.0327 3812.4143 C --3753.1729 3812.8184 -3754.0784 3812.7183 -3754.1892 3813.5696 C --3754.1963 3813.4583 -3754.2576 3813.4055 -3754.1453 3813.3982 C --3754.3772 3813.3015 -3754.6089 3813.2046 -3754.8169 3813.4446 C --3754.9153 3812.8323 L --3755.4216 3813.6553 L --3755.7292 3813.282 -3755.8567 3813.0652 -3755.5513 3812.594 C --3756.2888 3813.3196 -3756.1497 3812.8672 -3756.7769 3813.5852 C --3756.7463 3813.1895 L --3756.9705 3813.2046 -3757.3289 3813.7356 -3757.4641 3813.4082 C --3757.9656 3812.6553 -3759.9456 3813.3042 -3761.2329 3812.604 C --3760.9832 3813.77 -3761.8313 3812.0823 -3761.8823 3812.9856 C --3761.9573 3812.7102 -3762.1367 3812.5542 -3761.9282 3812.3152 C --3762.5852 3812.5852 -3762.9153 3811.8772 -3763.3689 3812.6392 C --3763.4441 3812.3623 -3763.2283 3812.2356 -3763.2952 3812.0713 C --3763.3479 3812.1311 -3763.5039 3812.3113 -3763.5723 3812.146 c --3763.6392 3811.9822 -3763.4761 3811.9153 -3763.3721 3811.7952 C --3764.0432 3811.8416 -3764.1111 3812.6912 -3764.1599 3813.4883 C --3764.5 3813.1111 -3764.6697 3813.1638 -3764.9153 3813.6873 C --3765.0337 3813.4263 -3765.2312 3813.1536 -3764.8142 3813.0598 C --3765.0488 3813.0215 -3766.2473 3812.6775 -3766.2712 3813.3167 C --3766.3447 3813.1543 -3766.5991 3813.2693 -3766.6609 3813.3433 C --3767.1873 3813.3047 -3767.2336 3813.2471 -3767.7505 3813.3079 C --3767.6072 3813.4119 L --3767.8113 3814.1831 -3768.0369 3813.584 -3768.4536 3813.6768 C --3768.4417 3813.5984 L --3769.3972 3813.0415 -3768.8542 3813.8643 -3769.7969 3813.229 C --3769.7456 3813.709 L --3769.8335 3814.7405 -3770.5808 3813.1006 -3771.1279 3813.4951 C --3770.9304 3813.7693 L --3771.2292 3814.1223 -3771.7656 3812.3662 -3772.0657 3812.2371 C --3772.1311 3812.1472 -3771.9624 3812.0935 -3771.8711 3812.0276 C --3772.6567 3811.4182 -3771.9729 3812.6553 -3772.5583 3812.8015 C --3772.6663 3812.4624 -3772.4192 3811.9392 -3772.8132 3811.8762 C --3773.0095 3811.6023 -3773.9561 3812.9768 -3774.4937 3812.3267 C --3774.3752 3812.5879 -3774.2576 3812.8484 -3774.5295 3813.0447 C --3774.9463 3813.1382 -3775.6563 3812.0579 -3776.0327 3812.8816 C --3776.0857 3812.8096 -3776.1057 3812.7415 -3776.1079 3812.6763 C --3776.4265 3812.8887 -3777.1433 3813.0291 -3777.3352 3813.4756 C --3777.6296 3811.8191 -3779.3159 3814.2815 -3779.3088 3812.7534 C --3780.2888 3812.8352 L --3780.2632 3812.6792 L --3780.8896 3812.5784 -3781.1111 3812.9446 -3781.3313 3813.3113 C --3781.4761 3813.2073 -3781.3704 3813.0642 -3781.3584 3812.9846 C --3782.2737 3812.6763 -3782.3647 3812.7415 -3783.1321 3813.5032 C --3783.2119 3813.0071 L --3783.4199 3813.2952 -3784.5352 3812.2295 -3785.4329 3812.8079 C --3785.4241 3812.751 -3785.4055 3812.6553 -3785.3342 3812.5852 C --3786.3442 3813.167 -3787.7522 3811.2112 -3788.1223 3813.0159 C --3788.7888 3813.4607 L --3787.9265 3813.6006 -3788.9172 3814.2444 -3788.5625 3814.5435 C --3788.9016 3814.6494 -3789.4392 3813.9993 -3789.0225 3813.9063 C --3788.9573 3813.9966 L --3788.8042 3813.0559 -3790.0288 3813.6631 -3790.0056 3813.0222 C --3791.7024 3813.0696 -3793.3562 3812.5479 -3794.9456 3812.5078 C --3794.7625 3813.2393 L --3795.3169 3813.1975 L --3795.4624 3813.0276 -3795.5122 3812.625 -3795.1167 3812.6553 C --3795.3247 3812.2405 -3795.78 3813.0032 -3795.7913 3813.1614 C --3796.5657 3812.8655 -3795.4888 3812.3086 -3795.7263 3812.2913 C --3796.0488 3812.3455 L --3795.9761 3812.4312 L --3796.2375 3812.73 -3796.2607 3813.0471 -3796.7361 3813.0112 C --3797.0369 3812.8643 -3796.8904 3812.5598 -3797.0088 3812.532 C --3797.0081 3812.479 -3797.0481 3812.4551 -3797.1904 3812.5103 C --3797.8889 3812.448 L --3797.6096 3813.0254 L --3797.9192 3813.3103 -3798.2664 3812.9951 -3797.9441 3813.6494 c --3798.4172 3812.6404 -3800.5496 3813.2871 -3800.8401 3812.9744 C --3801.2737 3813.3953 -3801.7017 3813.3875 -3802.2319 3813.3367 C --3802.1001 3813.4573 -3802.0212 3814.1062 -3802.4785 3814.0271 C --3802.3113 3812.6873 -3803.3159 3813.4456 -3803.6855 3812.4812 C --3803.3552 3813.1206 -3804.9856 3812.6392 -3804.4673 3813.5471 C --3804.8489 3813.438 -3804.4905 3813.0454 -3804.78 3812.73 C --3805.6882 3813.2493 -3806.7815 3812.3926 -3807.9041 3812.5679 C --3807.9216 3812.7444 -3807.7336 3813.0127 -3807.9744 3813.2747 C --3808.5671 3812.3953 L --3808.7888 3812.4812 -3808.7712 3813.4104 -3809.1763 3812.8 C --3809.1191 3812.948 -3809.0337 3813.1707 -3809.1824 3813.2271 C --3811.3816 3812.3704 -3813.6763 3813.9292 -3815.9097 3812.3191 C --3815.6072 3812.6604 -3815.8088 3812.6936 -3816.0398 3812.7063 C --3815.8896 3812.7876 -3816.0432 3813.1404 -3816.0137 3813.3792 C --3816.9487 3812.7168 L --3817.1191 3813.3784 -3817.9512 3812.7615 -3818.0488 3813.3943 C --3817.7527 3813.28 L --3818.1465 3814.0271 -3817.2017 3814.9395 -3817.2593 3815.8975 C --3816.8184 3815.0486 -3816.0967 3817.1543 -3815.3733 3815.9395 C --3815.2136 3816.1353 -3815.5095 3816.2483 -3815.4241 3816.4702 C --3815.2407 3816.0598 -3815.0193 3815.9744 -3814.6089 3816.1582 C --3814.6553 3816.26 L --3813.5024 3816.1599 -3813.0081 3816.5647 -3811.7129 3816.834 C --3811.8088 3816.3606 L --3811.5305 3816.4236 -3811.4719 3816.5723 -3811.3416 3816.6912 C --3811.0222 3815.9727 -3812.1233 3816.6504 -3811.8323 3815.8584 C --3811.4631 3816.8223 -3809.8696 3815.8728 -3809.6201 3816.9683 C --3809.1919 3816.9744 -3809.7456 3816.4197 -3809.3176 3816.4263 C --3809.2041 3816.7227 L --3809.0959 3816.3408 L --3808.8152 3816.4038 -3808.6736 3816.7747 -3808.6631 3817.0254 C --3808.7312 3816.9956 -3808.8567 3817.0955 -3808.9297 3817.1172 C --3808.5657 3817.4663 -3807.9033 3816.9983 -3807.7783 3817.1118 C --3808.1897 3816.9292 L --3807.0212 3816.6519 -3805.5945 3817.0413 -3804.4656 3816.438 C --3804.5513 3816.2151 L --3803.6892 3815.8015 -3803.8608 3816.4607 -3802.9143 3816.2693 C --3802.9487 3816.3223 L --3802.7593 3816.0999 -3802.5063 3815.9871 -3802.2473 3816.0127 C --3802.4863 3816.2747 -3801.7976 3816.521 -3802.1111 3816.8113 C --3801.1763 3816.3672 -3801.6487 3816.4624 -3801.0313 3815.6316 C --3800.8889 3816.0032 L --3800.6785 3815.667 -3800.6609 3815.49 -3800.1882 3815.3943 C --3800.5759 3815.7124 -3799.8865 3815.959 -3800.3208 3816.3799 C --3799.3289 3817.1912 -3798.8479 3815.5613 -3798.3928 3816.7471 C --3797.9373 3815.7207 -3799.2512 3816.1775 -3798.9961 3815.9575 C --3799.2097 3815.6223 -3798.6201 3815.1902 -3798.3088 3815.2932 C --3797.9919 3815.3167 -3797.77 3816.6072 -3796.9729 3816.5872 C --3797.0522 3816.5823 -3797.0576 3816.6604 -3797.1367 3816.6553 C --3796.8384 3816.917 -3796.5522 3816.3008 -3796.1863 3816.7263 C --3795.9812 3816.105 -3795.7112 3816.7615 -3795.6521 3815.9702 C --3796.3833 3816.1536 L --3795.9688 3815.9463 -3795.5801 3815.02 -3794.8972 3815.4695 C --3794.9504 3815.6287 -3795.1536 3815.8391 -3795.2932 3815.9558 C --3795.0935 3816.1895 -3794.9087 3815.8015 -3794.7017 3816.0413 C --3794.7607 3816.8335 -3795.5903 3816.2134 -3796.0344 3816.8174 C --3795.8201 3817.1519 -3795.1943 3816.2439 -3795.4175 3817.1016 c --3795.0967 3816.0112 -3794.6321 3817.24 -3794.0923 3816.4063 C --3794.1279 3816.8806 L --3794.0425 3816.8064 -3793.8655 3816.5823 -3793.7083 3816.594 C --3793.9929 3817.2095 L --3793.5559 3816.6848 -3793.1504 3817.6692 -3792.7312 3817.3831 C --3793.6089 3817.3975 -3792.9282 3816.8113 -3793.2993 3816.4646 C --3792.2168 3815.8296 -3792.6768 3817.7063 -3791.4648 3817.4783 C --3791.6289 3817.5454 -3792.0808 3817.1936 -3791.8242 3816.9734 C --3791.5935 3817.0713 -3791.2888 3817.2534 -3791.1472 3817.5032 C --3790.3442 3817.4038 -3791.2705 3817.0144 -3790.9287 3816.7224 C --3790.6553 3817.3008 -3790.5344 3816.4871 -3790.1824 3816.302 C --3790.1799 3816.7847 L --3789.2649 3817.094 -3789.9373 3815.7791 -3789.1135 3816.1536 C --3789.4617 3816.8223 L --3789.0322 3816.6494 L --3789.1208 3817.198 L --3788.6536 3816.7913 -3788.5081 3816.896 -3788.0503 3817.0503 C --3788.1567 3816.7112 -3787.9905 3816.1753 -3787.5852 3816.1599 C --3787.3088 3816.4463 -3787.74 3816.6184 -3787.1655 3816.5496 C --3787.2952 3816.8511 -3787.4373 3817.23 -3787.6873 3816.7864 C --3787.7129 3816.9436 -3787.8152 3817.0884 -3787.8416 3817.2444 C --3787.5439 3817.5735 -3787.0935 3817.3191 -3786.8855 3817.3142 C --3786.9656 3817.2964 -3787.0613 3817.2703 -3787.1104 3817.2024 C --3786.2776 3816.5332 L --3786.1465 3816.7144 -3786.2505 3816.8599 -3786.3535 3817.0032 C --3786.1848 3816.9502 -3786.0681 3816.7283 -3785.8201 3816.6873 C --3785.8843 3817.0791 -3785.8689 3817.4839 -3786.22 3817.6687 C --3785.4265 3817.2334 L --3785.3735 3817.4038 -3785.0193 3817.7024 -3785.1223 3817.8462 C --3784.6824 3818.0767 -3784.0432 3817.0852 -3783.46 3817.3894 C --3783.4297 3817.3135 -3783.3689 3817.2405 -3783.2449 3817.1848 C --3782.6968 3817.2732 -3782.2112 3817.7544 -3781.5615 3817.2173 C --3781.1929 3817.9197 L --3780.6841 3817.7603 -3781.6919 3817.0342 -3780.8447 3816.7693 C --3780.2449 3816.5447 -3780.6208 3817.3687 -3780.4104 3817.5642 C --3780.1121 3817.2102 -3779.5935 3816.4888 -3779.0425 3817.0613 C --3779.2249 3817.1936 -3779.3679 3817.0896 -3779.5383 3817.1416 C -f -1 D --3773.2632 3816.8301 m --3773.3848 3816.9312 -3773.6272 3817.2439 -3773.7161 3816.959 C --3773.5776 3816.4063 -3773.4705 3816.6707 -3773.2632 3816.8301 C -f --3763.7241 3815.6692 m --3763.8145 3815.8279 -3763.9543 3815.7493 -3764.1121 3815.5667 C --3763.9976 3815.5271 -3763.8679 3815.5447 -3763.7241 3815.6692 C -f --3737.1511 3812.3096 m --3737.1563 3812.3174 -3737.1599 3812.3232 -3737.1641 3812.3333 C --3737.4353 3812.1453 -3737.3391 3812.22 -3737.1511 3812.3096 C -f -0 D --3736.5879 3812.5193 m --3736.5313 3812.4524 -3736.5352 3812.3848 -3736.5591 3812.3174 C --3736.5984 3812.4392 -3736.7249 3812.448 -3736.8689 3812.4136 C --3736.8289 3812.5398 -3736.7561 3812.6272 -3736.5879 3812.5193 C -f -1 D --3797.0713 3812.709 m --3796.9617 3812.8352 L --3797.2092 3812.9744 -3797.1399 3812.8484 -3797.0713 3812.709 C -f -*U -0 D --3764.8057 3816.3286 m --3764.8401 3816.2471 -3764.8496 3816.1575 -3764.8577 3816.0667 C --3764.9055 3816.1475 -3764.9065 3816.2415 -3764.8057 3816.3286 C -f --3783.4409 3817.3953 m --3783.4473 3817.3911 -3783.4536 3817.3926 -3783.46 3817.3894 C --3783.4705 3817.4182 -3783.4761 3817.448 -3783.4792 3817.4768 C --3783.4409 3817.3953 L -f --3745.3123 3816.6096 m --3745.4282 3816.5398 -3745.4929 3816.4524 -3745.5359 3816.3606 C --3745.5422 3816.4783 -3745.4895 3816.5784 -3745.3123 3816.6096 C -f --3733.6033 3811.6992 m --3733.9641 3811.8247 L --3733.7896 3811.8008 -3733.7273 3811.9063 -3733.6392 3811.9832 C --3733.6472 3811.8704 -3733.7161 3811.7073 -3733.6033 3811.6992 C -f --3730.4719 3814.6848 m --3730.4192 3814.6255 -3730.3601 3814.678 -3730.3081 3814.6184 C --3730.3225 3814.3943 L --3730.5471 3814.4087 -3730.7041 3814.5896 -3730.4719 3814.6848 C -f --3733.2693 3813.302 m --3733.2407 3813.7083 -3733.0144 3813.5703 -3732.7617 3813.4951 C --3732.7769 3813.4966 -3732.7913 3813.5 -3732.8064 3813.4951 C --3732.7319 3812.9282 -3733.0012 3813.1152 -3733.2693 3813.302 C -f --3732.7031 3813.4812 m --3732.6252 3813.4624 -3732.5457 3813.4524 -3732.4695 3813.4712 C --3732.4399 3813.2439 -3732.5642 3813.4236 -3732.7031 3813.4812 C -f --3735.8735 3812.25 m --3735.7537 3812.354 -3735.7983 3811.7312 -3735.7305 3811.896 C --3735.5967 3811.3799 -3736.5295 3812.521 -3735.8735 3812.25 C -f --3733.0647 3814.6392 m --3733.1553 3814.1382 L --3733.2969 3814.542 L --3733.0647 3814.6392 L -f --3735.0601 3814.271 m --3734.6563 3814.4104 L --3734.6624 3814.3264 -3734.6111 3814.2776 -3734.5481 3814.24 C --3734.7969 3814.2224 -3735.0696 3814.1233 -3735.0601 3814.271 C -f --3734.5481 3814.24 m --3734.4185 3814.2493 -3734.2952 3814.2383 -3734.2231 3814.1563 C --3734.2932 3814.1614 -3734.4441 3814.178 -3734.5481 3814.24 C -f --3733.6167 3814.7896 m --3733.7361 3814.6851 L --3734.0212 3814.6487 L --3733.6167 3814.7896 L -f --3739.4009 3814.1753 m --3739.8416 3814.3184 L --3739.8865 3814.49 -3739.7664 3814.5952 -3739.6023 3814.5271 C --3739.4968 3814.4072 -3739.3333 3814.3408 -3739.4009 3814.1753 C -f --3738.0681 3815.5471 m --3738.1873 3815.4431 -3738.1953 3815.3311 -3738.2625 3815.1663 C --3738.2759 3815.7871 L --3738.0681 3815.5471 L -f --3739.3533 3815.6919 m --3739.3972 3815.8643 -3739.9929 3816.1863 -3739.4343 3816.1475 C --3739.3896 3815.9768 -3738.9482 3815.8335 -3739.3533 3815.6919 C -f --3745.9937 3814.9063 m --3745.8816 3814.8982 L --3745.8977 3813.8799 L --3745.9937 3814.9063 L -f --3751.8464 3817.3433 m --3751.3242 3817.5872 -3751.7224 3816.7144 -3751.2505 3817.0193 C --3751.1279 3816.7783 -3751.6362 3816.7703 -3751.5105 3816.5623 C --3751.8257 3816.8167 -3751.9912 3816.6736 -3751.8464 3817.3433 C -f --3751.5105 3816.5623 m --3751.46 3816.5222 -3751.4065 3816.4734 -3751.3496 3816.4082 C --3751.4409 3816.4712 -3751.4839 3816.52 -3751.5105 3816.5623 C -f --3817.5745 3812.1924 m --3817.9104 3811.98 L --3817.6936 3812.3223 L --3817.5745 3812.1924 L -f --3818.2192 3812.948 m --3818.2983 3812.2991 L --3818.5 3812.886 L --3818.4241 3812.8572 -3818.2769 3812.8015 -3818.2192 3812.948 C -f --3772.3303 3818.1375 m --3772.3047 3817.9812 L --3772.3567 3817.8123 -3772.4353 3817.8 -3772.5928 3817.7732 C --3772.3303 3818.1375 L -f --3776.8848 3817.6519 m --3776.8064 3817.6653 L --3776.9529 3817.0784 L --3776.8848 3817.6519 L -f --3780.7073 3818.4004 m --3780.5513 3818.4253 -3780.3679 3818.2942 -3780.2112 3818.3196 C --3780.5513 3818.4253 -3780.7495 3817.6692 -3780.7073 3818.4004 C -f -U -9 () XW -U -9 () XW -U -%AI8_EndBrushPattern -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSVGFilter -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Alpha_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.1) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_BevelShadow_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color:white) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-20000) /UnicodeString (xmlnode-nodevalue) , -(z) /UnicodeString (xmlnode-nodename) , -; (z) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10000) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5000) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(fePointLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(110%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-40%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_CoolBreeze) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.2) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.2) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(freeze) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(stdDeviation) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(scale) /UnicodeString (xmlnode-nodename) , -; (scale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(A) /UnicodeString (xmlnode-nodevalue) , -(yChannelSelector) /UnicodeString (xmlnode-nodename) , -; (yChannelSelector) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(R) /UnicodeString (xmlnode-nodevalue) , -(xChannelSelector) /UnicodeString (xmlnode-nodename) , -; (xChannelSelector) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDisplacementMap) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c3) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c4) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(b5) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(a) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dilate_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Dilate_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(dilate) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erode_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(3) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Erode_6) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(radius) /UnicodeString (xmlnode-nodename) , -; (radius) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(erode) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMorphology) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaussianBlur_4) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_GaussianBlur_7) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_PixelPlay_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(spline) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 1;20 15;200 200; 15 20;1 1 ) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2 -endstream endobj 33 0 obj <>stream -) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(compositeOut1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50) /UnicodeString (xmlnode-nodevalue) , -(filterRes) /UnicodeString (xmlnode-nodename) , -; (filterRes) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_PixelPlay_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(filterRes) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(50 50;20 20;50 50) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(7) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(yellow;green;blue;indigo;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(red) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0s) /UnicodeString (xmlnode-nodevalue) , -(begin) /UnicodeString (xmlnode-nodename) , -; (begin) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(15s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(lighting-color) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indigo;green;yellow;blue;violet;red;orange) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(180) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Shadow_1) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(140%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(130%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-15%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Shadow_2) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(6) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Static) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c1) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(indefinite) /UnicodeString (xmlnode-nodevalue) , -(repeatDur) /UnicodeString (xmlnode-nodename) , -; (repeatDur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(remove) /UnicodeString (xmlnode-nodevalue) , -(fill) /UnicodeString (xmlnode-nodename) , -; (fill) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.7) /UnicodeString (xmlnode-nodevalue) , -(to) /UnicodeString (xmlnode-nodename) , -; (to) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5s) /UnicodeString (xmlnode-nodevalue) , -(dur) /UnicodeString (xmlnode-nodename) , -; (dur) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(linear) /UnicodeString (xmlnode-nodevalue) , -(calcMode) /UnicodeString (xmlnode-nodename) , -; (calcMode) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.5) /UnicodeString (xmlnode-nodevalue) , -(from) /UnicodeString (xmlnode-nodename) , -; (from) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(always) /UnicodeString (xmlnode-nodevalue) , -(restart) /UnicodeString (xmlnode-nodename) , -; (restart) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(none) /UnicodeString (xmlnode-nodevalue) , -(accumulate) /UnicodeString (xmlnode-nodename) , -; (accumulate) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(replace) /UnicodeString (xmlnode-nodevalue) , -(additive) /UnicodeString (xmlnode-nodename) , -; (additive) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(baseFrequency) /UnicodeString (xmlnode-nodevalue) , -(attributeName) /UnicodeString (xmlnode-nodename) , -; (attributeName) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(animate) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(c2) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Turbulence_3) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turbulence) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(8) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(100%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Turbulence_5) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0.4) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(turb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -/SVGFilter : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(width) /UnicodeString (xmlnode-nodename) , -; (width) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(150%) /UnicodeString (xmlnode-nodevalue) , -(height) /UnicodeString (xmlnode-nodename) , -; (height) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(y) /UnicodeString (xmlnode-nodename) , -; (y) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-10%) /UnicodeString (xmlnode-nodevalue) , -(x) /UnicodeString (xmlnode-nodename) , -; (x) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(objectBoundingBox) /UnicodeString (xmlnode-nodevalue) , -(filterUnits) /UnicodeString (xmlnode-nodename) , -; (filterUnits) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(AI_Woodgrain) /UnicodeString (xmlnode-nodevalue) , -(id) /String (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offset) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(flood-color:black; flood-opacity:0.4) /UnicodeString (xmlnode-nodevalue) , -(style) /UnicodeString (xmlnode-nodename) , -; (style) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFlood) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(color) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(shadowColor) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(resultScale) /UnicodeString (xmlnode-nodename) , -; (resultScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(diffuseConstant) /UnicodeString (xmlnode-nodename) , -; (diffuseConstant) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light2) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDiffuseLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(white) /UnicodeString (xmlnode-nodevalue) , -(lighting-color) /UnicodeString (xmlnode-nodename) , -; (lighting-color) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(5) /UnicodeString (xmlnode-nodevalue) , -(surfaceScale) /UnicodeString (xmlnode-nodename) , -; (surfaceScale) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(blur) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(specularExponent) /UnicodeString (xmlnode-nodename) , -; (specularExponent) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(specularConstant) /UnicodeString (xmlnode-nodename) , -; (specularConstant) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(135) /UnicodeString (xmlnode-nodevalue) , -(azimuth) /UnicodeString (xmlnode-nodename) , -; (azimuth) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(60) /UnicodeString (xmlnode-nodevalue) , -(elevation) /UnicodeString (xmlnode-nodename) , -; (elevation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(light) /UnicodeString (xmlnode-nodevalue) , -(id) /UnicodeString (xmlnode-nodename) , -; (id) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feDistantLight) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feSpecularLighting) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(diffuse) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k3) /UnicodeString (xmlnode-nodename) , -; (k3) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k4) /UnicodeString (xmlnode-nodename) , -; (k4) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1) /UnicodeString (xmlnode-nodevalue) , -(k2) /UnicodeString (xmlnode-nodename) , -; (k2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(0) /UnicodeString (xmlnode-nodevalue) , -(k1) /UnicodeString (xmlnode-nodename) , -; (k1) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(specularOut) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(arithmetic) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(offsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(litPaint) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(fractalNoise) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(noStitch) /UnicodeString (xmlnode-nodevalue) , -(stitchTiles) /UnicodeString (xmlnode-nodename) , -; (stitchTiles) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.05) /UnicodeString (xmlnode-nodevalue) , -(baseFrequency) /UnicodeString (xmlnode-nodename) , -; (baseFrequency) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(10) /UnicodeString (xmlnode-nodevalue) , -(numOctaves) /UnicodeString (xmlnode-nodename) , -; (numOctaves) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feTurbulence) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1) /UnicodeString (xmlnode-nodevalue) , -(values) /UnicodeString (xmlnode-nodename) , -; (values) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Turbulence) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(matrix) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feColorMatrix) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(4) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; -endstream endobj 34 0 obj <>stream -(xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-5) /UnicodeString (xmlnode-nodevalue) , -(dy) /UnicodeString (xmlnode-nodename) , -; (dy) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(-4) /UnicodeString (xmlnode-nodevalue) , -(dx) /UnicodeString (xmlnode-nodename) , -; (dx) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(BlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feOffset) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(OffsetBlurredAlpha) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(1.5) /UnicodeString (xmlnode-nodevalue) , -(stdDeviation) /UnicodeString (xmlnode-nodename) , -; (stdDeviation) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompBlurTurb2) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feGaussianBlur) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(Grayscale) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(2 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncR) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.7 0 ) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncG) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(.1 0) /UnicodeString (xmlnode-nodevalue) , -(tableValues) /UnicodeString (xmlnode-nodename) , -; (tableValues) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(table) /UnicodeString (xmlnode-nodevalue) , -(type) /UnicodeString (xmlnode-nodename) , -; (type) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feFuncB) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComponentTransfer) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(SourceGraphic) /UnicodeString (xmlnode-nodevalue) , -(in2) /UnicodeString (xmlnode-nodename) , -; (in2) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(in) /UnicodeString (xmlnode-nodevalue) , -(operator) /UnicodeString (xmlnode-nodename) , -; (operator) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompXferFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feComposite) /UnicodeString (xmlnode-nodename) , -; , -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(MergeAll) /UnicodeString (xmlnode-nodevalue) , -(result) /UnicodeString (xmlnode-nodename) , -; (result) , -; (xmlnode-attributes) , -/Array : -/XMLNode : -/Dictionary : -/XMLNode : -/Dictionary : -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -2 /Int (xmlnode-nodetype) , -(CompSourceFire) /UnicodeString (xmlnode-nodevalue) , -(in) /UnicodeString (xmlnode-nodename) , -; (in) , -; (xmlnode-attributes) , -/Array : -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMergeNode) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(feMerge) /UnicodeString (xmlnode-nodename) , -; , -; (xmlnode-children) , -1 /Int (xmlnode-nodetype) , - /String (xmlnode-nodevalue) , -(filter) /UnicodeString (xmlnode-nodename) , -; /Def ; -%AI10_EndSVGFilter -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI14_BeginSymbol -(Button) 0 A -0 Xw -u -*u -1 D -0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -0 g -28.0005 -11 m -28 -11 L --28 -11 L --30.21 -11 -32 -9.20898 -32 -7 C --32 7 L --32 9.20801 -30.21 10.999 -28 11 C -28 11 L -28.0005 11 L -30.2085 11 32 9.20898 32 7 C -32 -7 L -32 -9.20898 30.2085 -11 28.0005 -11 C -f -0 D -31 7 m -31 8.6582 29.6563 10 28.0005 10 C -28 10 L --28 10 L --29.6572 9.99902 -31 8.65625 -31 7 C --31 -7 L --31 -8.65527 -29.6572 -10 -28 -10 C -28 -10 L -28.0005 -10 L -29.6563 -10 31 -8.65625 31 -7 C -31 7 L -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg -0 -22 -68 0 -7657 7702 Xm -0 -25 -68 0 -7657 7727 Bc -0 -22 -68 0 -7657 7702 Bm -0 -25 -68 0 -7657 7680 Bc -f -0 BB -*U -9 0.85 0 0 0 Xy -28.0005 -10 m -28 -10 L -28 -10 L --28 -10 L --28 -10 L --29.6572 -10 -31 -8.65527 -31 -7 C --31 7 L --31 8.65625 -29.6572 9.99902 -28 10 C --28 10 L -28 10 L -28 10 L -28.0005 10 l -29.6563 10 31 8.6582 31 7 C -31 -7 L -31 -8.65625 29.6563 -10 28.0005 -10 c -Bb -1 (Unnamed gradient 3) 0 0 -90 1 1 0 0 1 0 0 1 Bg -0 -20 -66 0 -7658 7701 Xm -0 -23 -66 0 -7658 7724 Bc -0 -20 -66 0 -7658 7701 Bm -0 -23 -66 0 -7658 7681 Bc -f -0 BB -U -%_/ArtDictionary : -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_4 60 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(ComboBox) 0 A -0 Xw -u -u -0 O -9 0.7 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -6.5 -10 m -6.5 -10 L --10.5 -10 L --10.5 10 L -6.5 10 L -6.5 10 L -8.15625 10 9.5 8.6582 9.5 7 C -9.5 -7 L -9.5 -8.65625 8.15625 -10 6.5 -10 C -Bb -1 (Unnamed gradient 1) 0 0 -90 1 1 0 0 1 0 0 1 Bg -0 -20 -24 0 -7679.5 7701 Xm -0 -23.5 -24 0 -7679.5 7724.5 Bc -0 -20 -24 0 -7679.5 7701 Bm -0 -23.5 -24 0 -7679.5 7681 Bc -f -0 BB -0 1 0 0 0 Xy -6.5 -11 m -6.5 -11 L --10.5 -11 L --10.5 -10 L -6.5 -10 L -6.5 -10 L -8.15625 -10 9.5 -8.65625 9.5 -7 C -9.5 7 L -9.5 8.6582 8.15625 10 6.5 10 C -6.5 10 L --9.5 10 L --10.5 10 L --10.5 11 L -6.5 11 L -6.5 11 L -8.70898 11 10.5 9.20898 10.5 7 C -10.5 -7 L -10.5 -9.20898 8.70898 -11 6.5 -11 C -Bb -1 (Unnamed gradient 2) 0 0 -90 1 1 0 0 1 0 0 1 Bg -0 -22 -25 0 -7678.5 7702 Xm -0 -25 -25 0 -7678.5 7727 Bc -0 -22 -25 0 -7678.5 7702 Bm -0 -25 -25 0 -7678.5 7680 Bc -f -0 BB -U -9 () XW -0.694331 0.632349 0.621027 0.583551 0.2 0.2 0.2 Xa --3.5 -2 m -2.5 -2 L --0.5 2 l --3.5 -2 L -f -U -%_/ArtDictionary : -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_0 17 18 4 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(Search) 0 A -0 Xw -u -1 Ap -0 O -1 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -31 21.5322 m -31 24.0166 17.1211 26.0303 0 26.0303 c --17.1191 26.0303 -31 24.0166 -31 21.5322 c --31 19.0459 -17.1191 17.0303 0 17.0303 c -17.1211 17.0303 31 19.0459 31 21.5322 c -Bb -0 0 0 0 Bh -1 (Unnamed gradient 17) 0 0 0 1 1.4762 0 0 0.2143 -3789.1475 6144.7451 1 Bg -30.9991 0 0 -4.50014 -7691 7669.4697 Bm -f -0 BB -%_/ArtDictionary : -%_/Dictionary : /NotRecorded , -%_1.4762 0 0 0.2143 -3789.1475 6144.7451 /RealMatrix -%_ (CAIGradientTformMatrix) , -%_; (Adobe_AI9_ArtStyle_Dictionary) , -%_; -%_ -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 17) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -6 () XW -u -0 Ap -0 1 0 0 0 Xy -10 M -18.4502 21.9706 m --18.7514 21.9706 -19.0387 21.8438 -19.2384 21.6228 C --23.965 16.396 L --24.1564 16.1854 -24.2537 15.9123 -24.2398 15.6264 c --24.2259 15.3403 -24.1025 15.0776 -23.8923 14.8867 C --10.655 2.8613 L --10.4594 2.68388 -10.205 2.58601 -9.93892 2.58601 c --9.63749 2.58601 -9.35004 2.7128 -9.15027 2.93386 C --4.42351 8.15868 L --4.23263 8.36885 -4.13573 8.64198 -4.15001 8.92848 c --4.16429 9.21497 -4.28761 9.47757 -4.49724 9.66792 C --17.7366 21.6953 L --17.9317 21.873 -18.1849 21.9706 -18.4502 21.9706 C -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -18.1731 0 0 -18.1731 -7708.2182 7666.1729 Bm -f -0 BB -u -*u -0.481758 0.338201 0.310307 0.006165 0.54902 0.596078 0.627451 Xa --9.93896 3.08594 m --9.84473 3.08594 -9.66504 3.10986 -9.521 3.26953 C --4.79297 8.49561 L --4.65771 8.64453 -4.64502 8.81494 -4.64941 8.90381 C --4.65723 9.05713 -4.72217 9.19678 -4.8335 9.29785 C --18.0737 21.3262 L --18.1763 21.4194 -18.3096 21.4707 -18.4502 21.4707 C --18.5444 21.4707 -18.7236 21.4468 -18.8677 21.2871 C --23.5957 16.0591 L --23.8022 15.8315 -23.7842 15.4639 -23.5562 15.2568 C --10.3193 3.23193 L --10.2158 3.1377 -10.0806 3.08594 -9.93896 3.08594 C -F -1 D --9.93896 2.08594 m --10.3145 2.08594 -10.6919 2.21973 -10.9912 2.49121 C --24.2285 14.5166 L --24.8672 15.0967 -24.916 16.0928 -24.3359 16.7314 C --19.6094 21.958 L --19.3022 22.2979 -18.877 22.4707 -18.4502 22.4707 C --18.0747 22.4707 -17.6982 22.3369 -17.4004 22.0654 C --4.16113 10.0381 L --3.52441 9.45996 -3.47266 8.46191 -4.05273 7.82324 C --8.7793 2.59863 L --9.08643 2.25879 -9.51172 2.08594 -9.93896 2.08594 C --9.93896 2.08594 L -f -*U -U -0 0 Xd -6 () XW -U -0 0 Xd -6 () XW -%_0 D -%_-24.3359 16.7314 m -%_-24.916 16.0928 -24.8672 15.0967 -24.2285 14.5166 c -%_-10.9912 2.49121 l -%_-10.3516 1.91113 -9.35645 1.95996 -8.7793 2.59863 c -%_-4.05273 7.82324 l -%_-3.47266 8.46191 -3.52441 9.45996 -4.16113 10.0381 c -%_-17.4004 22.0654 l -%_-18.0371 22.6455 -19.0322 22.5967 -19.6094 21.958 c -%_-24.3359 16.7314 l -%_n -1 (Anon) XW -*u -0 O -0 R -0.481758 0.338201 0.310307 0.006165 0.54902 0.596078 0.627451 XA -4 M 0 g -7.40234 -25.5303 m -9.28125 -25.5303 11.1943 -25.2197 13.0703 -24.5713 C -22.1172 -21.4404 26.9102 -11.5713 23.7832 -2.52441 C -21.3018 4.64551 14.5879 9.14551 7.40234 9.14551 C -5.52344 9.14551 3.61328 8.83496 1.73438 8.18652 C --7.3125 5.05762 -12.1084 -4.81348 -8.97852 -13.8584 C --6.49707 -21.0283 0.219727 -25.5303 7.40234 -25.5303 C -B -1 D -7.40234 -20.374 m -2.21582 -20.374 -2.40918 -17.0791 -4.1084 -12.1729 C --5.1709 -9.09863 -4.97363 -5.7959 -3.55176 -2.86816 C --2.12988 0.055664 0.34668 2.25293 3.42188 3.31738 C -4.71191 3.76465 6.05176 3.99121 7.40234 3.99121 C -12.5889 3.99121 17.2139 0.696289 18.9131 -4.20801 C -19.9756 -7.28223 19.7783 -10.5869 18.3564 -13.5127 C -16.9346 -16.4404 14.458 -18.6377 11.3857 -19.7002 C -11.3857 -19.7002 L -10.0898 -20.1475 8.75 -20.374 7.40234 -20.374 C -7.40234 -20.374 L -Bb -0 0 0 0 Bh -1 (Unnamed gradient 28) 0.007548 0.433959 0 1.40083 1 0 0 1 0 0 1 Bg -17.0658 0 0 -17.0658 -7683.3365 7684.1445 Bm -b -2 BB -*U -u -0 D -10 M -8.90137 7.71973 m --8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C --9.96973 4.26465 L --22.5664 15.708 L --20.3691 18.1377 L --8.90137 7.71973 L -Bb -1 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -17.6244 -20.6243 -16.0703 -13.7328 -7710.499 7701.1624 Xm -33.9039 -39.6748 -16.0703 -13.7328 -7744.4029 7740.8372 Bc -17.6244 -20.6243 -16.0703 -13.7328 -7710.499 7701.1624 Bm -33.9039 -39.6748 -16.0703 -13.7328 -7692.8746 7680.5381 Bc -f -0 BB -U -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-8.90137 7.71973 m -%_-8.35059 7.21973 -7.53711 7.19043 -6.95215 7.59863 C -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-20.3691 18.1377 L -%_-8.90137 7.71973 L -%_n -%_/ArtDictionary : -%_0 /Int (AI10 compound shape mode) , -%_; -%_ -1 (Anon 437) XW -0 O -4 M 12.5801 -23.1553 m -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.3125 -8.30762 -8.32813 -2.95605 -5.40723 1.08691 C --5.00293 -0.069336 -4.43066 -1.18066 -3.72559 -2.23926 C --3.80273 -2.38379 -3.88965 -2.52051 -3.96191 -2.66895 c --5.43652 -5.70605 -5.6416 -9.13379 -4.53906 -12.3232 c --2.77637 -17.4111 2.02148 -20.8291 7.40234 -20.8291 c -8.80078 -20.8291 10.1904 -20.5947 11.5352 -20.1299 c -14.7217 -19.0283 17.291 -16.749 18.7666 -13.7119 c -19.0146 -13.2021 19.2129 -12.6787 19.3887 -12.1494 C -19.7041 -12.1279 20.0215 -12.1143 20.3359 -12.0811 c -21.1885 -11.9932 22.0146 -11.8623 22.8184 -11.7021 C -21.6367 -16.8506 17.9277 -21.3037 12.5801 -23.1553 c -Bb -1 (Unnamed gradient 7) -0.837511 0 -63.554 2.1927 1 0 0 1 0 0 1 Bg -19.0978 -38.3948 -33.1435 -16.4857 -7681.2894 7736.3181 Xm -20.434 -41.0812 -33.1435 -16.4857 -7701.7234 7777.3992 Bc -19.0978 -38.3948 -33.1435 -16.4857 -7681.2894 7736.3181 Bm -20.434 -41.0812 -33.1435 -16.4857 -7662.1917 7697.9233 Bc -f -0 BB --6.4707 -11.915 m --4.26367 -18.292 1.75 -22.5752 8.49316 -22.5752 c -10.251 -22.5752 11.9922 -22.2822 13.6709 -21.7021 c -16.4521 -20.7393 18.7813 -19.0635 20.5557 -16.9619 C -18.7041 -19.7471 15.9766 -21.9795 12.5801 -23.1553 c -10.9014 -23.7354 9.16016 -24.0283 7.40234 -24.0283 c -0.65918 -24.0283 -5.35449 -19.7451 -7.56152 -13.3682 c --9.45313 -7.90137 -8.14941 -2.10254 -4.66309 2.02637 C --7.30762 -1.9502 -8.14941 -7.06348 -6.4707 -11.915 c -Bb -1 (Unnamed gradient 7) -0.284451 0 -62.8867 1.31311 1 0 0 1 0 0 1 Bg -11.6282 -22.7105 -32.3312 -16.5542 -7677.5737 7726.2744 Xm -13.8263 -27.0035 -32.3312 -16.5542 -7691.4001 7753.278 Bc -11.6282 -22.7105 -32.3312 -16.5542 -7677.5737 7726.2744 Bm -13.8263 -27.0035 -32.3312 -16.5542 -7665.9456 7703.564 Bc -f -0 BB -u -0 1 0 0 0 Xy -10 M -9.12402 5.19824 m --9.96973 4.26465 L --22.5664 15.708 L --21.7207 16.6436 L --9.12402 5.19824 L -Bb -1 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -3.53784 -7.91375 -18.7709 -8.3915 -7699.1193 7688.4549 Xm -11.3559 -25.4018 -18.7709 -8.3915 -7710.4752 7713.8567 Bc -3.53784 -7.91375 -18.7709 -8.3915 -7699.1193 7688.4549 Bm -11.3559 -25.4018 -18.7709 -8.3915 -7695.5815 7680.5411 Bc -f -0 BB -U -2 1 0 0 0 Xy -0 0 Xd -6 () XW -%_-9.12402 5.19824 m -%_-9.96973 4.26465 L -%_-22.5664 15.708 L -%_-21.7207 16.6436 L -%_-9.12402 5.19824 L -%_n -1 (Anon 438) XW -U -%_/ArtDictionary : -%_0 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_15.5 46.5 39.0454 13.0151 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(TextArea) 0 A -0 Xw -u -1 Ap -0 R -0.687221 0.167544 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 0.991358 w 4 M []0 d 0 XR -77.5 45.5 m --77.5 45.5 L --77.5 -45.5 L -77.5 -45.5 L -77.5 45.5 L -s -0 0.6 0 0 0 Xy -1.00864 w 78.5 46.5 m --78.5 46.5 L --78.5 -46.5 L -78.5 -46.5 L -78.5 46.5 L -s -U -%_/ArtDictionary : -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_2.0811 156.0811 91.4609 2.4609 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI14_BeginSymbol -(TextInput) 0 A -0 Xw -u -0 Ap -0 R -0.687221 0.167544 0 0 0.2 0.662745 0.882353 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -77.5 11.5 m --77.5 11.5 L --77.5 -11.5 L -77.5 -11.5 L -77.5 11.5 L -s -0 0.6 0 0 0 Xy -78.5 12.5 m --78.5 12.5 L --78.5 -12.5 L -78.5 -12.5 L -78.5 12.5 L -s -U -%_/ArtDictionary : -%_1 /Bool (AI13PatternEnableGuides) , -%_2 /Int (AI13PatternExportType) , -%_0 /Bool (AI15PixelPerfectSymbolEnablekey) , -%_1.7002 155.7002 24 2 0 0 /RealMatrix -%_ (AI13Pattern9SliceScalingGridKey) , -%_5 /Int (AI13PatternRegistrationType) , -%_; -%_ -9 () XW -%AI10_EndSymbol -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Brush Manager Order) -(Adobe Brush Manager Order) -( Adobe Calligraphic Brush Tool/ 3 pt. Round/ Adobe Calligraphi) - -(c Brush Tool/ 10 pt. Round/ Adobe Calligraphic Brush Tool/ 3 p) - -(t. Oval/ Adobe Calligraphic Brush Tool/ Touch Calligraphic Bru) - -(sh/ Adobe ArtOnPath Brush Tool/ Charcoal - Feather/ Adobe dBru) - -(sh Brush Tool/ Stippler/) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe dBrush Brush Tool) -(Stippler) -(0 4 0.75 0.75 0.33 0.75 1 3 AI_BristleBrushLibary_CS5 02_Round) - -(_Blunt) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe ArtOnPath Brush Tool) -(Charcoal - Feather) -(2 / Unnamed 6/ / / / / 0 1 / 1 1 1 0 1 0 0 0 1 1 0 0 0 0 1) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(10 pt. Round) -(1 10 10 100 100 0 0 1 0 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(3 pt. Oval) -(1 3 3 26 74 15 15 0 1 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(3 pt. Round) -(1 3 3 100 100 0 0 0 0 0 0) . -%AI8_EndPluginObject -%AI8_BeginPluginObject -(Adobe Calligraphic Brush Tool) -(Touch Calligraphic Brush) -(1 12 12 100 100 0 0 0 0 0 0) . -%AI8_EndPluginObject -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyles -/KnownStyle : -(Anon) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Stroke Offset Live Effect) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 R -0.481758 0.338201 0.310307 0.006165 0.54902 0.596078 0.627451 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 4 M []0 d 0 XR -1 0 Xd -/Def ; - (StrokeStyle) , -(Inside) /String (DisplayString) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -0 0 0 0 Bh -2 (Unnamed gradient 28) -0.15047 0.64736 0 1.9211 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 437) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Stroke Offset Live Effect) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -(Inside) /String (DisplayString) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -3.81729 0 -49.4846 6.03541 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Anon 438) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Adobe Stroke Offset) 1 0 /Filter , -1 /Visible , -(Illustrator.exe) /PluginFileName , -(Stroke Offset Live Effect) /Title , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -(Inside) /String (DisplayString) , -1 /Bool (StrokeOffsetInside) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -Bb -2 (Unnamed gradient 7) -0.125225 0 -65.913 1.33255 1 0 0 1 0 0 1 Bg -0 BB -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 2 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -(Jive_GS) /Name , -/ActiveStyle : -/CompoundFilter : -(Chain Style Filter) 0 0 /Filter , -1 /Visible , -/CompoundFilter : -(Stack Style Filter) 0 0 /Filter , -1 /Visible , -/BasicFilter : -(Stroke Style Filter) 0 0 /Filter , -1 /Visible , -2 /FillOrStroke , -/Dictionary : /NotRecorded , -/StrokeStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 0 Xd -/Def ; - (StrokeStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Conduit Filter) 0 0 /Filter , -1 /Visible , -; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -(Jive) 0 0 1 1 0 0 0 0 0 [0 1.47 -1.47 0 3311.7441 18750.7109] p -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -/BasicFilter : -(Fill Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -0 /Bool (UseEvenOdd) , -/FillStyle : 0 O -0.330419 0.068879 0.056794 0 0.65098 0.815686 0.894118 Xa -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -0 1 Xd -/Def ; - (FillStyle) , -; /Dict ; - /Part , -; - /Part , -/BasicFilter : -(Blend Style Filter) 0 0 /Filter , -1 /Visible , -/Dictionary : /NotRecorded , -/BlendStyle : 0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -/Def ; - (BlendStyle) , -; /Dict ; - /Part , -; - -/Execution ; - /Def ; -/KnownStyle : -([Default]) /Name , -/SimpleStyle : -0 O -0 0 0 0 1 1 1 Xa -0 R -0.749721 0.679194 0.670497 0.901457 0 0 0 XA -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -1 1 Xd -/Paint ; - /Def ; -%AI9_EndArtStyles -%AI5_End_NonPrinting-- -%AI5_BeginPalette -0 0 Pb -0.749721 0.679194 0.670497 0.901457 0 0 0 ([Registration]) 0 1 Xz -([Registration]) -Pc -0 0 0 0 1 1 1 Xa -(White) -Pc -0.749721 0.679194 0.670497 0.901457 0 0 0 Xa -(Black) -Pc -0 0.993286 1 0 1 0 0 Xa -(RGB Red) -Pc -0.06183 0 0.965484 0 1 1 0 Xa -(RGB Yellow) -Pc -0.626581 0 1 0 0 1 0 Xa -(RGB Green) -Pc -0.51809 0 0.125673 0 0 1 1 Xa -(RGB Cyan) -Pc -0.883848 0.768521 0 0 0 0 1 Xa -(RGB Blue) -Pc -0.271061 0.816037 0 0 1 0 1 Xa -(RGB Magenta) -Pc -0.168917 0.979614 0.927855 0.067292 0.756863 0.152941 0.176471 Xa -(R=193 G=39 B=45) -Pc -0.00296 0.992767 0.972076 0.000885 0.929412 0.109804 0.141176 Xa -(R=237 G=28 B=36) -Pc -0 0.79913 0.96704 0.000122 0.945098 0.352941 0.141176 Xa -(R=241 G=90 B=36) -Pc -0.000214 0.500877 0.986084 0 0.968627 0.576471 0.117647 Xa -(R=247 G=147 B=30) -Pc -0 0.348516 0.872618 0 0.984314 0.690196 0.231373 Xa -(R=251 G=176 B=59) -Pc -0.045472 0 0.932189 0 0.988235 0.933333 0.129412 Xa -(R=252 G=238 B=33) -Pc -0.188754 0 0.984253 0 0.85098 0.878431 0.129412 Xa -(R=217 G=224 B=33) -Pc -0.500328 0.001617 0.993042 0 0.54902 0.776471 0.247059 Xa -(R=140 G=198 B=63) -Pc -0.746639 0 0.997681 0.000092 0.223529 0.709804 0.290196 Xa -(R=57 G=181 B=74) -Pc -0.864073 0.176333 1 0.038239 0 0.572549 0.270588 Xa -(R=0 G=146 B=69) -Pc -0.903288 0.334081 0.988586 0.260441 0 0.407843 0.215686 Xa -(R=0 G=104 B=55) -Pc -0.762295 0 0.749203 0 0.133333 0.709804 0.45098 Xa -(R=34 G=181 B=115) -Pc -0.784085 0.09073 0.457221 0.000275 0 0.662745 0.615686 Xa -(R=0 G=169 B=157) -Pc -0.6972 0.14786 0 0 0.160784 0.670588 0.886275 Xa -(R=41 G=171 B=226) -Pc -0.874876 0.526604 0 0 0 0.443137 0.737255 Xa -(R=0 G=113 B=188) -Pc -0.991974 0.964538 0.03418 0.004913 0.180392 0.192157 0.572549 Xa -(R=46 G=49 B=146) -Pc -1 1 0.261723 0.244419 0.105882 0.078431 0.392157 Xa -(R=27 G=20 B=100) -Pc -0.74554 0.984558 0.009827 0.002289 0.4 0.176471 0.568627 Xa -(R=102 G=45 B=145) -Pc -0.494484 0.992584 0.013214 0.001068 0.576471 0.152941 0.560784 Xa -(R=147 G=39 B=143) -Pc -0.348486 1 0.371649 0.108034 0.619608 0 0.364706 Xa -(R=158 G=0 B=93) -Pc -0.119265 1 0.492561 0.008789 0.831373 0.078431 0.352941 Xa -(R=212 G=20 B=90) -Pc -0 0.970825 0.20383 0 0.929412 0.117647 0.47451 Xa -(R=237 G=30 B=121) -Pc -0.228824 0.273991 0.399542 0 0.780392 0.698039 0.6 Xa -(R=199 G=178 B=153) -Pc -0.398596 0.428931 0.525536 0.068055 0.6 0.52549 0.458824 Xa -(R=153 G=134 B=117) -Pc -0.504417 0.530724 0.609705 0.236027 0.45098 0.388235 0.341176 Xa -(R=115 G=99 B=87) -Pc -0.576074 0.60415 0.637018 0.419196 0.32549 0.278431 0.254902 Xa -(R=83 G=71 B=65) -Pc -0.226596 0.383764 0.6365 0.01181 0.776471 0.611765 0.427451 Xa -(R=198 G=156 B=109) -Pc -0.315404 0.491493 0.741085 0.09897 0.65098 0.486275 0.321569 Xa -(R=166 G=124 B=82) -Pc -0.362432 0.574304 0.839963 0.226139 0.54902 0.384314 0.223529 Xa -(R=140 G=98 B=57) -Pc -0.391638 0.640528 0.932921 0.355779 0.458824 0.298039 0.141176 Xa -(R=117 G=76 B=36) -Pc -0.415747 0.70016 0.970611 0.491493 0.376471 0.219608 0.07451 Xa -(R=96 G=56 B=19) -Pc -0.477089 0.734707 0.837186 0.681422 0.258824 0.129412 0.043137 Xa -(R=66 G=33 B=11) -Pc -Bb -2 (White, Black) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(White, Black) -Pc -Bb -2 (Gold Dust) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Gold Dust) -Pc -Bb -2 (Blue Sky) 0 0 0 1 1 0 0 1 0 0 1 Bg -0 BB -(Blue Sky) -Pc -(Jive) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p -(Jive) -Pc -1 (Cold) 1 Pg -0.558099 0 0.199985 0 0.396078 0.784314 0.815686 Xa -(C=56 M=0 Y=20 K=0) -Pc -0.51107 0.430945 0 0 0.513725 0.545098 0.772549 Xa -(C=51 M=43 Y=0 K=0) -Pc -0.264256 0.41297 0 0 0.729412 0.607843 0.788235 Xa -(C=26 M=41 Y=0 K=0) -Pc -1 (Grays) 1 Pg -0.749721 0.679194 0.670497 0.901457 0 0 0 Xa -(R=0 G=0 B=0) -Pc -0.72607 0.666682 0.65243 0.782345 0.101961 0.101961 0.101961 Xa -(R=26 G=26 B=26) -Pc -0.694331 0.632349 0.621027 0.583551 0.2 0.2 0.2 Xa -(R=51 G=51 B=51) -Pc -0.653956 0.580224 0.5682 0.366552 0.301961 0.301961 0.301961 Xa -(R=77 G=77 B=77) -Pc -0.597711 0.511833 0.507713 0.201297 0.4 0.4 0.4 Xa -(R=102 G=102 B=102) -Pc -0.516197 0.432044 0.432044 0.075471 0.501961 0.501961 0.501961 Xa -(R=128 G=128 B=128) -Pc -0.426154 0.347417 0.353185 0.009857 0.6 0.6 0.6 Xa -(R=153 G=153 B=153) -Pc -0.30695 0.241886 0.247776 0 0.701961 0.701961 0.701961 Xa -(R=179 G=179 B=179) -Pc -0.194675 0.150179 0.156374 0 0.8 0.8 0.8 Xa -(R=204 G=204 B=204) -Pc -0.084993 0.061036 0.066285 0 0.901961 0.901961 0.901961 Xa -(R=230 G=230 B=230) -Pc -0.037079 0.024628 0.024628 0 0.94902 0.94902 0.94902 Xa -(R=242 G=242 B=242) -Pc -PB -%AI5_EndPalette -%AI5_Begin_NonPrinting -Np -%AI9_BeginArtStyleList -([Default]) -(Jive_GS) -%AI9_EndArtStyleList -%AI5_End_NonPrinting-- -%AI5_Begin_NonPrinting -Np -%AI10_BeginSymbolList -(TextArea) -(Button) -(ComboBox) -(TextInput) -(Search) -%AI10_EndSymbolList -%AI5_End_NonPrinting-- -%AI9_BeginDocumentData -%_/Document : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(binding1) /String (xmlnode-nodevalue) , -%_(varSetName) /String (xmlnode-nodename) , -%_; (varSetName) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(none) /String (xmlnode-nodevalue) , -%_(locked) /String (xmlnode-nodename) , -%_; (locked) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variables) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_vars;) /String (xmlnode-nodevalue) , -%_(xmlns:v) /String (xmlnode-nodename) , -%_; (xmlns:v) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_custom;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(v:sampleDataSets) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSet) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(variableSets) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_(&ns_sfw;) /String (xmlnode-nodevalue) , -%_(xmlns) /String (xmlnode-nodename) , -%_; (xmlns) , -%_; (xmlnode-attributes) , -%_/Array : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(slices) /String (xmlnode-nodename) , -%_; , -%_/XMLNode : -%_/Dictionary : -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_1000 /Real (xmlnode-nodevalue) , -%_(width) /String (xmlnode-nodename) , -%_; (width) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_1000 /Real (xmlnode-nodevalue) , -%_(height) /String (xmlnode-nodename) , -%_; (height) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_-1000 /Real (xmlnode-nodevalue) , -%_(y) /String (xmlnode-nodename) , -%_; (y) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_0 /Real (xmlnode-nodevalue) , -%_(x) /String (xmlnode-nodename) , -%_; (x) , -%_/XMLNode : -%_/Dictionary : -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_2 /Int (xmlnode-nodetype) , -%_1 /Bool (xmlnode-nodevalue) , -%_(bottomLeftOrigin) /String (xmlnode-nodename) , -%_; (bottomLeftOrigin) , -%_; (xmlnode-attributes) , -%_/Array : -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sliceSourceBounds) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(sfw) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_1 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(metadata) /String (xmlnode-nodename) , -%_; , -%_; (xmlnode-children) , -%_9 /Int (xmlnode-nodetype) , -%_ /String (xmlnode-nodevalue) , -%_(#document) /String (xmlnode-nodename) , -%_; (#document) , -%_1 /Int (AI9 artboard color) , -%_0 /Bool (AI11 document knockout group) , -%_65535 /Int (AI9 artboard color 1 green) , -%_52428 /Int (AI9 artboard color 2 green) , -%_0 /Bool (AI9 paper simulation) , -%_65535 /Int (AI9 artboard color 1 red) , -%_52428 /Int (AI9 artboard color 2 red) , -%_65535 /Int (AI9 artboard color 1 blue) , -%_2 /Int (AI9 transparency grid size) , -%_52428 /Int (AI9 artboard color 2 blue) , -%_0 /Bool (AI11 document isolate blending) , -%_1 /Bool (AI11 Preserve Text Editability) , -%_16383 /Int (AIDocumentCanvasSize) , -%_0 /Real (BleedLeftValue) , -%_0 /Int (CropAreaActive) , -%_/Array : -%_/Dictionary : -%_0 /Bool (IsArtboardSelected) , -%_1 /Bool (IsArtboardDefaultName) , -%_7691 7691 /RealPoint -%_ (RulerOrigin) , -%_0 /Int (DisplayMark) , -%_(Artboard 1) /UnicodeString (Name) , -%_1 /Real (PAR) , -%_0 0 /RealPointRelToROrigin -%_ (PositionPoint1) , -%_1000 -1000 /RealPointRelToROrigin -%_ (PositionPoint2) , -%_; , -%_; (ArtboardArray) , -%_([Medium Resolution]) /String (AI11 Document Setup Flattener Preset Name) , -%_150 /Real (AI9 Mesh Rasterization Resolution) , -%_300 /Real (AI9 Output Rasterization Resolution) , -%_14 /Int (AI11 Document Setup Language Popup) , -%_/Dictionary : -%_4 /Int (colr) , -%_0 /Bool (alis) , -%_1 /Bool (spot) , -%_72 /Int (dpi.) , -%_36 /Real (padd) , -%_0 /Bool (mask) , -%_; (AI Auto Rasterize) , -%_5 /Real (GlobalRepulsion) , -%_0 /Real (BleedRightValue) , -%_0 /Real (BleedTopValue) , -%_0 /Real (PerspectiveGrid_FloorOffset) , -%_45874 /Int (PerspectiveGrid_FloorGreen) , -%_45 /Real (PerspectiveGrid_LeftFaceAngle) , -%_26214 /Int (PerspectiveGrid_LeftGreen) , -%_6553 /Int (PerspectiveGrid_LeftRed) , -%_0 /Int (PerspectiveGrid_Unit) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_StationPoint) , -%_480 /Real (PerspectiveGrid_ViewingDistance) , -%_580 /Real (PerspectiveGrid_RightExtent) , -%_0 /Real (BleedBottomValue) , -%_1 1 /RealPoint -%_ (PerspectiveGrid_Scale) , -%_2 /Int (PerspectiveGrid_Type) , -%_65535 /Int (PerspectiveGrid_RightRed) , -%_0 /Int (PerspectiveGrid_RightBlue) , -%_580 /Real (PerspectiveGrid_LeftExtent) , -%_2 /Int (kAIParametersWhichProfileKey) , -%_32767 /Int (PerspectiveGrid_FloorBlue) , -%_0 /Bool (kAIParametersCompression) , -%_50 /Real (PerspectiveGrid_RightOpacity) , -%_1 /Int (kAIParametersEmbedProfileKey) , -%_32767 /Int (PerspectiveGrid_RightGreen) , -%_1 /Bool (kAIParametersPDFCompatibility) , -%_45 /Real (PerspectiveGrid_RightFaceAngle) , -%_50 /Real (PerspectiveGrid_LeftOpacity) , -%_1 /Int (AI12_SpotColorMode) , -%_0 /Bool (AI10 flattener outline text) , -%_30 /Real (PerspectiveGrid_CellSize) , -%_0 /Bool (AI16 flattener anti alias) , -%_(14.0.0) /String (kAIFullDocumentVersionStr) , -%_/Dictionary : -%_/Array : -%_; (SelHatDocLocalNamesArray) , -%_/Array : -%_; (SelHatDocInterIDsArray) , -%_; (SelHatDocTableDict) , -%_1 /Bool (AI10 flattener outline strokes) , -%_4 /Int (AI9 Flattening Quality Level) , -%_50 /Real (PerspectiveGrid_FloorOpacity) , -%_15 /Real (PerspectiveGrid_CellCount) , -%_250 /Real (PerspectiveGrid_HorizonHeight) , -%_32767 /Int (PerspectiveGrid_FloorRed) , -%_58981 /Int (PerspectiveGrid_LeftBlue) , -%_0 /Int (PerspectiveGrid_RightPlaneVisibilityState) , -%_0 -500 /RealPoint -%_ (PerspectiveGrid_RelativeFloorVanishingPoint) , -%_1 /Bool (AI10 flattener clip complex regions) , -%_75 /Int (AI10 flattener raster-vector balance) , -%_8431 8316 /RealPoint -%_ (PerspectiveGrid_RightPlaneCellExtent) , -%_1 /Bool (AI10 flattener preserve overprints) , -%_100 /Real (kAIParametersSubsetFontsRatioKey) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_LeftPlaneTopPoint) , -%_7711 8191 /RealPoint -%_ (PerspectiveGrid_LeftVanishingPoint) , -%_8191 7941 /RealPoint -%_ (PerspectiveGrid_RightPlaneTopPoint) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexSecond) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_LeftPlaneBottomPoint) , -%_7951 8316 /RealPoint -%_ (PerspectiveGrid_LeftPlaneCellExtent) , -%_8191 8441 /RealPoint -%_ (PerspectiveGrid_RightPlaneBottomPoint) , -%_0 /Int (PerspectiveGrid_RulerOriginIndexFirst) , -%_8671 8191 /RealPoint -%_ (PerspectiveGrid_RightVanishingPoint) , -%_0 /Int (PerspectiveGrid_FloorPlaneVisibilityState) , -%_0 /Int (PerspectiveGrid_LeftPlaneVisibilityState) , -%_/Dictionary : -%_; (DocumentDict/ExportableAssetsKey) , -%_; /Recorded , -%_/Dictionary : /NotRecorded , -%_75 /Int (AI11 EPS Raster/Vector Balance) , -%_1 /Int (AI11 EPS Overprints) , -%_/Dictionary : /NotRecorded , -%_1 /Int (/attributes/cm.preservecmyk) , -%_0 /Int (/attributes/cm.preserveother) , -%_2 /Int (/attributes/cm.inteint) , -%_1 /Int (/attributes/cm.mode) , -%_(U.S. Web Coated \(SWOP\) v2) /UnicodeString (/attributes/cm.profile) , -%_0 /Int (/attributes/job.bitmapresolution) , -%_1 /Int (/attributes/pgmk.bleedoff.useDocBleeds) , -%_6 /Real (/attributes/pgmk.marksoff.bottom) , -%_0 /Real (/attributes/pgmk.bleedoff.bottom) , -%_() /UnicodeString (/attributes/rdrs.annot) , -%_0 /Int (/attributes/rdrs.func) , -%_1 /Real (/attributes/rdrs.flatteness) , -%_0 /Int (/attributes/rdrs.enabled) , -%_2 /Int (/attributes/xp.suppresswhiteop) , -%_([Medium Resolution]) /UnicodeString (/attributes/xp.name) , -%_0 /Int (/attributes/xp.opdu) , -%_0 /Int (/attributes/xp.opco) , -%_0 /Int (/attributes/xp.opse) , -%_0 /Int (/attributes/xp.antialiasing) , -%_1 /Int (/attributes/xp.convertstroke) , -%_1 /Int (/attributes/xp.clip) , -%_0 /Int (/attributes/xp.converttext) , -%_300 /Int (/attributes/xp.rresolution) , -%_150 /Int (/attributes/xp.gresolution) , -%_75 /Int (/attributes/xp.balance) , -%_1 /Real (/attributes/ps.flatness) , -%_0 /Int (/attributes/ps.setflatness) , -%_0 /Int (/attributes/ps.l1compat) , -%_300 /Real (/attributes/ps.shaderes) , -%_0 /Int (/attributes/ps.contone) , -%_0 /Int (/attributes/ps.compression) , -%_0 /Int (/attributes/ps.negative) , -%_1 /Int (/attributes/ps.binary) , -%_0 /Int (/attributes/fnt.subst) , -%_3 /Int (/attributes/ps.level) , -%_0 /Int (/attributes/fnt.dlprfonts) , -%_6 /Real (/attributes/pgmk.marksoff.right) , -%_1 /Int (/attributes/fnt.dlmode) , -%_6 /Real (/attributes/pgmk.marksoff.top) , -%_0 /Int (/attributes/crd.fliphorz) , -%_ /String (/attributes/rdrs.custom) , -%_0 /Int (/attributes/clr.convertspots) , -%_0 /Int (/attributes/job.printasbitmap) , -%_0 /Int (/attributes/job.designation) , -%_1 /Int (/attributes/stl.defaultprinter) , -%_0 /Real (/attributes/cppr.woffset) , -%_([Default]) /UnicodeString (/attributes/collectionName) , -%_() /UnicodeString (/attributes/stl.printername) , -%_() /UnicodeString (/attributes/stl.ppdmodelname) , -%_1 /Int (/attributes/stl.defaultppd) , -%_9 /Real (/attributes/ppr.image.top) , -%_() /UnicodeString (/attributes/stl.customppd) , -%_0 /Int (/attributes/ppr.custom) , -%_595.32 /Real (/attributes/ppr.width) , -%_1 /Int (/attributes/ppr.default) , -%_841.92 /Real (/attributes/ppr.height) , -%_586.56 /Real (/attributes/ppr.image.right) , -%_8.64 /Real (/attributes/ppr.image.left) , -%_(Defined by Driver) /UnicodeString (/attributes/ppr.name) , -%_0 /Real (/attributes/cppr.width) , -%_832.68 /Real (/attributes/ppr.image.bottom) , -%_0 /Real (/attributes/cppr.height) , -%_0 /Int (/attributes/cppr.trans) , -%_0 /Real (/attributes/cppr.hoffset) , -%_0 /Int (/attributes/job.printofile) , -%_2 /Int (/attributes/job.printbounds) , -%_() /UnicodeString (/attributes/job.name) , -%_0 /Int (/attributes/clr.mode) , -%_720 /Int (/attributes/crd.orientation) , -%_5 /Int (/attributes/crd.position) , -%_0 /Int (/attributes/clr.overprintblack) , -%_0 /Real (/attributes/crd.org.h) , -%_0 /Real (/attributes/crd.org.v) , -%_100 /Real (/attributes/crd.scale.h) , -%_100 /Real (/attributes/crd.scale.v) , -%_1 /Int (/attributes/crd.sccnst) , -%_0 /Int (/attributes/crd.scplcy) , -%_0 /Int (/attributes/crd.tiling) , -%_0 /Real (/attributes/crd.overlap.v) , -%_0 /Real (/attributes/crd.overlap.h) , -%_0 /Int (/attributes/pgmk.enabled) , -%_0 /Int (/attributes/pgmk.style) , -%_() /UnicodeString (/attributes/pgmk.jobtitle) , -%_() /UnicodeString (/attributes/pgmk.customfile) , -%_0.25 /Real (/attributes/pgmk.deflinewidth) , -%_0 /Int (/attributes/pgmk.bleed) , -%_0 /Int (/attributes/pgmk.crop) , -%_0 /Int (/attributes/pgmk.pageinfo) , -%_0 /Int (/attributes/pgmk.registration) , -%_0 /Int (/attributes/pgmk.colorbars) , -%_0 /Real (/attributes/pgmk.bleedoff.top) , -%_0 /Real (/attributes/pgmk.bleedoff.left) , -%_6 /Real (/attributes/pgmk.marksoff.left) , -%_0 /Real (/attributes/pgmk.bleedoff.right) , -%_; (AI11 Print Attribute Dict) , -%_/Dictionary : /NotRecorded , -%_1 /Int (/attributes/job.printall) , -%_0 /Int (/attributes/job.collate) , -%_0 /Int (/attributes/job.skipblank) , -%_ /String (/attributes/job.pagerange) , -%_() /UnicodeString (/attributes/job.artboardrange) , -%_0 /Int (/attributes/job.reverseorder) , -%_1 /Int (/attributes/job.printallartboards) , -%_; (AI11 Print JobInfo Dict) , -%_1 /Int (LastArtboardID) , -%_150 /Real (AI12 AI Gradient and Mesh Resolution) , -%_300 /Real (AI12 AI Line Art and Text Resolution) , -%_150 /Real (AI11 EPS Gradient and Mesh Resolution) , -%_300 /Real (AI11 EPS Line Art and Text Resolution) , -%_14 /Int (AI11 Document Setup Language Popup) , -%_([Medium Resolution]) /String (AI12 AI Flattener Preset Name) , -%_0 /Bool (AI16 AI Anti Aliasing) , -%_1 /Bool (AI9 no overprint in composite) , -%_1 /Bool (AI12 AI Clip Complex Regions) , -%_75 /Int (AI12 AI Raster/Vector Balance) , -%_0 /Bool (AI16 EPS Anti Aliasing) , -%_1 /Bool (AI11 EPS Clip Complex Regions) , -%_([Medium Resolution]) /String (AI11 EPS Flattener Preset Name) , -%_1 /Bool (AI12 AI Outline Strokes) , -%_1 /Bool (AI11 EPS Outline Strokes) , -%_0 /Bool (AI11 EPS Outline Text) , -%_1 /Int (AI12 AI Overprints) , -%_0 /Bool (AI12 AI Outline Text) , -%_1 /Bool (SnapWhileScaling) , -%_1 /Bool (SnapWhileMoving_segments) , -%_1 /Bool (SnapWhileMoving_paths) , -%_0 /Bool (AI15 Document PixelPerfect) , -%_0 /Bool (AISaveMultipleArtboards) , -%_0 /Bool (PerspectiveGrid_ShowHide) , -%_/Dictionary : /NotRecorded , -%_0 /Int (/attributes/inklst.count) , -%_; (AI11 Ink List Dict) , -%_1 /Int (AI9 Document Setup panel) , -%_(Adobe PDF Preset.joboptions) /String (AI12 Job Options Name) , -%_7789 /Int (AI12 Job Options Size) , -%_1 /Bool (PerspectiveGrid_Snap) , -%_/Binary : /ASCII85Decode , -%4?O&[+M4?:L\'M@ruc7FE2M8%144#00sDjDg,0$@;^.*@<,ps@sK2/ -%@;L!r%144#00sJtBgHQL@<4eSCi=>cD..'gF!,('Cia.s$6UHE6#LdY6#:7DF%:7ZGtDj]B4Z-,AmoLsAISth+>6#uFD4$WBjl'W -%Df0JbD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC.VCi=>cD..'gF!,('Cia.s$6UHE6$79f7VQ[\ATC:]@6#sC^g^o+>6&qDIdI!B-8j$AS-#n$6UHE6Xadu -%9j(+cEc5Q(Ch4_;VJ#h;ccak>VJ#i+EfLh%144#010/a7ri$`:i^JdBl%?'-r+\uALS&q+7Co^+n%,`+>6*#Ci=>[6W6Qn@:s.>Bk)6-4?O&[+F<4+>E,2D?g=%144#+7Co^+OB5+AThctAP$cMAT23u -%A7]Y#6Z6dZEX`?u+>6*#Ci=>cD..'g6$79f7VQ[\ATC^kEaa'$B6bUQ8l.rH%144#010YoDfSEd@:s.>AT2a)+>#;W$6UHE6Z6dZ -%E_1+VB4XJF@rrhU4:MW?+OB5+n%,`+6bo@;Tt"ATJtu%144#+F<4+6*#Ci=>cD..'g6uR9eF(&p)Ch6RZEb0<*Derr,0eP=;0JG0i$6UHE6Z6dZE_1+VB4XJLGA_J1D/a<&<-`Fo+>6K.DIj7a -%+6*#Ci=>cD..'g;IsofCisi6 -%Df-[P2)#IH+u7F_)!h+6*&DfA3e@6*&DfAEhDJr*`@:s.m+EVXHAISth+>6,]6W.K7DfTr6DJ)XSG%GJ40F\@3+>6,oAmoguFAc[fA7]dqDJ)OYFCf?3+>6,oAmogu -%F:AR"+>6,oF(96)E-,f4DBM&(%144#+0JGF@0JGCB0JG790JGFB -%0JGCE0JGCB0JG790JGCA0JGCB0JGCC0JGC>0JGFC0JGCP0JGFB0JG790JGFA0JGCB0JGFB0JGFB0JGCF0JGCR0JGCD0JGFA0JG79 -%0JGFE0JGCE0JGCB0JGCR0JG790JGFA0JGC>0JGFD0JGCF0JGCR0JGCD0JG790JGC>0JGCR0JG790JG=D0JGCP0JGCP0JGFC0JGFA -%0JGFB0JGF@0JGC>0JGFB0JGCS0JGF@0JG790JGCC0JGCF0JGCP0JGCB0JG790JGC>0JGFA0JG790JGC>0JGCR0JG790JG=<0JGCA -%0JGCS0JGC?0JGCB0JG790JG@<0JG=?0JG=A0JG790JGCA0JGCS0JGC@0JGFC0JGCQ0JGCB0JGCR0JGFB0JG7N0JG790JG@A0JGFA -%0JGCB0JG790JGFB0JGCE0JGCB0JGFA0JGCB0JG790JGFA0JGCB0JGFB0JGFB0JGCF0JGCR0JGCD0JGFA0JG790JGFE0JGCE0JGCB -%0JGCR0JG790JGFG0JGCS0JGFC0JG790JGF>0JGCP0JGC>0JGCR0JG790JGCS0JGCR0JG790JGCB0JGCA0JGCF0JGFB0JGCF0JGCR -%0JGCD0JG790JGFB0JGCE0JGCB0JG790JGCC0JGCF0JGCP0JGCB0JG790JGC>0JGCD0JGC>0JGCF0JGCR0JG790JGCF0JGCR0JG79 -%0JG=D0JGCP0JGCP0JGFC0JGFA0JGFB0JGF@0JGC>0JGFB0JGCS0JGF@0JG7L0JG790JGCS0JGF@0JG790JGFE0JGCE0JGCB0JGCR -%0JG790JGFG0JGCS0JGFC0JG790JGCR0JGCB0JGCB0JGCA0JG790JGFB0JGCS0JG790JGF>0JGCP0JGC>0JGC@0JGCB0JG790JGCF -%0JGFB0JG790JGCF0JGCR0JG790JGC>0JG790JGCP0JGC>0JGFG0JGCS0JGFC0JGFB0JG790JGC>0JGF>0JGF>0JGCP0JGCF0JGC@ -%0JGC>0JGFB0JGCF0JGCS0JGCR0JG790JGFA0JGFC0JGC@0JGCE0JG790JGC>0JGFA0JG790JG=D0JGCR0JG=?0JGCB0JGFA0JGCF -%0JGCD0JGCR0JG7L0JG790JGCS0JGF@0JG790JGFE0JGCE0JGCB0JGCR0JG790JGFB0JGCE0JGCB0JG790JGCC0JGCF0JGCR0JGC> -%0JGCP0JG790JGFC0JGFA0JGCB0JG790JGCS0JGCC0JG790JGFB0JGCE0JGCB0JG790JGCC0JGCF0JGCP0JGCB0JG790JGCF0JGFA -%0JG790JGFC0JGCR0JGCO0JGCR0JGCS0JGFE0JGCR0JG7N4q.iA+?hsu$6UHE6tLIO@rt%RASu%"+EVXHAISth+>6,oFCes(6ZmEm -%ATJtJ/ho%60JEqC+60#@V'(B -%DdlL]FD5Z2F!,('Cia.s$6UHE7;ZLFA5@/UDH(n#AKYSnCia.s$6UHE7;Za\6rQHS@<-7"DJ+#5AmoLsAISth+>60$@rGmh6Z6dZ -%E_1+VB4Z-,FE2M8%144#01BbgDe*ELEaa5bD..'gF!,RFF_)!h+#;W -%$6UHE7ri$`5snRBD..'g6tp.Q+?Vaq$6UH6+>68a@;Tt"ATJtu%144#+F<4+6S]@:OCtEZd%g2`OB5 -%+n%,`+?hsu$6UHE7ri$`8SqmKAO1H\DanGWFCfJkFE1f3AS69201o&07h#eJ+>66*@AT2a)+>#;W$6UHE7ri$` -%8SqmKAOL6BF7Co^+OB5+F<4+66*@Dg-)?@;Tt"AQ3qoAKWX$Df0+q$6UHE -%7ri$`8SqmKAO^BMFCfJ801KbdFCdmY@rGmh%144#01U%kGtDj]B4XeODFADeDKB6'E,9)RAT2a)+>OB5+9DBLYk0F\@3+>66*@6T7@;KY"Gp"h!%144#+6].Ch6[^A9;K-1,Us!$6UHT4q.iA+>6>`77T*e0JH";@6].Ch6[^A9;K-1,Us!$6UHT4q.iA+>6>`77T*e -%0JH";@Bk)6-4?O&[+G__$6UH6+>6].Ch6.KBkM+$+>Pf4%144#+Pf4%144# -%5!BD_+GQ(%144#026A&Db4eSB4XJBE-,b9/MR\A+6A1/MR\A+6H- -%DJr*`@:s.>Dg-)?@;Tt"AQ3qoAKWX$Df0+q$6UHE9lFof8SqmKAO^BMFCfJ801KbdFCdmY@rGmh%144#026A&Db4eSB4XeODGk%e -%DesQ6M`%144#026A&Db4eSB4XtPF)Pl;FD5Z2+>Y]*%144# -%02>qmATMg!@q?ce%144#+6N0FD5T+H=\42 -%@;L!r%144#02H\'ATCOSD.Rd-@:Nki+Bo9^+6<(@r-9uAQ*DfB-:epCia.s$6UH6+:fAKK@;L!r%144#+pVF^f)s@rrhA.1HV,+6H#FCA]gFCA-_ -%FDPM2-n,T4+=63+h$6UH6+=63+n%,`+6N0ASt[iDf&Hl85r;W7W30d;e^Ph+D,%uF(Gdf+JmCia.s$6UH6+6GtBl6X`DJ=32E^Ob]DfTn.$6UH6+6`9AOocp9N5_JCh5nR9kAETA79Rg+EVXHAISth+6#kA3t*DARnMDEbf_=AmoLsAISth -%+6#kA4(9ODfS0QEcW@8@;L!r%144#+6#kA5ZuO9jr'XF!,('Cia.s$6UH6+U4EA5?fLF(KG9>7Co^+=63 -%+6K.6Z6jcATDj+Df-!k+:O5D..'gF!,RF -%F_)!h+pdX -%D..I#F!,('Cia.s$6UH6+8Ch[d&F!,('Cia.s$6UH6+sZ9+qm -%ATMg!@q?ce%144#+6W2D..6`9AOLHHF_t]-FAR!rAnc'm%144#+6`9AOLHHF_t]-FAR!rAnc'm%144#+U4EA0>u7F_)!h+U4EA3t3Z<,Y`VBl-1TGY_p`F(KG9>7Co^+=63+6PZ7T`E(<,u\i6>q*;EcQ)=+EVXHAISth+>6PZ7T`H/FDuAE6Z6jQBln'-DBL>V%144# -%02P&+=AO']E-67iDf0*"FD5Z28RuCMFD5?$ATAnA.1HV,+>6PZ7T`H/FDuAE8T&W]DKJ]qDe<^"AKWBM%144#02P&+=Ai^CBleB: -%GtqdbAKWBM%144#02P&+=ArdQ6>U4EA3t3Z<,YKBA8,I=Dg3CHEckq&$6UHE:ddcT<,uDdE+NQ&01KAdF(Gdf+=63+n%,`+>6Q"EcYe[;aWojD/Ej%FE8RHEckq& -%$6UHE:gnBcAOKHa6Z6gYASuU27W3<8Ddu@VAoAf6Eckq&$6UHE:gnBcAP#6V:i^JdBl%@%8T$n6D/Ej%FE8RHEckq&$6UHE:gnEd -%<+p;jF_>A[:dmlGD..'gF!,('Cia.s$6UHE:i^,gATDs*6Z6ph:gn!J+EVXHAISth+>6Q3ATMF'G%F'56VU]V6Q3ATMF'G%F-Z@6W( -%D/XT/%144#03*():i^JjDeF3(+D,%uF(Gdf+ -%_; (AI12 Job Options Data) , -%_/Dictionary : /NotRecorded , -%_([Illustrator Default]) /UnicodeString (/attributes/collectionName) , -%_0 /Int (/attributes/AI11PDF_TrimMarks) , -%_0 /Int (/attributes/AI11PDF_PageInfo) , -%_0 /Real (/attributes/AI11PDF_BleedTop) , -%_0 /Real (/attributes/AI11PDF_BleedBottom) , -%_0 /Int (/attributes/AI11PDF_RegMarks) , -%_1 /Int (/attributes/AI11PDF_CompressArt) , -%_0 /Real (/attributes/AI11PDF_BleedRight) , -%_(These are the default settings when saving an Illustrator file as an Adobe PDF document. Use these settings when you plan on editing the file again in Illustrator, or when you need to place it in a layout application such as InDesign, or when the final use of the file is unknown.) /UnicodeString (/attributes/AI12PDF_Description) , -%_0 /Int (/attributes/AI11PDF_FastWebView) , -%_1 /Int (/attributes/AI11PDF_BleedLink) , -%_1 /Int (/attributes/AI11PDF_Overprint) , -%_0 /Int (/attributes/AI11PDF_ColorBars) , -%_0 /Int (/attributes/AI12PDF_Trapped) , -%_1 /Int (/attributes/AI14PDF_DocBleed) , -%_0 /Real (/attributes/AI11PDF_BleedLeft) , -%_1 /Int (/attributes/AI12PDF_Standard) , -%_300 /Int (/attributes/AI11PDF_MonochromeDownsampleResolution) , -%_1 /Int (/attributes/AI12PDF_OutputIntentProfileNamePolicy) , -%_75 /Int (/attributes/AI10 flattener raster-vector balance) , -%_1 /Int (/attributes/AI11PDF_PreserveIllustratorEditingCapabilities) , -%_150 /Int (/attributes/AI11PDF_ColorDownsampleResolution) , -%_1 /Int (/attributes/AI11PDF_MonochromeDownsampleKind) , -%_300 /Real (/attributes/AI9 Output Rasterization Resolution) , -%_1 /Int (/attributes/AI11PDF_GrayCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkBottom) , -%_256 /Int (/attributes/AI11PDF_ColorTileSize) , -%_0 /Int (/attributes/AI10 flattener outline text) , -%_1 /Int (/attributes/AI10 flattener outline strokes) , -%_1 /Int (/attributes/AI12PDF_ProfileInclusionPolicy) , -%_() /UnicodeString (/attributes/AI12PDF_OutputIntentProfileName) , -%_225 /Int (/attributes/AI11PDF_ColorDownsampleImageAbove) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkTop) , -%_1 /Int (/attributes/AI11PDF_PreserveAcrobatLayers) , -%_4 /Int (/attributes/AI11PDF_MonochromeCompressionKind) , -%_225 /Int (/attributes/AI11PDF_GrayDownsampleImageAbove) , -%_1 /Int (/attributes/AI11PDF_ColorCompressionQuality) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkRight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputConditionIdentifier) , -%_1 /Int (/attributes/AI10 flattener clip complex regions) , -%_150 /Int (/attributes/AI11PDF_GrayDownsampleResolution) , -%_6 /Int (/attributes/AI11PDF_ColorCompressionKind) , -%_([Medium Resolution]) /UnicodeString (/attributes/AI11PDF_FlatteningPresetName) , -%_150 /Real (/attributes/AI9 Mesh Rasterization Resolution) , -%_1 /Int (/attributes/AI11PDF_ColorDownsampleKind) , -%_450 /Int (/attributes/AI11PDF_MonoDownsampleImageAbove) , -%_0.25 /Real (/attributes/AI11PDF_TrimMarkWeight) , -%_() /UnicodeString (/attributes/AI12PDF_OutputCondition) , -%_1 /Int (/attributes/AI12PDF_DestinationPolicy) , -%_() /UnicodeString (/attributes/AI12PDF_DestinationName) , -%_() /UnicodeString (/attributes/AI12PDF_RegistryName) , -%_6 /Real (/attributes/AI11PDF_OffsetFromArtworkLeft) , -%_1 /Int (/attributes/AI12PDF_ColorConversionPolicy) , -%_0 /Int (/attributes/AI11PDF_PrinterMarkType) , -%_0 /Int (/attributes/AI16 flattener anti alias) , -%_6 /Int (/attributes/AI11PDF_GrayCompressionKind) , -%_1 /Int (/attributes/AI11PDF_GenerateThumbnails) , -%_0 /Int (/attributes/AI11PDF_FlattenTransparency) , -%_0 /Int (/attributes/AI12PDF_UsePrintTiling) , -%_256 /Int (/attributes/AI11PDF_GrayTileSize) , -%_100 /Int (/attributes/AI11PDF_SubsetFontRatio) , -%_1 /Int (/attributes/AI11PDF_GrayDownsampleKind) , -%_3 /Int (/attributes/AI11PDF_Compatibility) , -%_; (PDFPresetCollection) , -%_3144 /Int (AI12 Document Profile Size) , -%_/Binary : /ASCII85Decode , -%!!!Eu9PJB_!Y>>3D/OH9;Fa%r=BSfM#L3;N!!rW0!&4HR@:O@t9iFM\z8OYuhF&GLpzzz!!)`D!!*'"!!(J" -%85LEOzzzzzzzzzzz!!!!2@rQI1!!!$r!!!!TA7]gl!!!%Q!!!"8GB@eG -%!!!&h!!!!5@V]q)!!!''!!!!5E`cIJ!!!';!!!!5B38;?!!!'O!!!!5@TZc:!!!'c!!!!5A8Q3p!!!("!!!"q(!!!-a!!!95B2hbr!!!-a -%!!!95@T65m!!!-a!!!95FCf]=z6Z6phEbT0"F+zzzzzzzz -%zzzz=BSfMz!!)Uf!!*'"!!*kZ=BSfMzzzz=BSfMz!!$r3!!#"O!!!+_=BSfM -%z!!$Jr!!'K^!!!ki=BSfMz!!":;!!!O_!!'IRA7]glz!!!!78OYuhBQS?83\N.1GBYZRARd?&BE/#4zz -%(.gq^+D>k=E&oX*GB\6`Bk:d,@qYiBzzzzzzzzzzzA7]glz!!!!O -%8OYuh2DI3M2D$[:0d&kqAmoguFtr72E!-B/hnJ:AS,@nCigdt -%7m\>.Des?7EZfFB@:Njk/Kf+47m[1UzzzzzA7]glz!!!!M;IsHOEb0,uAKY#fATqj+B-9Q[DIdI' -%Bl@l3Bl5%b77/sf3ArcI1+k9]zz!!"QJAS,LoASu!h+BE2fGA1r-+@C'bA8-."Df-\3DBMM>6T-YZ2E!-B/hm>+z -%zzzzzG%kN3z!#)1-!#/cm!"dHj!!DW4!!ErC!!?Jt!!!!"=BSfMz!)*]"!)NXq!*:9*D.R-s -%z!!!!"zzzz!!!(]!!!!#F(o80z6W-l+@s)g8z!!!-%!!!!&!"&]:!#,DN!$2+b!%7h!!&=O5 -%!':0G!(?l[!)ESo!*K;.!+Q"B!,V^V!-\Ej!.b-)!/gi=!0mPQ!1s7e!3#t$!3uU6!5&>JO!?V=g!@n1+!B:*D!C[#_!E&r$!FPq@!H%p\!IOp#!K-uA!La%_!N?+)!P&6I!QbAi!SIM4!U0XU!Vuj"!Xo,E!Z_=h -%!\XU7!^Ql\!`T5,!bVRS!dXp$!fd>L!hoat!k&0H!m:Yq!oO.G!qcWq!t,2H"!Iau"#pBM"&B#&"(hXU"+C?0"-s%`"0Ma;"31Mm -%"5j:J"8N'(";:n\">'a<"@rYq"ChRS"F^K4"I]Il"L\HO"OdM4"RlQn"UtVT"Y0a;"\Al""_S!_"bm2H"f;I2"iUYq"m#p]"pP8I -%"t'U6#"Sr$#&4?h#)ibW#-S6H#13Y8#5&3+#8mas#<`;f#@RjZ#DNJO#HS0F#LWk=#P\Q4#Tj=-#Y#)'#]9p"#aPar#egSm#j2Kj -%#nRCh#s&Ag$"O?f$',Cg$+^Gh$0;Kj$5!Um$9\_q$>Kp!$CD1'$H3A-$M+W5$R,s=$W.:G$\/VP$a:#[$fMKh$k`su$ptG.%!;u= -%%&XNL%+u'\%1Nan%6tA+%%B0fS%GhQh%MK=)%S7.@%Y"tX%^lkq%dji6%j_`P%pfcm&!da4&'kdQ&.&mp&47";&:P1[&@iA( -%&G6VK&MXkn&T&,=&ZQGb&a0i4&ge5[&nDW.&u-)W'&sW-'-e/X'4V].';Q;\'BKo4'IOSd'P\>?'Wi(p'^uhM'f6Y+'mLI_'tk@? -%('>=!(.f9X(696:(=j8t(EF;X(M+D>(TnS&(\\ac(dJpL(lB06(tBK")'Bec)/C+P)7LL>)?^s.)GqDs)P.kd)XJCW)`o!K)i>T? -%)ql85*%Dq+*.&[#*6]Dq*?H4k*H3$e*Q&oa*Yoe^*bla\*ki][*to_[+))g]+28o_+;H"b+D`0f+N,Dl+WMXr+a"s%+jM8.+t"R7 -%,(_#B,2FIN,<-o[,EsFi,Ocs#,Y]P3,c`3E,mbkW-"nTk--%>+-7:-A-ANqW-Klfo-V5\3-`\WM-k.Rh-ugZ0.+B[M.6&bl.@hp7 -%.KV(W.VL<$.aKUH.lJnl/"J3oEl2KC^Y2X*.G2deS72qL#'3)DSn364)`3C5`U3P7BJ3]9$@3jLg84"WO0 -%4/tC+4=<7&4JY+"4X*$t4eY$s4s3$s5+k*t59W7"5GCC%5U/O)5c-g05q,*76**B?681`H6FB/S6TRS_6bl(l6q9Y&7*\4679)dF -%7G^KX7V>2k7dro*7sdbA8-MOW8;N8iK@j9#O@292eKP9B&Vp9QEh<9`e$]9p8<,:*iYQ::F"!:J"?G:Yehp:iT=D -%;$Klo;4CGF;DD's;TD]L;dWJ';ta0W<0(#5<@Cji*d)=Nahc=_V$K=pJ53>,GKr>=Db]>NK*I>_ZM7 -%>pip&?--Ck?>Nr]?OpLP?aF,D?rpa9@/OG/@A73'@S(%!@dmkpA!^]kA3a[iAEdYgAWgWfAj'ahB'CSttJCfbGVD$XudD7ONsDJO..D]WhADp`MSE/&>iEB8*)EU\!AEi*mYF'WjsF;/h9FNekUFbOtsG!:)=G5-8^GI)N+ -%G]%cMGq+)rH09KCHDPrkHXhE>Hm*lgI,TK>IA))jIU[cCIj9GrJ)u2NJ>e#+JSTh]JhVe>K(O[sK=Z^VKRea9Kh$itL(8rYL=_2B -%LS'A*LhV[jM)1!VM>iBCMTUi2MjB;!N+7ghNA6E[NW5#NNm<\DO.MF;OD^02O["u,OqEk'P2ha#PI?\uP_t^tQ!]fuQ8Fo"QO9(% -%Qf+6)R(/P0R?3j7RV8/?RmNUJS/e&USG/RbS^O)pT!"\+T8T?MVf&EjW)BS4 -%WAgfUWZ8%"Wrf>EX6H]jXO+(;XgkMcY+`$7YD]UbY][28Z!aifZ:hL?ZT,:oZmE)L[1fs*[K3g^[d^b>\)=c!\C%iZ\\bp>]!].& -%];N:b]UQSL]oTl7^4a6#^O!Zf^i7*U_.UUE_I(17_cXh+`)4Iu`Cn1k`^[tca$Ib\a?@VWaZ@PSauIPQb;RPPbVdVPbr*bRc8NtV -%cSs1[coKIad6,gjdQc0rdmV[)e4J05eP=ZBelC;Rf3HqcfOWXufkf@3g323IgOS&_gkso!h3Qn;hP/mVhlkrri4\);iQU:[inNL' -%j6PcIjS\+mjpgI=k9&ldkVDA7ksjpalm@5qWIa"r!3.er@.]Vr_*7Gs)%f9~> -%_; (AI12 Document Profile Data) , -%_0 /Bool (AI20 Document PixelPerfect) , -%_; /NotRecorded , -%_; -%AI9_EndDocumentData -%AI11_BeginTextDocument -/AI11TextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M,+?ht30/+M240/+M24k>stream -0/=Y(+?ht35!C)Q4s2sM+>5Dk4?O`>3B8386Z6mZ<-`Fo7W30d+>5Dk4?O`>0H_eC -%rr>=bA,pNJ@K9s>8HY]20JPRC0H`5/2`!HO1,'hV+?ht35!C)Q4s4,R5!C)B1*A\A -%+>5Dk>9H$j+>5Dk4?O`>0H_eCs!]'D2'>"D+>5Dk>9H$j+>5Dk./s8G2?#H^+>5Gl0d&YD+?Vb/0/+Lsrr;sVr\l8K0/4S(+?ht3 -%4?O`>0H_eCs8G%X3@Q((0d&1n5!C)O4G!&4s2sM+>5Dk./s8G4oRSn+>5Gl0d&YD+?Vb/0/+Lsrr;s^ -%r]_hS0/4S(+?ht34?O`>0H_eCs8G=`5q*p00d&1n5!C)O4G!&4s2sM+>5Dk./s8H#lb/Z+>5Gl0d&YD -%+?Vb/0/+Lsrr0H_eCs8Q='>:C[J0d&1n5!C)O4G!&4s2sM+>5Dk./s5h -%*$?4M+>5Gl0d&YD+?Vb/0/+Lsrr4YX0F0*M0/4S(+?ht34?O`>0H_eCs"Fd6$7R)N0d&1n5!C)O4G!& -%4s2sM+>5Dk./s6#%PSAA+>5Gl0d&YD+?Vb/0/+Lsrr4Y`0G#ZU0/4S(+?ht34?O`>0H_eCs"G-@'Ib.X0d&1n5!C)O4P''4s2sM+>5Dk./s8G3;tld+>5Gl1*AbE+?Vb/0/+Lsrr;sYr]2JN0/4S)+?ht34?O`>0H_eCs8G.[4=MC+0d&4o -%5!C)O4P''4s2sM+>5Dk./s8G5lO"t+>5Gl1*AbE+?Vb/0/+Lsrr;sar^&%V0/4S)+?ht34?O`>0H_eC -%s8GFc6n'630d&4o5!C)O4P''4s2sM+>5Dk./s8H4o[Yo+>5Gl1*AbE+?Vb/0/+Lsrr<"(s'7&r0/4S) -%+?ht34?O`>0H_eCru`1%)(?[]0d&4o5!C)O4P''4s2sM+>5Dk./s6##quZ7+>5Gl1*AbE+?Vb/0/+Ls -%rr4Y[0FK0H_eCs"Fm9%4NDQ0d&4o5!C)O4P''4s2sM+>5Dk./s6#&MOeG+>5Gl -%1*AbE+?Vb/0/+Lsrr4Ye0GQ#Z0/4S)+?ht34?O`>0H_eCs8NW0%k/VS0d&7p5!C)O4Y-(4s2sM+>5Dk -%./s6#5qkSR+>5Gl1E\kF+?Vb/0/+Lsrr4Z>0LI930/4S*+?ht34?O`>0H_eCs"Hkq74B?40d&7p5!C)O4Y-(4s2sM+>5Dk./s6#8ME^b+>5Gl1E\kF+?Vb/0/+Lsrr4Z^0OlOS0/4S*+?ht34?O`>0H_eCs"K'ZK..or0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#LG4K4+>5Gl1E\kF+?Vb/0/+Lsrr4[40TIS)0/4S*+?ht34?O`>0H_eCs"KutSLG[7 -%0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#TeN/h+>5Gl1E\kF+?Vb/0/+Lsrr4[I0V^'>0/4S*+?ht34?O`> -%0H_eCs"L9'V(!N?0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#WA(;#+>5Gl1E\kF+?Vb/0/+Lsrr4[i0Z,=^ -%0/4S*+?ht34?O`>0H_eCs"NIej!c*(0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#k:l'J+>5Gl1E\kF+?Vb/ -%0/+Lsrr4\?0^^A40/4S*+?ht34?O`>0H_eCs"O+"p*h+;0d&7p5!C)O4Y-(4s2sM+>5Dk./s6#"Y^*/ -%+>5Gl1E\kF+?Vb/0/+Lsrr0H_eCs8O2@+"8k9*4s2sM -%+>5Dk./s6#q_7mr+>5Gl2'>(H+?Vb/0/+Lsrr4)P+:otE0/4S,+?ht34?O`>0H_eCs8NT/%OiMR0d&@s5!C)O4t?+4s2sM+>5Dk./s8H%0$_b+>5Gl2]t:J+?Vb/0/+Lsrr4YQ0EEUF0/4S.+?ht34?O`>0H_eCru`%!'e(7Y0d&Fu5!C)O -%45Dk./s8H"TJTR+>5Gl3?ULL+?Vb/0/+Lsrr2tn!2Ctc0/4S0+?ht34?O`>0H_eCs8V3\ -%jXD<*0d&J!5!C)O4GPm5!C)O4GPm5!C)O4GPm -%5!C)O4=ol.3L8u+>GPm5!C)O4P&r.3L8u+>GPm5!C)O4GSn5!C)O4GVo5!C)O4GVo5!C)O4GVo5!C)O4GVo5!C)O4GVo5!C)O4GVo5!C)O4GVo -%5!C)O4GVo5!C)O4GVo5!C)O4GYp5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q -%5!C)O4G\q5!C)O4G\q5!C)O4>.3L8u+>G\q5!C)O4G\q5!C)O4G\q5!C)O4G\q5!C)O43o -%.3L8u+>G\q5!C)O4G\q5!C)O4G\q5!C)O4G_r -%5!C)O4k.3L8u+>Gbs5!C)O4Gbs5!C)p+?ht35!C)Q4s4,R0/4SR+?Vb/0/+M&+?ht3 -%>p)5Mn4?O`>0HaRB4?O`>0H`J?+>5Dk./s5H=TDk1CB/JWD#eJSD?+ST8-!&uD?+GP@/t'CFX\Fd2'>"D+>5Dk0H`#'+?Vb/ -%0/+MQ+?Vb/0/+M#/i=b)1*A"Es8N?R+?ht34?O`>0H_r"2'=P-+=R6hs#VYP5!C)O4#3'+>5Jm./s8H>:C[Y4s2sM+>5Dk -%/M8n'0/=Xurr4)X.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`:1+?ht34?O`>0H_r"2'=P-+=R6h0F0*M5!C)O4#3'+>5Jm./s6# -%$7R)]4s2sM+>5Dk/M8n'0/=Xurr4Y\.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fp3+?ht34?O`>0H_r"2'=P-+=R6h0G#ZU5!C)O4#3'+>5Jm./s6#'Ib.g4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6h -%s'7&r5!C)O4#3'+>5Jm./s5h)(?[l4s2sM+>5Gl/M8n'0/=Xurr4)].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fa.+?ht34?O`> -%0d&'=P-+=R6h0FK#3'+>5Jm./s6#%4ND`4s2sM+>5Gl/M8n'0/=Xurr4Y_.3Lf<+?Vb/0/4S$/i=b)1*A"E -%s"G$6+?ht34?O`>0d&'=P-+=R6h0GQ#Z5!C)O4#3'+>5Jm./s8H%OiMa4s2sM+>5Gl/M8n'0/=Xurr4YR.3Lf<+?Vb/ -%0/4S$/i=b)1*A"Es8NKV+?ht34?O`>0d&'=P-+=R6h0EEUF5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru*=/5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru3C05!C)O4#3$2'=P,+>#3$2'=P-+=R6h0`*:A5!C)O4#3$2'=P,+>#3$2'=P- -%+=R6h+:otE5!C)p+?ht30/=Y445Gl>9H$j+>5Dk>9GXC2'?0I0/4S34,E, -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+C-*R4s2sM+>5Dk1*A5)+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&% -%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&p+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB1*A@q>p(dT+?Vb/0/+M245Dk>9G[D1a$'H0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AFs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk -%>9G[D3$;KL0/4S34>E%+>>E%+>>E%+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P'"+C-*C0d&S@+>5Dk4?O`> -%0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF+?ht35!C)O4GPm>p(dT+?Vb/0/+M245Dk>9G[D0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D -%0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>P&o1E]sG0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;.+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1E\kF -%+?ht35!C)O4G_r>p(dT+?Vb/0/+M245Dk>9G[D0fC.[ -%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+C-*R4s2sM+>5Dk1E\>*+BosN4G!E+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>Y,r+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk -%>9G^E2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Y-"+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+>Y,p0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D-+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9G^E0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p2'?0I0/4S3 -%4,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p2BZ9J0/4S34,B(2'=M, -%2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk1a"G++BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u* -%+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>b2u+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`> -%0HaRB1a"_">p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4G_r>p(dT+?Vb/0/4S3 -%4p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1a"M2+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E, -%+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk2'=P,+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I -%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1*BjF0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ -%+>k8t+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=^u>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4k9I+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>G!& -%4s3$Q+?ht34?O`>0HaRB2'=e">p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG3$;KL0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB2'=V-+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V.+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB2'=V1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V2+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=V3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GgH0d'aE0/4S34>E%+>>E% -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB2BXdu>p(dT+?Vb/0/+M24t?!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH2'?0I0/4S34>E% -%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>t?$+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB2BXt%>p(dT+?Vb/0/+M24t?&+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q -%+?ht34?O`>0HaRB2BX_/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0eskW+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB2BX_1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+?ht3 -%5!C)Q4s2sM+>5Dk>9GgH0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB2BX_3+C-*C0d&S@ -%+>5Dk4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/+M240HaRB2]sgt>p(dT+?Vb/0/+M245Dk>9GjI1E]sG0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%2]sq">p(dT+?Vb/0/+M245Dk>9GjI2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?(E%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P'' -%4s3$Q+?ht34?O`>0HaRB2]t(&>p(dT+?Vb/0/+M245Dk>9GjI3?VTM -%0/4S34>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%0J5%%/i=bW+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M245Dk>9GjI0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H_u*+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?(Dt1a$'H0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh4+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M240HaRB3$9pu>p(dT+?Vb/0/4S345Dk -%>9GmJ1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$:($>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht3 -%5!C)Q4s2sM+>5Dk>9GmJ3$;KL0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$:4(>p(dT+?Vb/ -%0/4S345Dk>9GmJ0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD -%5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q3+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q>p(dT+?Vb/0/4S345Dk>9GmJ0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+?1Ju2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GpK -%0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3?U+#>p(dT+?Vb/0/4S345Dk>9GpK2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q -%+?Vb/0/+MQ+?:Q'+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3?U:(>p(dT+?Vb/ -%0/4S345Dk>9GpK3?VTM0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB3?U%1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT -%+?Vb/0/4S345Dk>9GpK0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%6 -%+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S34GPm0/4SR+?Vb/0/+MQ+>GPm0d'aE0/4S34>E% -%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0ea_++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/ -%0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm -%0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GPm0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f:(Z+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C -%0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0eje(0d'[C4?O`>0HaRB0eje.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB0eje0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%0eje*2'?0I0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0fC.[+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S++?ht35!C)Q4s4,R5!C)O4GVo0/4SR+?Vb/0/+MQ+>GVo0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0esk-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)

p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/ -%0/+MQ+>GVo0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0eskW+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GVo0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0f:(Z+>5Gl -%4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXU+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)++>5Gl>9H$j+>5Dk>9GXV+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/0/+MQ+>GYp1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB0f'q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f'q2+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f'q3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.& -%>p)p(dT+?Vb/0/4S345Dk>9GXV+>GPm -%>p(dT+?Vb/0/4S345Dk>9GXV+>GVo>p(dT+?Vb/0/4S345Dk>9GXV+>GYp>p(dT+?Vb/0/4S345Dk -%>9GXV+>G\q>p(dT+?Vb/0/4S345Dk>9GXV+>G_r>p(dT+?Vb/0/+M245Dk>9GXV+>Gbs>p(dT+?Vb/0/+M24G\q0/4SR+?Vb/0/+MQ+>G\q0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-( -%4s3$Q+?ht34?O`>0HaRB0f1"/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT -%+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0ea_U+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>G\q0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f1"Y+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1, -%2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXW+>Gbs>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)p -%+?ht34?O`>0H`)-+>5Gl>9H$j+>5Dk>9GXX+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&7p5!C)Q4s3$Q+?Vb/ -%0/+MQ+>G_r1E]sG0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>b3H+>5Gl4?O`> -%0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O -%4p(dT+?Vb/0/4S345Dk>9GXX+?:QM+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u* -%+C-*R4s3$Q+?ht34?O`>0HaRB0f:(.1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ -%+>G_r0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4Gbs0/4SR+?Vb/0/+MQ -%+>Gbs0d'aE0/4S34>E%+>>E%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0fC.1+C-*C0d&S@+>5Gl4?O`> -%0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs1a$'H0/4S34,B(2'=M,2'=M,2'?0I -%0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk -%>9GXY+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXY+?1KL+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs3?VTM0/4S34>E%+>>E%+>,Mo>p(dT -%+>b3)4s3$Q+?ht34?O`>0HaRB0fC./0HaXD0/4S34>E%+>>E%+>,Mo>p)5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC./1a$'H0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s4,R5!C)Q4s2L7+>G!&4s3$Q+?ht34?O`>0H`J?+>5Dk./s5H7f[f7DZFVS -%@/tBLEr^=_=TDk1CB/JWD#eJSD?+ST8-!&uD?+GP@/t'CFX\Fd2'>"D+>5Dk0H`#'+?Vb/0/+MQ+?Vb/0/+M#/i=b)1*A"Es8N?R -%+?ht34?O`>0H_r"2'=P-+=R6hs#VYP5!C)O4#3'+>5Jm./s8H>:C[Y4s2sM+>5Dk/M8n'0/=Xurr4)X.3Lf<+?Vb/0/+M# -%/i=b)1*A"Eru`:1+?ht34?O`>0H_r"2'=P-+=R6h0F0*M5!C)O4#3'+>5Jm./s6#$7R)]4s2sM+>5Dk/M8n'0/=Xurr4Y\ -%.3Lf<+?Vb/0/+M#/i=b)1*A"Es"Fp3+?ht34?O`>0H_r"2'=P-+=R6h0G#ZU5!C)O4#3'+>5Jm./s6#'Ib.g4s2sM+>5Gl -%/M8n'0/=Xurr0d&'=P-+=R6hs'7&r5!C)O4#3'+>5Jm./s5h -%)(?[l4s2sM+>5Gl/M8n'0/=Xurr4)].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fa.+?ht34?O`>0d&'=P-+=R6h0FK#3'+>5Jm./s6#%4ND`4s2sM+>5Gl/M8n'0/=Xurr4Y_.3Lf<+?Vb/0/4S$/i=b)1*A"Es"G$6+?ht34?O`>0d&'=P-+=R6h -%0GQ#Z5!C)O4#3'+>5Jm./s8H%OiMa4s2sM+>5Gl/M8n'0/=Xurr4YR.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NKV+?ht34?O`> -%0d&'=P-+=R6h0EEUF5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru*=/5!C)O4#3$2'=P,+>#3$2'=P-+=R6hru3C0 -%5!C)O4#3$2'=P,+>#3$2'=P-+=R6h0`*:A5!C)O4#3$2'=P,+>#3$2'=P-+=R6h+:otE5!C)p+?ht30/=Y445Gl>9H$j+>5Dk>9GXC2'?0I0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q -%+C-*R4s2sM+>5Dk1*A5)+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`> -%0HaRB1*A=p>p(dT+?Vb/0/+M245Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*ACr>p(dT+?Vb/0/+M24P&s+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB1*ALu -%>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AS">p(dT+?Vb/0/+M24P&o0HaXD0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4GSn>p(dT+?Vb/ -%0/+M245Gl1E\kF+?ht35!C)O4GVo>p(dT+?Vb/0/+M24P&o1E]sG0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4G\q>p(dT+?Vb/0/+M24P&o2'?0I0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Gbs>p(dT+?Vb/0/+M245Dk1E\>*+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q -%+?ht34?O`>0HaRB1E\Ir>p(dT+?Vb/0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%% -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1E\Y">p(dT+?Vb/0/4S345Dk>9G^E -%3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk -%>9G^E0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q -%+?ht34?O`>0HaRB1E\D1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl -%>9H$j+>5Dk>9GaF0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E% -%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM -%+>5Dk>9GaF0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/ -%0/+MQ+>k8r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M2 -%45Gl0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I -%0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ -%+>k9!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!& -%4s3$Q+?ht34?O`>0HaRB2'=k$>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX -%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s4,R5!C)O4t>q -%0d'[C4?O`>0HaRB2BX^s>p(dT+?Vb/0/+M24t>u+C-*C0d&S@ -%+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q -%4s3$Q+?Vb/0/+MQ+>t?"+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/iPX1/iPX1>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT -%+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p)5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GPm -%>p(dT+?Vb/0/+M240HaRB2BX_/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b( -%2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s1*BjF0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f'qX -%+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G\q>p(dT+?Vb/0/+M240HaRB2BX_3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GgH -%0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GjI0d'aE -%0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sq">p(dT+?Vb/0/+M245Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/0/+M2 -%45Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB2]t+'>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht3 -%5!C)O4G\q>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M245Dk3$9k/+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB3$:"">p(dT+?Vb/0/4S345Dk>9GmJ2'?0I -%0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?1K&+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB3$:1'>p(dT+?Vb/0/4S345Dk>9GmJ3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q0+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GmJ0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl -%1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S340HaRB3?U%!>p(dT+?Vb/0/4S345Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M, -%2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GpK2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/ -%0/+MQ+?:Q(+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB3?U%3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S3 -%45Dk>9GpK0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+?:Q!2'?0I0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB3?U%7+C-*C -%0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)(+>5Gl>9H$j+>5Dk>9GXS+>G!E+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0ea_++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S3 -%45Dk>9GXS+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q -%4s3$Q+?Vb/0/+MQ+>GPm0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0eskW+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm -%0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0fC.[+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0eje(0d'[C4?O`>0HaRB0eje.+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0eje0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P'' -%4s3$Q+?ht34?O`>0HaRB0eje*2'?0I0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GSn -%0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S++?ht35!C)Q4s4,R5!C)O4GVo0/4SR+?Vb/0/+MQ+>GVo -%0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q -%4s2sM+>5Dk>9GXU+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXU+?1KL+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3?VTM0/4S34>E%+>>E%+>GK& -%+C-*R4s3$Q+?ht34?O`>0HaRB0esk+0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+ -%1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1E]sG0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB0esk+2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0fC.[+>5Gl4?O`> -%0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4GYp0/4SR+?Vb/0/+MQ+>GYp0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXV+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXV -%+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXV+?1KL+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GYp3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0f'q,0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1E]sG0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0f'q,1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,2'?0I -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f'q,2BZ9J0/4S34>E% -%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34G\q1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB0f1"1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f1"3+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f1"4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.& -%>p)p(dT+?Vb/0/4S345Dk>9GXW+>GPm -%>p(dT+?Vb/0/4S345Dk>9GXW+>GVo>p(dT+?Vb/0/4S345Dk>9GXW+>GYp>p(dT+?Vb/0/4S345Dk -%>9GXW+>G\q>p(dT+?Vb/0/4S345Dk>9GXW+>G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT -%+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34G_r1E]sG0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX -%+>b3H+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl -%1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXX -%+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0ea_U+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht34?O`>0HaRB0f:(.1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q -%4s3$Q+?Vb/0/+MQ+>G_r0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4Gbs -%0/4SR+?Vb/0/+MQ+>Gbs0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT -%+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.2+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+= -%+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>Gbs2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs3$;KL -%0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.7+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM -%+>5Dk>9GXY+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Mn1E\kF+?ht35!C)O4kC!-J9Y!,hjT!,hj@!+c.J!,DRC!,DRW.3L9$+?Vb/0/+M&+>5Gl4?O`>0HaRB4?O`>0H_r" -%2'=P-+=R6hrs1%r5!C)O4#3'+>5Jm./s8H4"2:94s2sM+>5Dk/M8n'0/=Xurr<"&.3Lf<+?Vb/0/+M#/i=b)1*A"Eru`.- -%+?ht34?O`>0H_r"2'=P-+=R6h+<2gQ5!C)O4#3'+>5Jm./s6##Upl[4s2sM+>5Dk/M8n'0/=Xurr4YZ.3Lf<+?Vb/0/+M# -%/i=b)1*A"Es"Fj1+?ht34?O`>0H_r"2'=P-+=R6h0FfNS5!C)O4#3'+>5Jm./s6#&1J_c4s2sM+>5Dk/M8n'0/=Xurr4Yd -%.3Lf<+?Vb/0/4S$/i=b)1*A"Es8NBS+?ht34?O`>0d&'=P-+=R6hs#heR5!C)O4#3'+>5Jm./s8H>q$m[4s2sM+>5Gl -%/M8n'0/=Xurr4)Y.3Lf<+?Vb/0/4S$/i=b)1*A"Eru`=2+?ht34?O`>0d&'=P-+=R6h0F90N5!C)O4#3'+>5Jm./s6# -%$Rm2^4s2sM+>5Gl/M8n'0/=Xurr4Y].3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fs4+?ht34?O`>0d&'=P-+=R6h0G,`V5!C)O4#3'+>5Jm./s6#'e(7h4s2sM+>5Gl/M8n'0/=Xurr0d&'=P-+=R6h -%rsU>!5!C)O4#3'+>5Jm./s6#!@]-T4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s8H)CZdm4s2sM+>5Dk/M8e9+>5Gl/M8e9 -%+>5Jm./s8H)^umn4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s6#q^EXO4s2sM+>5Dk/M8e9+>5Gl/M8e9+>5Jm./s5h&1J_c4s4,R -%5!C)B1*A\A+>5Dk4?O`>0HaRB4?O`>0H`(m0/4SR+?Vb/0/+MQ+>Fur+C-*C0d&S@+>5Gl4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9G[D0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF -%+?ht35!C)O4P'F+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D1E]sG -%0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*AFs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O -%45Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9G[D3$;KL0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT -%+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;*+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D -%0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0eskW+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;-+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht3 -%5!C)Q4s2sM+>5Dk>9G[D0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;/+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u* -%+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+C-*R4s2sM -%+>5Dk1E\>*+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1E\Ir -%>p(dT+?Vb/0/4S345Dk>9G^E2'?0I0/4S34>E%+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Y-!+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB1E\Y">p(dT+?Vb/0/4S345Dk>9G^E3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB1E\D++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9G^E0f'qX+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p1a$'H0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB1E\D0+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB1E\D1 -%+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GaF0d'aE -%0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u' -%2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GaF2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q -%+?Vb/0/+MQ+>b2q2'?0I0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GaF0fC.[+>5Gl -%4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`4q0/4SR+?Vb/0/+MQ+>k8r+C-*C0d&S@ -%+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=Xs>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM -%+>5Dk>9GdG1a$'H0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9!+C-*C0d&S@+>5Dk -%4?O`>0HaRB0J5%%/i=b(2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2BZ9J0/4S34,E,+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9#+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB -%2'=k$>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O45Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S( -%+?ht35!C)Q4s2sM+>5Dk>9GdG0ejeV+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG -%0eskW+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f'qX+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG0f1"Y+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S( -%+?ht35!C)Q4s2sM+>5Dk>9GdG0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG -%0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s4,R5!C)O4t>q0d'[C4?O`>0HaRB2BX^s -%>p(dT+?Vb/0/+M24t>u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?!+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?" -%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/iPX1/iPX1>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)GPm>p(dT+?Vb/0/+M240HaRB2BX_/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/ -%0/+MQ+>t>s1*BjF0/4S34>E%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f'qX+>5Gl4?O`>0H`J?+>5Dk -%>9GUP0H_u*+>,Mo>p)G\q>p(dT+?Vb/0/+M24 -%0HaRB2BX_3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GgH0fC.[+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u*+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB2BX_5+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk2]sb.+BosN4G!E+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB2]sn!>p(dT+?Vb/0/+M245Dk -%4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI2'?0I0/4S34>E%+>,E,+>,E,+C-*C -%0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?(E%+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%2]t(&>p(dT+?Vb/0/+M245Dk4?O`>0HaRB -%0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q -%+?ht34?O`>0HaRB2]sh1+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f'qX+>5Gl -%4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sh3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b( -%2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0f:(Z+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`> -%0HaRB2]sh5+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S)+?ht35!C)Q4s2sM+>5Dk>9GjI0fL4\+>5Gl4?O`>0H`J? -%+>5Dk>9GUP0H_u*+>,Mo>p)0H`=t0/4SR+?Vb/0/+MQ+?1Ju+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%% -%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GmJ1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB3$:($>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GmJ3$;KL0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB3$:4(>p(dT+?Vb/0/4S345Dk>9GmJ0ea_U+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1*BjF0/4S34>E%+>>E%+>GK& -%+C-*R4s3$Q+?ht34?O`>0HaRB3$9q3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)G\q -%>p(dT+?Vb/0/4S345Dk>9GmJ0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&% -%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3 -%>p)5Gl>9H$j+>5Dk>9GpK0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4Y-G+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q%+C-*C0d&S@+>5Gl4?O`>0HaRB -%0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB3?U7'>p(dT+?Vb/0/4S345Gl1*AbE -%+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q)+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GPm>p(dT+?Vb/0/4S345Dk>9GpK0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!1E]sG -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)G_r>p(dT+?Vb/0/4S345Dk -%>9GpK0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk0ea_'0d'[C4?O`>0HaRB -%0ea_)+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9GXS+>Y-G+>5Gl4?O`>0d&S@+>5Dk -%>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q -%4s3$Q+?Vb/0/+MQ+>GPm2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>GPm3$;KL -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0ea_1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB -%0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`))+>5Gl>9H$j+>5Dk>9GXT+>k9I+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXT+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&% -%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXT+>G_r>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O -%45Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34GVo1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk/+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB0esk1+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB -%0esk2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXU+>GPm>p(dT+?Vb/0/4S345Dk>9GXU+>GVo>p(dT+?Vb/0/4S345Dk>9GXU+>GYp>p(dT+?Vb/0/4S3 -%45Dk>9GXU+>G\q>p(dT+?Vb/0/4S345Dk>9GXU+>G_r>p(dT+?Vb/0/+M245Gl1a"tG+?ht35!C)O45Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)*+BosN4p(dT+?Vb/0/4S34GYp1E]sG0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht3 -%4?O`>0HaRB0f'q2+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0f'q3+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXV+>GPm>p(dT+?Vb/0/4S345Dk>9GXV+>GVo -%>p(dT+?Vb/0/4S345Dk>9GXV+>GYp>p(dT+?Vb/0/4S345Dk>9GXV+>G\q>p(dT+?Vb/0/4S345Dk -%>9GXV+>G_r>p(dT+?Vb/0/+M245Dk>9GXV+>Gbs>p(dT+?Vb/0/+M2 -%4G\q0/4SR+?Vb/0/+MQ+>G\q0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXW+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXW+?(EK -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXW+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>G\q3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB0f1"-0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1*BjF0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q -%+?ht34?O`>0HaRB0f1"-1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"-2'?0I0/4S3 -%4,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G\q0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1, -%1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4G_r0/4SR+?Vb/0/+MQ+>G_r0d'aE0/4S34>E%+>,Mo -%/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB0f:(1+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r2'?0I0/4S3 -%4>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>G_r2]uBK0/4S34>E%+>>E% -%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>G_r3$;KL0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB0f:(6+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXX+>GVo>p(dT+?Vb/0/4S345Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)

p(dT+?Vb/0/4S34Gbs1E]sG0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXY+>b3H+>5Gl4?O`>0d&S@ -%+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXY+?:QM+>5Gl4?O`>0d&S@ -%+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*R -%4s3$Q+?ht34?O`>0HaRB0fC./1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs -%0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)p+?ht35!C)B1E\Ls5!C)Q4s3$Q+?Vb/ -%0/+M24kC!-K_50/Xk74=ok0d&S@+>5Dk>9H$j+>5Dk/M8n'0/=Xu -%rr0H_r"2'=P-+=R6hs'$op5!C)O4#3'+>5Jm./s5h(b$Rk4s2sM -%+>5Dk/M8n'0/=Xurr4)\.3Lf<+?Vb/0/+M#/i=b)1*A"Es"F^-+?ht34?O`>0H_r"2'=P-+=R6h0FB6O5!C)O4#3'+>5Jm -%./s6#$n3;_4s2sM+>5Dk/M8n'0/=Xurr4Y^.3Lf<+?Vb/0/+M#/i=b)1*A"Es"G!5+?ht34?O`>0H_r"2'=P-+=R6h0GGrY5!C)O -%4#3'+>5Jm./s8H#q6u\4s2sM+>5Gl/M8n'0/=Xurr0d&'=P- -%+=R6h+;lUN5!C)O4#3'+>5Jm./s5h*@W*p4s2sM+>5Gl/M8n'0/=Xurr4YY.3Lf<+?Vb/0/4S$/i=b)1*A"Es"Fg0+?ht3 -%4?O`>0d&'=P-+=R6h0F]HR5!C)O4#3'+>5Jm./s6#%k/Vb4s2sM+>5Gl/M8n'0/=Xurr4Ya.3Lf<+?Vb/0/4S$/i=b) -%1*A"Es"G0:+?ht34?O`>0d&'=P-+=R6hrsgJ#5!C)O4#3'+>5Jm./s6#!\#6U4s2sM+>5Gl/M8n'0/=Xurr0H_r"1,U1-0d&,U1-1*A"Es8Nud+?ht34?O`>0H_r"1,U1-0d&,U1-1*A"E -%s8O#e+?ht34?O`>0H_r"1,U1-0d&,U1-1*A"Es"O=!+?ht34?O`>0H_r"1,U1-0d&,U1-1*A"Eru_k%+?ht3>p)5Jm -%4?O`>0H`J?+>5Dk>9H$j+>5Dk0d&,(+BosN4k9I+>5Gl4?O`>0d&S@+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s4,R5!C)O4P&m0d'[C4?O`>0HaRB1*A:o>p(dT+?Vb/0/+M24P&p+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A@q>p(dT+?Vb/ -%0/+M24P&r+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ -%+>P&u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB1*AP!>p(dT+?Vb/0/+M24P'"+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht3 -%5!C)Q4s2sM+>5Dk>9G[D0ea_U+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;++C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;,+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht3 -%4?O`>0HaRB1*A;.+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0f:(Z+>5Gl4?O`> -%0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1*A;0+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I -%0/4S*+?ht35!C)Q4s2sM+>5Dk>9G[D0fL4\+>5Gl4?O`>0H`J?+>5Dk>9GOU+>,Mo/i=bW+?ht35!C)Q4s4,R5!C)O4Y,n -%0d'[C4?O`>0HaRB1E\Cp>p(dT+?Vb/0/4S34Y,r+C-*C0d&S@ -%+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I -%0/4S(+?ht35!C)Q4s2sM+>5Dk>9G^E2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ -%+>Y-"+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB1E\D-+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9G^E0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+>Y,p2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>Y,p2BZ9J0/4S3 -%4,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+C-*R4s2sM+>5Dk1a"G++BosN4G!E+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB1a"Xu>p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O45Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk -%>9GaF0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4Gbs>p(dT+?Vb/0/4S3 -%4p(dT+>b3)4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GdG0d'aE0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k8s+C-*C0d&S@+>5Dk4?O`>0HaRB/i#:,/i#:,/i#:,>p(dT -%+>G!&4s3$Q+?ht34?O`>0HaRB2'=[t>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4b3H+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GdG2'?0I0/4S34>E%+>,Mo/i=bW+>5Gl0d&YD+?ht35!C)O4t?J+>5Gl4?O`>0H`J?+>5Dk>9GOR2'=M,2'=M,2'?0I0/4S(+?ht3 -%5!C)Q4s2sM+>5Dk>9GdG2]uBK0/4S34,E,+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>k9$+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2'=n%>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GPm>p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O4GSn>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GVo>p(dT -%+?Vb/0/+M245Gl0d&YD+?ht35!C)O4GYp>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4G\q>p(dT+?Vb/0/+M245Gl0d&YD+?ht3 -%5!C)O4G_r>p(dT+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Gbs>p(dT -%+?Vb/0/+M245Gl0d&YD+?ht35!C)O4Get>p(dT+?Vb/0/+M24t>q0d'[C4?O`>0HaRB2BX^s>p(dT+?Vb/0/+M24t>u+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?!+C-*C -%0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t?"+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/iPX1/iPX1 -%>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2BXq$>p(dT+?Vb/0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)5Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u*+>,Mo>p)GPm>p(dT+?Vb/0/+M240HaRB -%2BX_/+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%%/i=b(2'?0I5!C)Q4s3$Q+?Vb/0/+MQ+>t>s1*BjF0/4S34>E% -%+>,Mo/i=bW+?ht35!C)Q4s2sM+>5Dk>9GgH0f'qX+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p)G\q>p(dT+?Vb/0/+M240HaRB2BX_3+C-*C0d&S@+>5Dk4?O`>0HaRB0J5%% -%/i=b(2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GgH0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo>p(dT+>b3)4s3$Q+?ht3 -%4?O`>0HaRB2BX_5+C-*C0d&S@+>5Dk4?O`>0HaRB/i=b(2'=M/+C-*R4s3$Q+?ht3>p)5Gl>9H$j+>5Dk>9GjI -%0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Y-G+>5Gl4?O`>0H`J?+>5Dk>9GUP -%0H_u*+>,Mo>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]sq">p(dT+?Vb/0/+M245Dk4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB2]t%%>p(dT+?Vb/ -%0/+M245Gl1*AbE+?ht35!C)O45Gl4?O`>0H`J?+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB2]t+'>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4GVo>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE -%+?ht35!C)O4G\q>p(dT+?Vb/0/+M24>E%+>,Mo/i=bW+>5Gl1*AbE+?ht35!C)O4Gbs>p(dT+?Vb/0/+M24,Mo/i=b(2'?0I5!C)Q4s3$Q+C-*R4s2sM -%+>5Dk3$9k/+BosN4G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB3$:"" -%>p(dT+?Vb/0/4S345Dk>9GmJ2'?0I0/4S34>E%+>,E, -%+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+?1K&+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht3 -%4?O`>0HaRB3$:1'>p(dT+?Vb/0/4S345Dk>9GmJ3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3$9q0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)GVo>p(dT+?Vb/0/4S345Dk>9GmJ0f'qX+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?1Ju1a$'H0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB3$9q5+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O4Gbs -%>p(dT+?Vb/0/4S340HaRB3?U%!>p(dT -%+?Vb/0/4S345Gl4?O`>0HaRB0J5%%0J5%% -%0eP.&>p)k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk -%>9GpK2]uBK0/4S34>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+?:Q(+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%0J5%%0eP.&>p)5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+?:Q!0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB3?U%3+C-*C0d&S@+>5Gl -%4?O`>0HaRB0J5%%0J5%%0eP.&>p)GYp>p(dT+?Vb/0/4S345Dk>9GpK0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+?:Q!2'?0I0/4S3 -%4>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB3?U%7+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%% -%/i=bW+>5Gl1a"tG+?ht35!C)p+?ht34?O`>0H`)(+>5Gl>9H$j+>5Dk>9GXS+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u*+>,Mo -%>p(dT+>Y-(4s3$Q+?ht34?O`>0HaRB0ea_++C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Gl0d&YD+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXS+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0ea_U+>5Gl -%4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0eskW+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f'qX+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm -%0f1"Y+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0f:(Z+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GPm0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*C0d&:q5!C)Q -%4s3$Q+C-*R4s2sM+>5Dk0eje(0d'[C4?O`>0HaRB0eje.+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q -%+?ht34?O`>0HaRB0eje0+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT+>P''4s3$Q+?ht34?O`>0HaRB0eje*2'?0I -%0/4S34>E%+>>E%+>>E%+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GSn0fC.[+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`&%0HaXD0/4S++?ht35!C)Q4s4,R5!C)O4GVo0/4SR+?Vb/0/+MQ+>GVo0d'aE0/4S34>E% -%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXU+>k9I+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXU+?(EK+>5Gl4?O`> -%0d&S@+>5Dk>9GUP0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXU+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)& -%0HaXD5!C)Q4s3$Q+?Vb/0/+MQ+>GVo3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+ -%0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1*BjF0/4S34>E% -%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`> -%0HaRB0esk+1a$'H0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0esk+2'?0I0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>GVo0fC.[+>5Gl4?O`>0H`J?+>5Dk>9GOQ1,U1,1,U1,2'?0I -%0/4S++?ht35!C)Q4s4,R5!C)O4GYp0/4SR+?Vb/0/+MQ+>GYp0d'aE0/4S34>E%+>,Mo/i=bW+>5Gl -%1E\kF+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXV+>k9I -%+>5Gl4?O`>0d&S@+>5Dk>9GUP0H_u'2'=M,2'?0I0/4S(+?ht35!C)Q4s2sM+>5Dk>9GXV+?(EK+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H`&%0HaXD0/4S)+?ht35!C)Q4s2sM+>5Dk>9GXV+?1KL+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H`)&0HaXD5!C)Q4s3$Q -%+?Vb/0/+MQ+>GYp3?VTM0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,0HaXD0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1*BjF0/4S34>E%+>>E%+>GK&+C-*R -%4s3$Q+?ht34?O`>0HaRB0f'q,1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,1a$'H -%0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f'q,2'?0I0/4S34>E%+>>E% -%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0f'q,2BZ9J0/4S34>E%+>>E%+>,Mo>p(dT+>b3)4s3$Q+?ht3 -%>p)p(dT+?Vb/0/4S34G\q1E]sG0/4S34>E%+>>E%+>GK&+C-*R4s3$Q+?ht34?O`>0HaRB0f1"1+C-*C0d&S@+>5Gl4?O`> -%0HaRB0J5%%/i#:,/i#:,>p(dT+>G!&4s3$Q+?ht34?O`>0HaRB0f1"3+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0J5%%>p(dT -%+>P''4s3$Q+?ht34?O`>0HaRB0f1"4+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%0eP.&>p)p(dT+?Vb/0/4S345Dk>9GXW+>GPm>p(dT+?Vb/0/4S345Dk>9GXW+>GVo>p(dT+?Vb/0/4S345Dk -%>9GXW+>GYp>p(dT+?Vb/0/4S345Dk>9GXW+>G\q>p(dT+?Vb/0/4S345Dk>9GXW+>G_r>p(dT+?Vb/0/+M245Gl1a"tG -%+?ht35!C)O45Dk4?O`>0HaRB/ho+=+>,E,+>,Mo>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34G_r1E]sG -%0/4S34,B(2'=M,2'=M,2'?0I0/4S++?ht35!C)Q4s2sM+>5Dk>9GXX+>b3H+>5Gl4?O`>0d&S@+>5Dk>9GOQ -%1,U1,1,U1,1,U1[+>5Gl1a"tG+?ht35!C)O4p(dT+?Vb/0/4S345Gl0d&YD -%+?ht35!C)O4p(dT+?Vb/0/4S345Gl1*AbE+?ht35!C)O4p(dT+?Vb/0/4S345Dk>9GXX+?:QM+>5Gl4?O`>0d&S@+>5Dk>9GUP -%0H`&%0H_u*+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0ea_U+>5Gl4?O`>0d&S@+>5Dk>9GUP0H`&%0H_u*+C-*R4s3$Q+?ht3 -%4?O`>0HaRB0f:(.1*BjF0/4S34,B(2'=M,2'=M/+C-*C0d&:q5!C)Q4s3$Q+?Vb/0/+MQ+>G_r0f1"Y+>5Gl -%4?O`>0d&S@+>5Dk>9GOQ1,U1,1,U1,2'?0I0/4S++?ht35!C)Q4s4,R5!C)O4Gbs0/4SR+?Vb/0/+MQ+>Gbs0d'aE0/4S3 -%4>E%+>,Mo/i=bW+>5Gl1E\kF+?ht35!C)O4p(dT+?Vb/0/4S34p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.2+C-*C0d&S@+>5Gl4?O`>0HaRB/ho+=+>,E,+>,E,+C-*C0d&:q5!C)Q4s3$Q -%+?Vb/0/+MQ+>Gbs2'?0I0/4S34>E%+>,E,+>,E,+C-*C0d&1n5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs2]uBK0/4S3 -%4>E%+>>E%+>>E%+C-*C0d&4o5!C)Q4s3$Q+?Vb/0/+MQ+>Gbs3$;KL0/4S34>E%+>>E% -%+>,Mo>p(dT+>b3)4s3$Q+?ht34?O`>0HaRB0fC.7+C-*C0d&S@+>5Gl4?O`>0HaRB0J5%%0J5%%/i=bW+>5Gl1a"tG+?ht35!C)O -%45Gl4?O`>0HaRB0J5%%0J5%%/i=bW+?ht35!C)Q4s2sM+>5Dk>9GXY+>GVo>p(dT+?Vb/0/4S3 -%45Gl1a"tG+?ht35!C)O45Gl4?O`>0HaRB/ho+=+>,E,+>,Mo -%>p(dT+>b3)4s3$Q+?ht3>p)p(dT+?Vb/0/4S34,Mo>p)

0H`)0+>5Gl>9H$j+>5Dk>9GX[+>G!E+>5Gl4?O`>0d&S@+>5Dk>9GOU+>,Mo/i=bW+?ht35!C)Q4s4,R -%5!C)p+?ht35!C)B1E\Fq5!C)Q4s3$Q+C-*C0d'[C4?O`>0H`%l5!C)O4G!&4s2sM+>5Dk1*AbE+?Vb/0/+M)+?ht3>p)

5Po4?O`>0HaRB4?O`>0H`J?+>5Dk./s5H8-!&uEWBW!+>5Sp4?O`>0H_eCrr=2B>U]Y(!%n74!':0F!*oSQ!2:SM+;l:B+>=r@ -%+UKh'0ENp30F9E@0F]]H0G,uR0L7B[0L[Zc0M*s.0S;'50S_?B0Ujbd0V'nh0VL1q0VpJ$0W?bD0]OkK0]t.X0_I-n0`*R%0`<^) -%rrN-'rsA]6rso&Iru:t[s#pBf.3L8u+=R6h!*goP>6'!MUB%27(a'eP#VZT>$nr/F&24_N'`S:8"TJc-+TFP'>Q5Jm./s5h -%'He\E-7L&j1E\+Fs"FI-!ri]/%OiMR1a"Lq5!C)Q4s3$Q+?Vb/0/+M240FTWF0G#oPrs8Wds'$op0/=Xu -%rr4)T+=/-W.3L9"+=R6h0EEj/rs\o;.3L9#+>P''4s3$Q+?ht3>p(dT+BosN4=p%4s2sM+>5Dk0d&YD+C-*R4s2L9+?Vb/ -%0/+MQ+?Vb/0/+M24kJ!+>k;!-A3P!-/&^!)il>!-nQ\!+c.9.3L9%+?Vb/0/+M& -%+>5Gl0et@8+>5JmAmoLsAKWW^+D,%uF(HII1a$m\F_)[K2'=Y5/heD$2BX_,0H`#-+>GK&+>5\s0H`#/+>>E%+>5H'+>>E%+>5H( -%+>Ful0esk*+>5H*+>=ok0f1",+>5H,+>=ok0fC..+>5H.+>>E%+>5H/+EVXHAKWW\3?VpBCia/10/>4(FE2M8+>5K)+D,%uF(HII -%1,9ta@;L!r+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/+EVXHAKWW]3$;gACia/10/>O1AmoLsAKWW^ -%0H`%l0/G=*AmoLsAKWW^1*C1;Cia/10/GC,AmoLsAKWW^1a$C=Cia/10/GI.0d&,*2BX\+0H`#)2]sju0/GR10H`#)3?U!u0/P@* -%AmoLsAKWW_0d&4o0/PF,0H`#*1E\eB+>5Dk/i=b84s2L81a"Or0/PO/1*A5,2BXq$0/PU10H`#*3$9mt0/P[3/MSk3+>5T++>#<# -%0H`#+0d&.m0/YL-AmoLsAKWW`1E\eB+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q -%4s2L91a"nC+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`&%0H`&%0H`&%0HaXD5!C)Q4s2L92'>"D+>5`8+>6)J -%8Q98GF@'eTDId=!+?ht30/YX1FE2M8+>5T2+D,%uF(HII2)l_#Eckq90/Ya4AmoLsAKWWa0Hat9Cia/10/bO-0H`#,1*A7n0/bU/ -%0eP.&0/bX01bLI)0/b[10J5%%0/b^2>9I2o0/ba3>9I2o0/bd40H`#,3?U!u0/kR-0H`#-0d&:q0/kX/0J5%%0/k[00J5%%0/k^1 -%AmoLsAKWWb2'?L>Cia/10/kd3AmoLsAKWWb2^!3_F_)[K2`Mq%Eckq90/km64?O`>3B838;e^)fCh6FOBl8#80/+M24Ful -%0d'[C0eP.&0eP.&0eP.&0J5%%>p)3B838;e^)fCh5tVF*)>;7V-"MF`M%95!C)B3&_s70JG+5+>5]6+EVXHAKX0#+?ht35!C)p+>5Gl>9H$j+>5Dk0H`PC+C-*R -%4s2L:+?Vb/0/+MQ+?Vb/0/+M24kH!,)?T!)il>!-nQ\!+c.9.3L9$ -%+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q0eje+ -%+>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K0fC.,2'=P,2]up(dT3$;EJ0J5%%0J5%%0J5%%>p(dT -%3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLsAKWW]1*A7n0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e@;L!r -%+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L70d&81/heD$1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ0H`%l5!C)p+?ht35!C)B0d&S@+>5Dk4?O`>0H`J?+>5Dk -%0d&,(+BosN40H_eCrr<-M+>5Gl./s5H2(9Y34s2sM+>5Dk./s6#!%B$D0d%nDrr=c& -%+?ht34?O`>0H_eCrrB/M+>5Gl./s5H1FXG14s4,R5!C)B0d&.m0/=Y(+>5Mn/i>UE+>5Po/i,:>+>5Sp/i>UE+>5Vq/i,:>+>5Yr -%/iOn+3$<<`F_)[K3?VNK4?O`>0H`%l0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ful0d%nD -%ru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk1*A5)+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe" -%rr4)Y.3Lf<+?Vb/0/+M)+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`1p0/4Rtrr4)^.3L9! -%+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4k8p0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk -%4s2sM+>5Dk2BXY-+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+?:kn0/Oe"rr4*%.3Lf<+?Vb/0/+M-+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`=t0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O45Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0esk)0d%nDru`:1+>5Jm./s5h*@W*a1E\+F -%ru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f'q*0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0f1"+ -%0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f:(,0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk0fC.-0d%nDru`=2+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h)(?[l4s2sM+>5Dk0fU:/0d%nD -%rrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,9t*0d%nDru`@3+>5Jm./s5h*%5Po -%./s5h(b$Rk4s2sM+>5Dk1,C%+0d%nDru`@3+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,U1-0d%nDrrB)K -%+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1,pC00d%nDru` -endstream endobj 36 0 obj <>stream -@3+>5Jm./s5h*@W*a1E\+Fru`1.+>5Po./s5h -%)(?[l4s2sM+>5Dk1-$I10d%nDs"GHB+>5Jm./s6#*[r3q4s2sM+>5Dk1GBq)0d%nDs"Fj1+>5Jm./s6#%4ND`4s2sM+>5Dk0ea_' -%0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0eje(0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk0fL4.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk0f^@00d%nD -%rrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1,'h(0d%nDru`@3+>5Jm./s5h*%5Po -%./s5h(b$Rk4s2sM+>5Dk1,0n)0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1,L+,0d%nDru`@3 -%+>5Jm./s5h*@W*a1E\+Fru`4/+>5Po./s5h)(?[l4s2sM+>5Dk1,^7.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h -%)(?[l4s2sM+>5Dk1,g=/0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1GL"*0d%nDru`@3+>5Jm -%./s5h*%5Po./s5h)(?[l4s2sM+>5Dk1GU(+0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l -%4s2sM+>5Dk1G^.,0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1Gg4-0d%nDrrB)K+>5Jm./s5H -%]."jU1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1Gp:.0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM -%+>5Dk1H$@/0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1H-F00d%nDrrB)K+>5Jm./s5H]."jU -%1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1H6L10d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk -%1H?R20d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1b^%*0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1bg++0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frr>/1+>5Po./s5H4t.U<4s2sM+>5Dk1bp1, -%0d%nDru`@3+>5Jm./s5h*%5Po./s5h(b$Rk4s2sM+>5Dk1c$7-0d%nDru`:1+>5Jm./s5h*@W*a1E\+Fru`.- -%+>5Po./s5h)(?[l4s2sM+>5Dk1c-=.0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk1c6C/0d%nD -%ru`:1+>5Jm./s5h*@W*a1E\+Fru`.-+>5Po./s5h)(?[l4s2sM+>5Dk1c?I?4s2sM+>5Dk1cHO@4s2sM+>5Dk1cQUA4s4,R0/51( -%2BXY-2'>"D+>5Dk./s5H8-!c4D?+_XDuaGLC]J9#+?ht30/5@-AmoLsAKWW\2]sds5!C)B1*A\A+>5Dk0H`#'+>GW(0H`#(+D,%u -%F(HII1E^:=ok3?U".0H`#'0H`&%0H`#'0d&1n0/54)0H`#'1E\@o -%0/5:+0H`#'2'=Rq0/5@-0H`#'2]se,0H`#'3$<<`F_)[K0f^@g@;L!r+>5K(+EVXHAKWW]0d((:Cia/10/>:*AmoLsAKWW]1E^:< -%Cia/10/>@,AmoLsAKWW]2'?L>Cia/10/>F.AmoLsAKWW]2^!3_F_)[K1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N*+D,%uF(HII -%1GU(b@;L!r+>5N,+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful1H$@0/heD$1H-F3+>5N1+>=ok1H?R3+>5Q*+D,%uF(HII1bg+.+>5Q, -%+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4-+>5T-+D,%u -%F(HII2)?@;45Dk0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF<45Dk0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%uF(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0+>b])+>5W1 -%+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z-+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII2`2^i@;L!r -%+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK&+>GK&+>GK& -%+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW(+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$802lS%E,9)Q -%F`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z4s2L7+?Vb/0/+M&+>5Gl0J5%%0/=Y(/heD$1E\A(0H`#*+>>E%+>5Sp -%0J5%%0/aq-+>5Yr0eP4(0/t(.+>5_tFE2M8+>5H'+>t>q0eje++>5H)+>P&m0f'q++>5H++>Yo.0H`#'2'@!]F_)[K0fC.,2'=P, -%2]up(dT3$;EJ0J5%%0J5%%0J5%%>p(dT3?VNK0eP.&0eP.&0eP.&>p(dU0H`7r0/>7)AmoLsAKWW]1*A7n -%0/>=+AmoLsAKWW]1a"Ip0/>C-0H`#(2]sbkBl"nF1,^7e@;L!r+>5K0+>7VHC`kAd3?VpBCia/10/G:)4?O`M4s2L70d&81/heD$ -%1GU(845N,+>=ok1Gg4.+>5N.+>=ok1H$@/DJ -7691 7691 /RulerOrigin , -; -/AI11UndoFreeTextDocument : /ASCII85Decode , -%+>5`7+?Vb/0/+M,+?ht30/+M240/+M24=ok1a$!F1GCdB0f_!C+>kr61H@0/+M24kkF.3L9!+>=p%4s3$Q+?ht3>p)5Sp4?O`>0HaRB4?O`> -%0H`J?+>5Dk./s5H>6%CuDZFeXD#duEC]GRX6NCd"@/tGlVX\AH6!b+>5Vq4?O`>0H`(m0/4S(1+k7' -%0/=Y^@;L!r+>5MnAmoLsAKWW_+EVXHAKWW`+>Pl.0H`#,+>GK&+>5Yr0eP.&0/t(.+>5_t0J5%%0/5.'0J5%%0/51(0d&,(1*A7n -%0/57*0H`#'1a"Ip0/5=,0H`#'2BX[r0/5C.0J5%%0/5F/FE2M8+>5H0+D,%uF(HII1,'h_@;L!r+>5K)+D,%uF(HII1,9ta@;L!r -%+>5K++D,%uF(HII1,L+c@;L!r+>5K-+D,%uF(HII1,^7e@;L!r+>5K/+D,%uF(HII1,pCg@;L!r+>5K1+D,%uF(HII1GBq*+>5N* -%+D,%uF(HII1GU(b@;L!r+>5N,+D,%uF(HII1Gg4d@;L!r+>5N.+>Ful1H$@0/heD$1H-F3+>5N1+>=ok1H?R3+>5Q*+D,%uF(HII -%1bg+.+>5Q,+>=ok1c$7:4,Mo5!C)B1c-=1+>5Q/+>P&m1c?I8+>5Q1+>=ok1cQU3+>5Q3+>#<#0H`#+0H_r%/heD$2)-4- -%+>5T-+D,%uF(HII2)?@;45Dk0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)HF< -%45Dk0d&,(+BosC/heD%/heD%/heD%/heDR+?ht35!C)B2)QL=45T1+EVXHAKWW`2]u^@Cia/10/Y^3FE2M8+>5T4+D,%uF(HII2D?7c@;L!r+>5W-+>=ok2DQC/+>5W/+>GK&+>5W0 -%+>b])+>5W1+>>E%+>5W2+Boso+>5W3+Boso+>5W4+>=ok2E;m6+>5Z-+>=ok2_cF3+>5Z/+>>E%+>5Z0+>>E%+>5Z1+D,%uF(HII -%2`2^i@;L!r+>5Z3+D,%uF(HII2`Dk$Eckq90/kj5FE2M8+>5Z6+?Vb/00)$802lS%E,9)^@;0V$+>5Dk4?O`>0H`(m0/4SR+>GK& -%+>GK&+>GK&+>>E%+C-*R4s3$Q+>5].+D,%uF(HII3&)O0+>5]0+>YW(+>5]1+>YW(+>5]2+D,%uF(HII3&Mg4+>5]4+?Vb/00)$8 -%02lS%E,9)QF`VYCD+8)FFEMV8+?ht30/tm50eb:60H`#.3$<<`F_)[Z4s3$Q+?ht3>p(dT+BosN4=p%4s4,R5!C)B2BY+E -%+>5Dk>9H$j+>5Dk4?O`>0H_eCrr?7':&o24EWBqV@/t*D+954<@/tq$mL2'>"D+>5Dk -%0H`#'+>>E%+>5Jm0J5%%0/F_)/heD$1a"J)0H`#++>>E%+>5Vq0d&,.+>GK(+>5\s0H`#/+EVXHAKWW\0H`7r0/51(1*A5)1*A=p -%0/57*0H`#'1a"S4/heD$0f:(qEckq90/5@-/i=b)0fL4Z+>,Vr0eP.&0eP7<+C-*C0fU:[+>>E%+>>E%+>>E%+C-*C0f^@\+>GK& -%+>GK&+>GK&+C-*C1,'h/+>5K)+D,%uF(HII1,9t++>5K++D,%uF(HII1,L+-+>5K-+>=ok1,g=/DJF.AmoLsAKWW]3$9kl -%Bl"nF1-$Ih@;L!r+>5N)+?Vb/5!C)B1GL".2D-[+0/G@+4?O`M4s2L71E\@o0/GF-0H`#)2'=Rq0/GL/05bK?+>5N0+>=ok1H6Lh -%@;L!r+>5N2+>=ok1b^%-+?ht35!C)Q4s4,R0/4SR+?Vb/0/+M&+?ht3>p)=ok0d'[C -%4?O`>0H_eCrr=/j+>5Gl./s5H0e"5/4s2sM+>5Dk./s5H%4NDQ0d%nDrr=r++?ht34?O`>0H_eCrr5Gl./s5H0I\,.4s2sM -%+>5Dk./s5h>U_*E0/4Rtrr2sU.3Lf<+?Vb/0/+Lsrr2s#.3L8u+=R6h!&Z2J5!C)O45Jm0H`#)+>,N21E\>-+>,H+1E\>.+>,N21E\>/+>,H+1E\>0+>,Sq0/t(r -%Eckq900(.Z+?Vb/0/+M&+>5Gl./s5h*%5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`(m0/4Rtrr4)].3L9! -%+=R6h+<;mR0/F_!rr4)Y.3L9#+=R6h+;lUN5!C)O4P&m0d%nDrrB)K+>5Jm./s5H]."jU1E\+Fru`.-+>5Po./s5h)(?[l -%4s2sM+>5Dk1E\>*+=R6h!37Ok0/=Xurr2u1.3L9"+=R6h+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M*+>5Gl./s5h*[r3b1*A"Eru`:1 -%+>5Mn./s5h)CZd^1a"4Gru`.-+?ht34?O`>0H`4q0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4t>q0d%nDrrB)K+>5Jm./s5H]."jU1E\+Frua5Po./s5h3[l184s2sM+>5Dk2]sb.+=R6h+<2gQ0/=Xurr4)].3L9"+=R6h -%+;cOM0/Oe"rr4)Y.3Lf<+?Vb/0/+M.+>5Gl./s5HX!o/E1*A"ErrBY[+>5Mn./s5h(b$R\1a"4Gru`1.+?ht34?O`>0H`@u0/4Rt -%rr2u!.3L9!+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4GVo0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9# -%+=R6h+;lUN5!C)O4GYp0/4Rtrr4)].3L9!+=R6h+<;mR0/F_!rr4)Y.3L9#+=R6h+;lUN5!C)O4G\q0/4Rtrr4)\ -%.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4G_r0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h -%+;lUN5!C)O4Gbs0/4Rtrr4)].3L9!+=R6h+<;mR0/F_!rr4)Y.3L9#+=R6h+;lUN5!C)O4Ghu0/4Rtrr2u!.3L9! -%+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4P\p0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM -%5!C)O4P_q0/4Rtrr4)^.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Pes0/4Rtrr2u!.3L9!+=R6h -%!4s[&0/F_!rr4*$.3L9#+=R6h+?Cqo5!C)O4Po!0/4Rtrr4)^.3L9!+=R6h+<;mR0/F_!rr4)Y.3L9#+=R6h+;lUN5!C)O -%4Pr"0/4Rtrr4Ym.3L9!+=R6h0HMYc5!C)O4Y\o0/4Rtrr4Y\.3L9!+=R6h0F]HR5!C)O4GPm0/4Rtrr4)\ -%.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4GSn0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h -%+;lUN5!C)O4Get0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Gl!0/4Rtrr2u!.3L9! -%+=R6h!4s[&0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4PVn0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM -%5!C)O4PYo0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4Pbr0/4Rtrr4)^.3L9!+=R6h -%+<;mR0/F_!rr4)Z.3L9#+=R6h+;lUN5!C)O4Pht0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O -%4Pku0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Y_p0/4Rtrr4)^.3L9!+=R6h+<2gQ -%0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ybq0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Yer0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4Yhs0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_! -%rr4)X.3L9#+=R6h+;lUN5!C)O4Ykt0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4Ynu -%0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4Yr!0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4)X -%.3L9#+=R6h+;lUN5!C)O4Yu"0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4Z##0/4Rt -%rr2u!.3L9!+=R6h!4s[&0/F_!rr2s\.3L9#+=R6h!'VhS5!C)O4bbp0/4Rtrr4)^.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9# -%+=R6h+;cOM5!C)O4beq0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr2s\.3L9#+=R6h!'VhS5!C)O4bhr0/4Rtrr4)^ -%.3L9!+=R6h+<2gQ0/F_!rr4)Z.3L9#+=R6h+;cOM5!C)O4bks0/4Rtrr4)\.3L9!+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h -%+;lUN5!C)O4bnt0/4Rtrr2u!.3L9!+=R6h!4s[&0/F_!rr4*$.3L9#+=R6h+?Cqo5!C)O4bqu0/4Rtrr4)\.3L9! -%+=R6h+<;mR0/F_!rr4)X.3L9#+=R6h+;lUN5!C)O4bu!5!C)O4c#"5!C)O4c!C)p+>5H(+>t>q0f:(9 -%45H.+>=p%4s2L6+?Vb/0/+M'+>5Gl0et@8+>5JmAmoLsAKWW^+D,%u -%F(HII1a$m\F_)[K2'=Y5/heD$2BX_,0H`#-+>GK&+>5\s0H`#/+>>E%+>5H'+>>E%+>5H(+>Ful0esk*+>5H*+>=ok0f1",+>5H, -%+>=ok0fC..+>5H.+>>E%+>5H/+EVXHAKWW\3?VpBCia/10/>4(AmoLsAKWW]0d((:Cia/10/>:*AmoLsAKWW]1E^:@, -%AmoLsAKWW]2'?L>Cia/10/>F.AmoLsAKWW]2]u^@Cia/10/>L0AmoLsAKWW]3?VpBCia/10/G:)0H`#)0d((:Cia/10/G@+AmoLs -%AKWW^1E^:0H_u*+?ht30/PL.1*A5,2'=Xs0/PR02]sb12]sds0/PX20H`#*3?Tn./heD$2)$.)0eP.&0/YI,0H`#+1*C1;Cia/10/YO. -%4?O`>3B838;e^)fCh6FOBl8#80/+M24Ful0d'[C0eP.&0J5%%0J5%%0J5%%>p)3B838;e^)fCh6FO -%Bl8#80/+M24Ful0d'[C0eP.&0J5%%0J5%%0J5%%>p)3B8386U=:CAU&;`Ch7KpATAnW4s2L92B[*^ -%F_)[K2)cXi@;L!r+>5T3+EVXHAKWW`3?VpBCia/10/bL,AmoLsAKWWa0d&.m0/bR.0H`#,1E\D)0H`#,1a"V-0H`#,2'=S*0H`#, -%2BZ3H>p(dY2]up(dY3$9mt0/bg50H`#-0H`%l0/kU.1a"G11*A8'0H`#-1E\A(0H`#-1a$C=Cia/10/ka2AmoLsAKWWb2BZU? -%Cia/10/kg4FE2M8+>5Z5+EVXHAKWWb3?UFH+>5`8+>6Z-D/a<&:gn'UF5Gl>9GXQ0H`)&0H`)&0H`&%0HaXD -%5!C)Q4s2L<0Hat9Cia/10/t[/0H`#.1*AA*0H`#.1E\J+0H`#.1a$C=Cia/10/tg30H`#.2BY+E+>5`8+>6Z-D/a<&6ZmHlDf%sT -%@5]5+>GQ(/heD$3&i%&Eckq95!C)B1E\eB+>5Dk0H`#'+>>E%+>5Jm0J5%%0/F_)/heD$1a"J)0H`#++>>E%+>5Vq -%0d&,.+>GK(+>5\s0H`#/+EVXHAKWW\0H`7r0/51(1*A5)1*A=p0/57*0H`#'1a"S4/heD$0f:(qEckq90/5@-/i=b)0fL4Z+>,Vr -%0eP.&0eP7<+C-*C0fU:[+>>E%+>>E%+>>E%+C-*C0f^@\+>GK&+>GK&+>GK&+C-*C1,'h/+>5K)+D,%uF(HII1,9t++>5K++D,%u -%F(HII1,L+-+>5K-+>=ok1,g=/DJF.AmoLsAKWW]3$9klBl"nF1-$Ih@;L!r+>5N)+?Vb/5!C)B1GL".2D-[+0/G@+4?O`M -%4s2L71E\@o0/GF-0H`#)2'=Rq0/GL/05bK?+>5N0+>=ok1H6Lh@;L!r+>5N2+>=ok1b^%-+?ht35!A~> -; -%AI11_EndTextDocument -%%EndSetup -%AI5_BeginLayer -1 1 1 1 0 0 1 1 255 79 79 0 50 0 Lb -(Layer 2) Ln -%_/ArtDictionary : -%_/XMLUID : (Layer_2) ; (AI10_ArtUID) , -%_; -%_ -0 A -0 Xw -1 Ap -0 O -0 1 0 0 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -1000 -1000 m -0 -1000 L -0 0 L -1000 0 L -1000 -1000 L -Bb -1 (Unnamed gradient 19) 0 0 -150 1 1 0 0 1 0 0 1 Bg --1183.0127 -683.0127 -685.0127 1186.4768 1434.0127 -751.7321 Xm --7608.4717 -4392.7532 -685.0127 1186.4768 9042.4844 3641.0211 Bc --1183.0127 -683.0127 -685.0127 1186.4768 1434.0127 -751.7321 Bm --7608.4717 -4392.7532 -685.0127 1186.4768 251 -1434.7448 Bc -f -0 BB -%_/ArtDictionary : -%_/Dictionary : -%_(ai::Rectangle) /UnicodeString (ai::LiveShape::HandlerName) , -%_/Dictionary : -%_0 /Real (ai::Rectangle::Angle) , -%_(Invalid) /UnicodeString (ai::Rectangle::CornerType::0) , -%_(Invalid) /UnicodeString (ai::Rectangle::RoundingType::0) , -%_0 /Real (ai::Rectangle::CornerRadius::0) , -%_(Invalid) /UnicodeString (ai::Rectangle::CornerType::1) , -%_(Invalid) /UnicodeString (ai::Rectangle::RoundingType::1) , -%_0 /Real (ai::Rectangle::CornerRadius::1) , -%_(Invalid) /UnicodeString (ai::Rectangle::CornerType::2) , -%_1 /Bool (ai::Rectangle::Clockwise) , -%_(Invalid) /UnicodeString (ai::Rectangle::RoundingType::3) , -%_0 /Real (ai::Rectangle::CornerRadius::3) , -%_(Invalid) /UnicodeString (ai::Rectangle::RoundingType::2) , -%_0 /Real (ai::Rectangle::CornerRadius::2) , -%_(Invalid) /UnicodeString (ai::Rectangle::CornerType::3) , -%_8191 /Real (ai::Rectangle::CenterY) , -%_1000 /Real (ai::Rectangle::Width) , -%_1000 /Real (ai::Rectangle::Height) , -%_3 /Int (ai::Rectangle::InitialQuadrant) , -%_8191 /Real (ai::Rectangle::CenterX) , -%_; (ai::LiveShape::Params) , -%_; (ai::LiveShape) , -%_; -%_ -LB -%AI5_EndLayer-- -%AI5_BeginLayer -1 1 1 1 0 0 1 2 79 255 79 0 50 0 Lb -(Layer 3) Ln -%_/ArtDictionary : -%_/XMLUID : (Layer_3) ; (AI10_ArtUID) , -%_; -%_ -0 A -0 Xw -*u -0 Ap -0 O -0 0 0 0 1 1 1 Xa -0 1 0 2 0 Xy -0 J 0 j 1 w 10 M []0 d 0 XR -617.9415 -675.9612 m -602.6959 -657.7512 589.9912 -642.0821 V -645.4682 -626.4131 666.6426 -592.1105 Y -649.2796 -603.5447 632.7636 -611.591 617.9415 -617.0963 C -596.7671 -625.9896 576.4396 -631.4949 556.5357 -635.3063 C -515.8808 -642.9291 478.6138 -640.8117 446.8522 -634.8828 C -422.7134 -630.2244 401.9625 -623.8721 384.5995 -616.6728 C -374.8592 -612.8614 364.272 -608.203 353.6848 -602.2742 C -352.4143 -601.4273 351.1439 -601.0037 349.8734 -600.1568 C -349.0265 -599.7333 348.6029 -599.3098 348.1795 -599.3098 C -340.5567 -595.0749 336.3218 -592.1105 Y -356.6492 -625.5661 410.4322 -641.6586 V -397.7276 -657.7512 382.0585 -676.3847 Y -288.4676 -673.4203 252.8946 -612.4379 Y -252.8946 -477.3452 313.8769 -367.6617 Y -374.8592 -322.3485 432.4536 -323.6189 Y -436.6885 -328.7008 L -360.4606 -350.2987 325.7346 -383.7542 Y -335.0513 -378.6724 350.7204 -371.8966 V -396.0336 -351.9926 432.0302 -346.9107 446.8523 -345.2168 C -449.3932 -344.7933 451.5106 -344.3698 454.0516 -344.3698 C -479.8843 -340.9819 509.105 -340.1349 539.5962 -343.5229 C -579.8275 -348.1812 623.0233 -360.0389 667.0661 -383.7542 C -633.6106 -351.9926 561.6176 -330.3947 V -567.5464 -323.6189 L -625.5643 -322.3484 686.1231 -367.6617 V -747.1054 -477.3452 747.1054 -612.4379 v -747.1054 -612.0144 711.5324 -672.9967 617.9415 -675.9611 C -617.9415 -675.9612 L -f -u -1 D -577.5927 -479.8862 m -553.4539 -479.8862 534.3969 -500.6371 534.3969 -526.4699 c -534.3969 -552.3027 553.8774 -573.0536 577.5927 -573.0536 c -601.7315 -573.0536 620.7885 -552.3027 620.7885 -526.4699 c -620.7885 -500.6371 601.308 -479.8862 577.5927 -479.8862 C -f -423.0195 -479.8862 m -398.8807 -479.8862 379.8237 -500.6371 379.8237 -526.4699 c -379.8237 -552.3027 399.3042 -573.0536 423.0195 -573.0536 c -447.1583 -573.0536 466.2153 -552.3027 466.2153 -526.4699 C -466.6388 -500.6371 447.1583 -479.8862 423.0195 -479.8862 C -f -U -%_/ArtDictionary : -%_7 /Int (SVG_ShapeType) , -%_; -%_ -9 () XW -*U -%_/ArtDictionary : -%_7 /Int (SVG_ShapeType) , -%_; -%_ -LB -%AI5_EndLayer-- -%AI5_BeginLayer -0 1 1 1 0 0 0 0 79 128 255 0 50 0 Lb -(Layer 1) Ln -%_/ArtDictionary : -%_/XMLUID : (Layer_1) ; (AI10_ArtUID) , -%_; -%_ -0 A -1 Xw -LB -%AI5_EndLayer-- -%%PageTrailer -gsave annotatepage grestore showpage -%%Trailer -%%EOF - -endstream endobj 8 0 obj [5 0 R 7 0 R 6 0 R] endobj 37 0 obj <> endobj xref -0 38 -0000000000 65535 f -0000000016 00000 n -0000000173 00000 n -0000042086 00000 n -0000000000 00000 f -0000049223 00000 n -0000049083 00000 n -0000049153 00000 n -0000492885 00000 n -0000042137 00000 n -0000042569 00000 n -0000049754 00000 n -0000046199 00000 n -0000049641 00000 n -0000046056 00000 n -0000044372 00000 n -0000045494 00000 n -0000045542 00000 n -0000046234 00000 n -0000046434 00000 n -0000046329 00000 n -0000049525 00000 n -0000049556 00000 n -0000049409 00000 n -0000049440 00000 n -0000049293 00000 n -0000049324 00000 n -0000049828 00000 n -0000050112 00000 n -0000051143 00000 n -0000084017 00000 n -0000149606 00000 n -0000215195 00000 n -0000280784 00000 n -0000346373 00000 n -0000411962 00000 n -0000477551 00000 n -0000492920 00000 n -trailer -<]>> -startxref -493113 -%%EOF diff --git a/MultiRPC/Assets/Other/Loading Animation.aep b/MultiRPC/Assets/Other/Loading Animation.aep deleted file mode 100644 index e714cf50..00000000 Binary files a/MultiRPC/Assets/Other/Loading Animation.aep and /dev/null differ diff --git a/MultiRPC/Assets/Other/Loading Animation.prproj b/MultiRPC/Assets/Other/Loading Animation.prproj deleted file mode 100644 index 32a139f0..00000000 Binary files a/MultiRPC/Assets/Other/Loading Animation.prproj and /dev/null differ diff --git a/MultiRPC/Assets/Svg files/AddIcon.svg b/MultiRPC/Assets/Svg files/AddIcon.svg deleted file mode 100644 index 033456d7..00000000 --- a/MultiRPC/Assets/Svg files/AddIcon.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/MultiRPC/Assets/Svg files/AlertIcon.svg b/MultiRPC/Assets/Svg files/AlertIcon.svg deleted file mode 100644 index 9c4a1a73..00000000 --- a/MultiRPC/Assets/Svg files/AlertIcon.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/MultiRPC/Assets/Svg files/BrowserIcon.svg b/MultiRPC/Assets/Svg files/BrowserIcon.svg deleted file mode 100644 index 166c0b49..00000000 --- a/MultiRPC/Assets/Svg files/BrowserIcon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/MultiRPC/Assets/Svg files/CreditsIcon.svg b/MultiRPC/Assets/Svg files/CreditsIcon.svg deleted file mode 100644 index 4695a678..00000000 --- a/MultiRPC/Assets/Svg files/CreditsIcon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/MultiRPC/Assets/Svg files/CustomIcon.svg b/MultiRPC/Assets/Svg files/CustomIcon.svg deleted file mode 100644 index 07b37445..00000000 --- a/MultiRPC/Assets/Svg files/CustomIcon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/MultiRPC/Assets/Svg files/DeleteIcon.svg b/MultiRPC/Assets/Svg files/DeleteIcon.svg deleted file mode 100644 index d57a4705..00000000 --- a/MultiRPC/Assets/Svg files/DeleteIcon.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/MultiRPC/Assets/Svg files/DiscordColourIcon.svg b/MultiRPC/Assets/Svg files/DiscordColourIcon.svg deleted file mode 100644 index 0b5720ed..00000000 --- a/MultiRPC/Assets/Svg files/DiscordColourIcon.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - diff --git a/MultiRPC/Assets/Svg files/DiscordIcon.svg b/MultiRPC/Assets/Svg files/DiscordIcon.svg deleted file mode 100644 index 0ec866b1..00000000 --- a/MultiRPC/Assets/Svg files/DiscordIcon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/MultiRPC/Assets/Svg files/DownloadIcon.svg b/MultiRPC/Assets/Svg files/DownloadIcon.svg deleted file mode 100644 index 082e7d0c..00000000 --- a/MultiRPC/Assets/Svg files/DownloadIcon.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/MultiRPC/Assets/Svg files/FluxpointDevelopmentIcon.svg b/MultiRPC/Assets/Svg files/FluxpointDevelopmentIcon.svg deleted file mode 100644 index 322d6155..00000000 --- a/MultiRPC/Assets/Svg files/FluxpointDevelopmentIcon.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/MultiRPC/Assets/Svg files/GithubIcon.svg b/MultiRPC/Assets/Svg files/GithubIcon.svg deleted file mode 100644 index f275ff7f..00000000 --- a/MultiRPC/Assets/Svg files/GithubIcon.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - diff --git a/MultiRPC/Assets/Svg files/HeartIcon.svg b/MultiRPC/Assets/Svg files/HeartIcon.svg deleted file mode 100644 index 089188ba..00000000 --- a/MultiRPC/Assets/Svg files/HeartIcon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/MultiRPC/Assets/Svg files/HelpIcon.svg b/MultiRPC/Assets/Svg files/HelpIcon.svg deleted file mode 100644 index f62d7629..00000000 --- a/MultiRPC/Assets/Svg files/HelpIcon.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - diff --git a/MultiRPC/Assets/Svg files/InfoIcon.svg b/MultiRPC/Assets/Svg files/InfoIcon.svg deleted file mode 100644 index 988b5845..00000000 --- a/MultiRPC/Assets/Svg files/InfoIcon.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/MultiRPC/Assets/Svg files/LogsIcon.svg b/MultiRPC/Assets/Svg files/LogsIcon.svg deleted file mode 100644 index 2dc41814..00000000 --- a/MultiRPC/Assets/Svg files/LogsIcon.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - Svg Vector Icons : http://www.onlinewebfonts.com/icon - - \ No newline at end of file diff --git a/MultiRPC/Assets/Svg files/MultiRPCLogo.svg b/MultiRPC/Assets/Svg files/MultiRPCLogo.svg deleted file mode 100644 index b1f6b5f0..00000000 --- a/MultiRPC/Assets/Svg files/MultiRPCLogo.svg +++ /dev/null @@ -1 +0,0 @@ -MultiRPCLogo \ No newline at end of file diff --git a/MultiRPC/Assets/Svg files/PencilIcon.svg b/MultiRPC/Assets/Svg files/PencilIcon.svg deleted file mode 100644 index ccebe9e4..00000000 --- a/MultiRPC/Assets/Svg files/PencilIcon.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/MultiRPC/Assets/Svg files/ProgramsIcon.svg b/MultiRPC/Assets/Svg files/ProgramsIcon.svg deleted file mode 100644 index 21aa65cc..00000000 --- a/MultiRPC/Assets/Svg files/ProgramsIcon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/MultiRPC/Assets/Svg files/SettingsIcon.svg b/MultiRPC/Assets/Svg files/SettingsIcon.svg deleted file mode 100644 index ef5c7ec9..00000000 --- a/MultiRPC/Assets/Svg files/SettingsIcon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/MultiRPC/Assets/Svg files/ShareIcon.svg b/MultiRPC/Assets/Svg files/ShareIcon.svg deleted file mode 100644 index ab80add0..00000000 --- a/MultiRPC/Assets/Svg files/ShareIcon.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/MultiRPC/Assets/Svg files/ShieldIcon.svg b/MultiRPC/Assets/Svg files/ShieldIcon.svg deleted file mode 100644 index 755fdffe..00000000 --- a/MultiRPC/Assets/Svg files/ShieldIcon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/MultiRPC/Assets/Svg files/ThemeIcon.svg b/MultiRPC/Assets/Svg files/ThemeIcon.svg deleted file mode 100644 index 19ae8ed9..00000000 --- a/MultiRPC/Assets/Svg files/ThemeIcon.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - -ThemeIcon - - - - - - - - - - - - - - - - - - - - - diff --git a/MultiRPC/Assets/Svg files/Update.cmd b/MultiRPC/Assets/Svg files/Update.cmd deleted file mode 100644 index b022753b..00000000 --- a/MultiRPC/Assets/Svg files/Update.cmd +++ /dev/null @@ -1,2 +0,0 @@ -SvgToXaml.exe BuildDict /inputdir "." /outputdir "." /outputname Icons -pause \ No newline at end of file diff --git a/MultiRPC/Assets/Svg files/WarningIcon.svg b/MultiRPC/Assets/Svg files/WarningIcon.svg deleted file mode 100644 index 40b1c420..00000000 --- a/MultiRPC/Assets/Svg files/WarningIcon.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - diff --git a/MultiRPC/Assets/Themes/DesignerTheme.xaml b/MultiRPC/Assets/Themes/DesignerTheme.xaml deleted file mode 100644 index 8698597d..00000000 --- a/MultiRPC/Assets/Themes/DesignerTheme.xaml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - Dark - - - - - - - - - \ No newline at end of file diff --git a/MultiRPC/Data.cs b/MultiRPC/Data.cs deleted file mode 100644 index 0fdf7998..00000000 --- a/MultiRPC/Data.cs +++ /dev/null @@ -1,53 +0,0 @@ -using System.Collections.Generic; - -namespace MultiRPC -{ - public static class Data - { - public static Dictionary MultiRPCImages = MakeImagesDictionary(); - - public static Dictionary MakeImagesDictionary() - { - return new Dictionary - { - {App.Text.NoImage, ""}, - {"Discord", "https://i.imgur.com/QN5WA4W.png"}, - {"MultiRPC", "https://i.imgur.com/d6OLF2z.png"}, - {"Firefox", "https://i.imgur.com/oTuovMT.png"}, - {"Firefox Nightly", "https://i.imgur.com/JBjTLUs.png"}, - {"Google", "https://i.imgur.com/DJjs5Yc.png"}, - {"Mel", "https://i.imgur.com/SUm8SwK.png"}, - {"Youtube", "https://i.imgur.com/Hc9DirJ.png"}, - {"Kappa", "https://i.imgur.com/kdUCRrj.png"}, - {"MmLol", "https://i.imgur.com/StXRONi.png"}, - {"Nyancat", "https://i.imgur.com/YoiJGh5.png"}, - {"Monstercat", "https://i.imgur.com/QTGPwi0.png"}, - {"Thonk", "https://i.imgur.com/P4Mvpmf.png"}, - {"Lul", "https://i.imgur.com/1Q1Nbin.png"}, - {"Pepe", "https://i.imgur.com/7ybyrw7.png"}, - {"Trollface", "https://i.imgur.com/tanLvrt.png"}, - {"Doge", "https://i.imgur.com/ytpmvjg.png"}, - {App.Text.Christmas, "https://i.imgur.com/NF2enEO.png"}, - {App.Text.Present, "https://i.imgur.com/qMfJKt6.png"}, - {"Neko", "https://i.imgur.com/l2RsYY7.png"}, - {App.Text.Popcorn, "https://i.imgur.com/xplfztu.png"}, - {"Skype", "https://i.imgur.com/PjQFB6d.png"}, - {App.Text.Games, "https://i.imgur.com/lPrT5BG.png"}, - {"Steam", "https://i.imgur.com/bKxJ7Lj.png"}, - {"Minecraft", "https://i.imgur.com/vnw6Z8X.png"}, - {"Coke", "https://i.imgur.com/GAsmn3P.png"} - }; - } - - public static string GetImageValue(string imageKey) - { - if (string.IsNullOrWhiteSpace(imageKey)) - { - return ""; - } - - MultiRPCImages.TryGetValue(imageKey, out var uri); - return uri; - } - } -} \ No newline at end of file diff --git a/MultiRPC/Functions/Animations.cs b/MultiRPC/Functions/Animations.cs deleted file mode 100644 index 450c266c..00000000 --- a/MultiRPC/Functions/Animations.cs +++ /dev/null @@ -1,78 +0,0 @@ -using System; -using System.Threading.Tasks; -using System.Windows; -using System.Windows.Media.Animation; - -namespace MultiRPC.Functions -{ - internal class Animations - { - public static async Task DoubleAnimation( - FrameworkElement element, - double to, - double from, - Storyboard storyboard = null, - Duration duration = new Duration(), - PropertyPath propertyPath = null, - IEasingFunction ease = null) - { - if (storyboard == null) - { - storyboard = new Storyboard(); - } - - if (propertyPath == null) - { - propertyPath = new PropertyPath(UIElement.OpacityProperty); - } - - //storyboard ??= new Storyboard(); - //propertyPath ??= new PropertyPath(UIElement.OpacityProperty); - - var fadeAnimation = new DoubleAnimation - { - From = from, - To = to, - Duration = !duration.HasTimeSpan ? new Duration(TimeSpan.FromSeconds(0.5)) : duration, - EasingFunction = ease ?? new QuadraticEase() - }; - - storyboard.Children.Add(fadeAnimation); - Storyboard.SetTargetName(fadeAnimation, element.Name); - Storyboard.SetTargetProperty(fadeAnimation, propertyPath); - storyboard.Begin(element); - await Task.Delay(fadeAnimation.Duration.TimeSpan); - } - - public static async Task ThicknessAnimation( - FrameworkElement element, - Thickness to, - Thickness from, - Duration duration = new Duration(), - PropertyPath propertyPath = null, - IEasingFunction ease = null) - { - if (propertyPath == null) - { - propertyPath = new PropertyPath(FrameworkElement.MarginProperty); - } - - //propertyPath ??= new PropertyPath(FrameworkElement.MarginProperty); - - var storyboard = new Storyboard(); - var fadeAnimation = new ThicknessAnimation - { - From = from, - To = to, - Duration = !duration.HasTimeSpan ? new Duration(TimeSpan.FromSeconds(0.3)) : duration, - EasingFunction = ease ?? new CircleEase() - }; - - storyboard.Children.Add(fadeAnimation); - Storyboard.SetTargetName(fadeAnimation, element.Name); - Storyboard.SetTargetProperty(fadeAnimation, propertyPath); - storyboard.Begin(element); - await Task.Delay(fadeAnimation.Duration.TimeSpan); - } - } -} \ No newline at end of file diff --git a/MultiRPC/Functions/BitmapDownloader.cs b/MultiRPC/Functions/BitmapDownloader.cs deleted file mode 100644 index 45218080..00000000 --- a/MultiRPC/Functions/BitmapDownloader.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using System.Threading.Tasks; -using System.Windows.Media; -using System.Windows.Media.Imaging; - -namespace MultiRPC.Functions -{ - public static class BitmapDownloader - { - public static async Task DownloadImage(this Uri uri) - { - var b = new BitmapImage(); - - b.BeginInit(); - b.UriSource = uri; - b.EndInit(); - b.DownloadFailed += Image_FailedLoading; - return b; - } - - private static void Image_FailedLoading(object sender, ExceptionEventArgs e) - { - App.Logging.ImageError(sender as BitmapImage, e); - } - } -} \ No newline at end of file diff --git a/MultiRPC/Functions/Checks.cs b/MultiRPC/Functions/Checks.cs deleted file mode 100644 index 44644857..00000000 --- a/MultiRPC/Functions/Checks.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System.Text; - -namespace MultiRPC.Functions -{ - public static class Checks - { - public static bool UnderAmountOfBytes(this string s, int byteLength) - { - return byteLength > Encoding.ASCII.GetBytes(s).Length; - } - } -} \ No newline at end of file diff --git a/MultiRPC/Functions/ClickOnceUpdater.cs b/MultiRPC/Functions/ClickOnceUpdater.cs deleted file mode 100644 index 078025d8..00000000 --- a/MultiRPC/Functions/ClickOnceUpdater.cs +++ /dev/null @@ -1,238 +0,0 @@ -using MultiRPC.GUI; -using MultiRPC.GUI.Controls; -using MultiRPC.GUI.Pages; -using MultiRPC.JsonClasses; -using System; -using System.ComponentModel; -using System.Deployment.Application; -using System.Diagnostics; -using System.Extra; -using System.IO; -using System.Net; -using System.Threading.Tasks; -using System.Windows; -using System.Windows.Shell; - -namespace MultiRPC.Functions -{ - class ClickOnceUpdater : IUpdate - { - public bool IsChecking { get; private set; } - public bool IsUpdating { get; private set; } - public bool BeenUpdated { get; private set; } - public string NewVersion { get; private set; } - - public async Task Check(bool showNoUpdateMessage = false) - { - if (BeenUpdated) - { - return; - } - - IsChecking = true; - - if (ApplicationDeployment.IsNetworkDeployed) - { - try - { - MainPage._MainPage.Dispatcher.Invoke(() => - { - MainPage._MainPage.pbUpdateProgress.Visibility = Visibility.Visible; - MainPage._MainPage.pbUpdateProgress.IsIndeterminate = true; - MainPage._MainPage.pbUpdateProgress.ToolTip = new ToolTip($"{App.Text.CheckingForUpdates}..."); - }); - if (Environment.OSVersion.Version.Major >= 6 && Environment.OSVersion.Version.Minor >= 1) - { - Application.Current.MainWindow.TaskbarItemInfo.ProgressState = - TaskbarItemProgressState.Indeterminate; - } - - var info = ApplicationDeployment.CurrentDeployment.CheckForDetailedUpdate(false); - - MainPage._MainPage.Dispatcher.Invoke(() => - { - MainPage._MainPage.pbUpdateProgress.IsIndeterminate = false; - MainPage._MainPage.pbUpdateProgress.ToolTip = null; - }); - if (Environment.OSVersion.Version.Major >= 6 && Environment.OSVersion.Version.Minor >= 1) - { - Application.Current.MainWindow.TaskbarItemInfo.ProgressState = TaskbarItemProgressState.None; - } - - if (info.UpdateAvailable) - { - NewVersion = info.AvailableVersion.ToString(); - try - { - using var client = new WebClient(); - await client.DownloadFileTaskAsync( -new[] { App.MultiRPCWebsiteRoot, "Changelog.txt" }.CombineToUri(), -FileLocations.ChangelogFileLocalLocation); - } - catch - { - App.Logging.Application($"{App.Text.CouldntDownload} {App.Text.Changelog}"); - } - - if (App.Config.AutoUpdate) - { - Update(); - } - else - { - var tick = DateTime.Now.Ticks; - await Application.Current.Dispatcher.InvokeAsync(async () => - { - if (await MainWindow.OpenWindow(new UpdatePage(NewVersion, tick), true, tick, false) != null) - { - IsChecking = false; - } - }); - - IsChecking = false; - } - } - else if (showNoUpdateMessage) - { - await CustomMessageBox.Show(App.Text.NoUpdate); - } - } - catch - { - App.Logging.Error("App", App.Text.UpdateCheckFailed); - MainPage._MainPage.Dispatcher.Invoke(() => - { - MainPage._MainPage.pbUpdateProgress.Visibility = Visibility.Collapsed; - MainPage._MainPage.pbUpdateProgress.IsIndeterminate = false; - MainPage._MainPage.pbUpdateProgress.ToolTip = null; - }); - if (Environment.OSVersion.Version.Major >= 6 && Environment.OSVersion.Version.Minor >= 1) - { - Application.Current.MainWindow.TaskbarItemInfo.ProgressState = TaskbarItemProgressState.None; - } - } - } - - IsChecking = false; - } - - public async Task Update() - { - if (BeenUpdated) - { - return; - } - - IsUpdating = true; - MainPage._MainPage.Dispatcher.Invoke(() => - { - MainPage._MainPage.pbUpdateProgress.Visibility = Visibility.Visible; - MainPage._MainPage.pbUpdateProgress.IsIndeterminate = true; - MainPage._MainPage.pbUpdateProgress.ToolTip = new ToolTip($"{App.Text.StartingUpdate}..."); - }); - if (Environment.OSVersion.Version.Major >= 6 && Environment.OSVersion.Version.Minor >= 1) - { - Application.Current.MainWindow.TaskbarItemInfo.ProgressState = TaskbarItemProgressState.Indeterminate; - } - - try - { - ApplicationDeployment.CurrentDeployment.UpdateCompleted += CurrentDeployment_UpdateCompleted; - ApplicationDeployment.CurrentDeployment.UpdateProgressChanged += - CurrentDeployment_UpdateProgressChanged; - ApplicationDeployment.CurrentDeployment.UpdateAsync(); - } - catch (Exception e) - { - IsUpdating = false; - MainPage._MainPage.Dispatcher.Invoke(() => - { - MainPage._MainPage.pbUpdateProgress.Visibility = Visibility.Collapsed; - MainPage._MainPage.pbUpdateProgress.IsIndeterminate = false; - MainPage._MainPage.pbUpdateProgress.ToolTip = null; - }); - if (Environment.OSVersion.Version.Major >= 6 && Environment.OSVersion.Version.Minor >= 1) - { - Application.Current.MainWindow.TaskbarItemInfo.ProgressState = TaskbarItemProgressState.None; - } - - var tick = DateTime.Now.Ticks; - await MainWindow.OpenWindow(new UpdateFailedPage(e, tick), true, tick, false); - } - } - - private static async void CurrentDeployment_UpdateProgressChanged(object sender, - DeploymentProgressChangedEventArgs e) - { - var state = App.Text.Unknown; - switch (e.State) - { - case DeploymentProgressState.DownloadingApplicationFiles: - state = App.Text.DownloadingFiles; - break; - case DeploymentProgressState.DownloadingApplicationInformation: - state = App.Text.GetAppInfo; - break; - case DeploymentProgressState.DownloadingDeploymentInformation: - state = App.Text.DownloadingDeploymentInfo; - break; - } - - await MainPage._MainPage.Dispatcher.InvokeAsync(() => - { - MainPage._MainPage.pbUpdateProgress.Value = e.ProgressPercentage; - MainPage._MainPage.pbUpdateProgress.ToolTip = new ToolTip($"{state} ({e.ProgressPercentage}%/100%)"); - }); - if (Environment.OSVersion.Version.Major >= 6 && Environment.OSVersion.Version.Minor >= 1) - { - Application.Current.MainWindow.TaskbarItemInfo.ProgressState = TaskbarItemProgressState.Normal; - Application.Current.MainWindow.TaskbarItemInfo.ProgressValue = e.ProgressPercentage; - } - } - - private async void CurrentDeployment_UpdateCompleted(object sender, AsyncCompletedEventArgs e) - { - IsUpdating = false; - if (e.Error == null) - { - BeenUpdated = true; - if (App.Config.AutoUpdate) - { - await Application.Current.Dispatcher.InvokeAsync(() => - { - var tick = DateTime.Now.Ticks; - MainWindow.OpenWindow(new UpdatePage(NewVersion, tick), true, tick, false); - }); - } - else - { - if (File.Exists(FileLocations.MultiRPCStartLink)) - { - Process.Start(FileLocations.MultiRPCStartLink, "--fromupdate"); - } - - Application.Current.Shutdown(); - } - } - else - { - await Application.Current.Dispatcher.InvokeAsync(() => - { - var tick = DateTime.Now.Ticks; - MainWindow.OpenWindow(new UpdateFailedPage(e.Error, tick), true, tick, false); - }); - } - - MainPage._MainPage.Dispatcher.Invoke(() => - { - MainPage._MainPage.pbUpdateProgress.Visibility = Visibility.Collapsed; - MainPage._MainPage.pbUpdateProgress.IsIndeterminate = false; - MainPage._MainPage.pbUpdateProgress.ToolTip = null; - }); - if (Environment.OSVersion.Version.Major >= 6 && Environment.OSVersion.Version.Minor >= 1) - { - Application.Current.MainWindow.TaskbarItemInfo.ProgressState = TaskbarItemProgressState.None; - } - } - } -} diff --git a/MultiRPC/Functions/FileWatch.cs b/MultiRPC/Functions/FileWatch.cs deleted file mode 100644 index 2600d759..00000000 --- a/MultiRPC/Functions/FileWatch.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System.IO; -using System.Threading.Tasks; -using System.Windows; -using MultiRPC.GUI.Pages; -using MultiRPC.JsonClasses; - -namespace MultiRPC.Functions -{ - public static class FileWatch - { - public static void Create() - { - var watcher = new FileSystemWatcher - { - Filter = "*.rpc", - Path = FileLocations.ConfigFolder, - EnableRaisingEvents = true - }; - watcher.Created += Watcher_FileCreated; - } - - private static async void Watcher_FileCreated(object sender, FileSystemEventArgs e) - { - if (e.Name == FileLocations.OpenFileName) - { - await Application.Current.Dispatcher.InvokeAsync(async () => - { - await Application.Current.MainWindow.Dispatcher.InvokeAsync(async () => - { - await Task.Delay(1000); - string[] text; - using (var reader = File.OpenText(FileLocations.OpenFileLocalLocation)) - { - text = (await reader.ReadToEndAsync()).Split('\r', '\n'); - } - - if (text[0] == "LOADCUSTOM") //Load a custom profile - { - CustomPage.StartCustomProfileLogic(text[2]); - } - else - { - Application.Current.MainWindow.WindowState = WindowState.Normal; - Application.Current.MainWindow.Activate(); - } - - try - { - File.Delete(FileLocations.OpenFileLocalLocation); - } - catch - { - App.Logging.Application($"{App.Text.CouldntDelete} {FileLocations.OpenFileLocalLocation}"); - } - }); - }); - } - } - } -} \ No newline at end of file diff --git a/MultiRPC/Functions/IUpdate.cs b/MultiRPC/Functions/IUpdate.cs deleted file mode 100644 index 097924e7..00000000 --- a/MultiRPC/Functions/IUpdate.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -using System.Threading.Tasks; - -namespace MultiRPC.Functions -{ - interface IUpdate - { - bool IsChecking { get; } - bool IsUpdating { get; } - bool BeenUpdated { get; } - string NewVersion { get; } - - Task Check(bool showNoUpdateMessage = false); - - Task Update(); - } -} diff --git a/MultiRPC/Functions/Logging.cs b/MultiRPC/Functions/Logging.cs deleted file mode 100644 index 0f19e880..00000000 --- a/MultiRPC/Functions/Logging.cs +++ /dev/null @@ -1,125 +0,0 @@ -using System; -using System.ComponentModel; -using System.Linq; -using System.Windows; -using System.Windows.Media; -using System.Windows.Media.Imaging; -using DiscordRPC.Logging; -using MultiRPC.GUI.Pages; - -namespace MultiRPC.Functions -{ - public class Logging : INotifyPropertyChanged, ILogger - { - public Logging() - { - Application(App.Text.LoggerHasStarted); - } - - private string _logText; - - public string LogText - { - set - { - if (_logText != value) - { - _logText = value; - OnPropertyChanged("LogText"); - } - } - get => _logText; - } - -#if DEBUG - private static readonly LogLevel _level = LogLevel.Trace; -#else - private static readonly LogLevel _level = LogLevel.Info; -#endif - public LogLevel Level { get; set; } = _level; - - public event PropertyChangedEventHandler PropertyChanged; - - private void OnPropertyChanged(string propertyName) - { - PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); - } - - ///

[App] Text - public void Application(string message) - { - LogText += LogEvent("App", message); - } - - /// [Discord] Text - public void Discord(string message) - { - LogText += LogEvent("Discord", message); - } - - /// [Custom Error] Error message - public void Error(string name, string message) - { - LogText += LogEvent($"{name} {App.Text.Error}", message); - } - - /// [Custom Error] Exception error - public void Error(string name, Exception ex) - { - LogText += LogEvent($"{name} {App.Text.Error}", ex.Message); - } - - /// [Image Error] Failed to download - public void ImageError(BitmapImage img, ExceptionEventArgs ex) - { - if (ex == null) - { - LogText += LogEvent(App.Text.ImageError, - $"{App.Text.FailedToDownload} ({img.UriSource.AbsoluteUri}) {App.Text.NetworkError}"); - } - else - { - LogText += LogEvent(App.Text.ImageError, - $"{App.Text.FailedToDownload} ({img.UriSource.AbsoluteUri}) {ex.ErrorException.Message}"); - } - } - - public string LogEvent(string name, string message) - { - return $"[{name}]: {message}\r\n\r\n"; - } - - public void Trace(string message, params object[] args) - { - LogText += LogEvent($"RPC {App.Text.Trace}", RPCMessage(message, args)); - } - - public void Info(string message, params object[] args) - { - LogText += LogEvent($"RPC {App.Text.Info}", RPCMessage(message, args)); - } - - public void Warning(string message, params object[] args) - { - LogText += LogEvent($"RPC {App.Text.Warning}", RPCMessage(message, args)); - } - - public void Error(string message, params object[] args) - { - if (args.Contains("Access to the path is denied.")) - { - MainPage._MainPage.frmRPCPreview.Dispatcher.Invoke(() => - { - RPC.Shutdown(); - MessageBox.Show(App.Text.NeedAdmin, App.Text.AdminRequired, MessageBoxButton.OK, MessageBoxImage.Information); - }); - } - LogText += LogEvent($"RPC {App.Text.Error}", RPCMessage(message, args)); - } - - private string RPCMessage(string message, params object[] args) - { - return message + (args != null && args.Length > 0 ? "\r\nArgs\r\n" + string.Join("\r\n", args) : ""); - } - } -} \ No newline at end of file diff --git a/MultiRPC/Functions/SimpleUpdater.cs b/MultiRPC/Functions/SimpleUpdater.cs deleted file mode 100644 index 75eaff37..00000000 --- a/MultiRPC/Functions/SimpleUpdater.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -using System.Threading.Tasks; - -namespace MultiRPC.Functions -{ - class SimpleUpdater : IUpdate - { - public bool IsChecking { get; private set; } - public bool IsUpdating { get; private set; } - public bool BeenUpdated { get; private set; } - public string NewVersion { get; private set; } - - public Task Check(bool showNoUpdateMessage = false) - { - return Task.CompletedTask; - } - - public Task Update() - { - return Task.CompletedTask; - } - } -} diff --git a/MultiRPC/Functions/TriggerWatch.cs b/MultiRPC/Functions/TriggerWatch.cs deleted file mode 100644 index b6d1934c..00000000 --- a/MultiRPC/Functions/TriggerWatch.cs +++ /dev/null @@ -1,131 +0,0 @@ -//using System; -//using System.Collections.Generic; -//using System.Diagnostics; -//using System.Globalization; -//using System.IO; -//using System.Linq; -//using System.Management; -//using System.Security.Principal; -//using System.Text; -//using System.Threading.Tasks; -//using MultiRPC.GUI.Pages; -//using MultiRPC.JsonClasses; - -//namespace MultiRPC.Functions -//{ -// public static class TriggerWatch -// { -// private static Process[] _processes; -// private static Process _process; - -// static TriggerWatch() -// { -// if (IsElevated) -// { -// var processStartEvent = new ManagementEventWatcher("SELECT * FROM Win32_ProcessStartTrace"); -// processStartEvent.EventArrived += ((sender, e) => ProcessStartEvent(sender, e.NewEvent.Properties["ProcessName"].Value.ToString())); -// processStartEvent.Scope.Options.EnablePrivileges = true; - -// processStartEvent.Start(); -// } -// else -// { -// _ = Task.Run(async () => -// { -// _processes = Process.GetProcesses(); -// while (true) -// { -// var processes = Process.GetProcesses(); -// if (processes.Length > _processes.Length) -// { -// List processesNames = new List(_processes.Length); -// for (int i = 0; i < _processes.LongLength; i++) -// { -// processesNames.Add(_processes[i].ProcessName); -// } -// for (int j = 0; j < processes.LongLength; j++) -// { -// if (!processesNames.Contains(processes[j].ProcessName)) -// { -// ProcessStartEvent(null, processes[j].ProcessName + ".exe"); -// } -// } -// } -// _processes = Process.GetProcesses(); -// await Task.Delay(100); -// } -// }); -// } -// } - -// private static bool IsElevated => new WindowsPrincipal(WindowsIdentity.GetCurrent()).IsInRole(WindowsBuiltInRole.Administrator); - -// #region Process -// private static void ProcessStartEvent(object sender, string processName) -// { -// var processes = Process.GetProcesses(); -// for (int i = 0; i < MasterCustomPage.Profiles.Count; i++) -// { -// var profile = MasterCustomPage.Profiles.ElementAt(i).Value; - -// string btnStartContent = ""; -// if (MainPage._MainPage != null) -// { -// MainPage._MainPage.Dispatcher.Invoke(() => -// { -// if (MainPage._MainPage.btnStart != null) -// { -// btnStartContent = MainPage._MainPage.btnStart.Content.ToString(); -// } -// }); -// } - -// App.Logging.Application(processName); -// if (!RPC.Equals(RPC.Presence, profile) || (RPC.Equals(RPC.Presence, profile) && btnStartContent != App.Text.Shutdown) && processName == profile.Triggers.Process) -// { -// for (int j = 0; j < processes.LongLength; j++) -// { -// App.Logging.Application(processes[j].ProcessName); -// if (processes[j].ProcessName + ".exe" == profile.Triggers.Process) -// { -// if (_process != null) -// { -// _process.Exited -= Process_Exited; -// } - -// _process = processes[j]; -// _process.EnableRaisingEvents = true; -// _process.Exited += Process_Exited; -// CustomPage.StartCustomProfileLogic(profile.Name); -// break; -// } -// } -// break; -// } -// } -// } - -// private static void Process_Exited(object sender, EventArgs e) -// { -// for (int i = 0; i < MasterCustomPage.Profiles.Count; i++) -// { -// var profile = MasterCustomPage.Profiles.ElementAt(i).Value; - -// if (RPC.Equals(RPC.Presence, profile) && ((Process)sender).ProcessName + ".exe" == profile.Triggers.Process) -// { -// RPC.Shutdown(); -// break; -// } -// } -// } -// #endregion - -// /// -// /// Just a void to trigger the static -// /// -// public static void Start() -// { -// return; -// } -// } -//} diff --git a/MultiRPC/Functions/Updater.cs b/MultiRPC/Functions/Updater.cs deleted file mode 100644 index e156ceee..00000000 --- a/MultiRPC/Functions/Updater.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System.Threading.Tasks; - -namespace MultiRPC.Functions -{ - public static class Updater - { - static Updater() - { -#if NETCORE - _Updater = new SimpleUpdater(); -#else - _Updater = new ClickOnceUpdater(); -#endif - } - - private static IUpdate _Updater; - - public static bool IsChecking => _Updater.IsChecking; - public static bool IsUpdating => _Updater.IsUpdating; - public static bool BeenUpdated => _Updater.BeenUpdated; - - public static async Task Check(bool showNoUpdateMessage = false) - { - _Updater?.Check(showNoUpdateMessage); - } - - public static async Task Update() - { - _Updater?.Update(); - } - } -} \ No newline at end of file diff --git a/MultiRPC/Functions/Uri.Extra.cs b/MultiRPC/Functions/Uri.Extra.cs deleted file mode 100644 index 9bb99bb9..00000000 --- a/MultiRPC/Functions/Uri.Extra.cs +++ /dev/null @@ -1,73 +0,0 @@ -using MultiRPC; -using System.Collections.Generic; -using System.Diagnostics; -using System.Web; - -namespace System.Extra -{ - public static class Uri - { - public static string Combine(this string[] strings) - { - var uri = ""; - for (var i = 0; i < strings.Length; i++) - { - uri += $"{strings[i]}/"; - } - - return uri.Remove(uri.Length - 1); - } - - public static System.Uri CombineToUri(this string[] strings) - { - return new System.Uri(strings.Combine()); - } - - public static void OpenWebsite(this System.Uri uri) - { - uri.AbsoluteUri.OpenWebsite(); - } - - public static void OpenWebsite(this string uri) - { -#if NETCORE - Process.Start(new ProcessStartInfo("cmd", $"/c start {uri}") - { - CreateNoWindow = true - }); -#else - Process.Start(uri); -#endif - } - - public static List GetQueryStringParameters() - { -#if !NETCORE - try - { - if (Deployment.Application.ApplicationDeployment.IsNetworkDeployed) - { - var nameValueTable = HttpUtility.ParseQueryString(Deployment.Application.ApplicationDeployment.CurrentDeployment.ActivationUri.Query); - var list = new List(); - foreach (var item in nameValueTable.AllKeys) - { - list.Add(item); - var itemContent = nameValueTable.GetValues(item); - if (itemContent != null) - { - list.AddRange(itemContent); - } - } - - return list.Count > 0 ? list : null; - } - } - catch (Exception e) - { - App.Logging.Error("", e); - } -#endif - return null; - } - } -} \ No newline at end of file diff --git a/MultiRPC/Functions/Utils.cs b/MultiRPC/Functions/Utils.cs deleted file mode 100644 index c5e553e0..00000000 --- a/MultiRPC/Functions/Utils.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using System.Net.NetworkInformation; -using System.Text; - -namespace MultiRPC.Functions -{ - public static class Utils - { - public static string Base64Encode(string plainText) - { - var plainTextBytes = Encoding.UTF8.GetBytes(plainText); - var s = Convert.ToBase64String(plainTextBytes); - return s; - } - - public static string Base64Decode(string base64EncodedData) - { - var base64EncodedBytes = Convert.FromBase64String(base64EncodedData); - var s = Encoding.UTF8.GetString(base64EncodedBytes); - return s; - } - - public static bool NetworkIsAvailable() - { - var networkInterfaces = NetworkInterface.GetAllNetworkInterfaces(); - for (var i = 0; i < networkInterfaces.LongLength; i++) - { - var item = networkInterfaces[i]; - if (item.NetworkInterfaceType == NetworkInterfaceType.Loopback) - { - continue; - } - - if (item.Name.ToLower().Contains("virtual") || item.Description.ToLower().Contains("virtual")) - { - continue; //Exclude virtual networks set up by VMWare and others - } - - if (item.OperationalStatus == OperationalStatus.Up) - { - return true; - } - } - - return false; - } - } -} \ No newline at end of file diff --git a/MultiRPC/GUI/Controls/MultiRPCAndCustomDictionary.xaml b/MultiRPC/GUI/Controls/MultiRPCAndCustomDictionary.xaml deleted file mode 100644 index 34782670..00000000 --- a/MultiRPC/GUI/Controls/MultiRPCAndCustomDictionary.xaml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - \ No newline at end of file diff --git a/MultiRPC/GUI/Controls/TabPage.xaml b/MultiRPC/GUI/Controls/TabPage.xaml deleted file mode 100644 index aa0240d6..00000000 --- a/MultiRPC/GUI/Controls/TabPage.xaml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MultiRPC/GUI/Controls/TabPage.xaml.cs b/MultiRPC/GUI/Controls/TabPage.xaml.cs deleted file mode 100644 index fb9478c7..00000000 --- a/MultiRPC/GUI/Controls/TabPage.xaml.cs +++ /dev/null @@ -1,148 +0,0 @@ -using System; -using System.Threading.Tasks; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Shapes; -using MultiRPC.Functions; - -namespace MultiRPC.GUI.Controls -{ - /// - /// Interaction logic for TabPage.xaml - /// - public partial class TabPage : Page - { - private Grid _selectedGrid; - public TabItem[] Tabs; - - public TabPage(TabItem[] tabs) - { - var gridToPress = 0; - - InitializeComponent(); - Tabs = tabs; - for (var i = 0; i < tabs.LongLength; i++) - { - if (tabs[i].IsActive && gridToPress == 0) - { - gridToPress = i; - } - - Grid grid = new Grid - { - Margin = new Thickness(10, 0, 0, 0), - Background = Brushes.Transparent, - RowDefinitions = - { - new RowDefinition - { - Height = new GridLength(0, GridUnitType.Auto) - }, - new RowDefinition - { - Height = new GridLength(1, GridUnitType.Star) - } - }, - Tag = tabs[i].Page - }; - TextBlock textBlock = new TextBlock - { - Text = tabs[i].TabName - }; - Rectangle rectangle = new Rectangle - { - VerticalAlignment = VerticalAlignment.Bottom, - Height = 0, - Margin = new Thickness(-2, 3, -2, 0), - Name = $"rec{i}", - }; - Grid.SetRow(rectangle, 1); - rectangle.SetResourceReference(Shape.FillProperty, "AccentColour3SCBrush"); - RegisterName($"rec{i}", rectangle); - - grid.Children.Add(textBlock); - grid.Children.Add(rectangle); - grid.MouseEnter += Grid_MouseEnter; - grid.MouseLeave += Grid_MouseLeave; - grid.MouseDown += Grid_MouseDown; - spTabContainer.Children.Add(grid); - } - - var mouseDownEvent = - new MouseButtonEventArgs(Mouse.PrimaryDevice, (int) DateTime.Now.Ticks, MouseButton.Left) - { - RoutedEvent = MouseDownEvent, - Source = this - }; - spTabContainer.Children[gridToPress].RaiseEvent(mouseDownEvent); - } - - /// - /// Updates Tabs Menu Text - /// - /// New tab Names (give them in the order you gave the tabs or the tabs will have the wrong text!!!) - /// - public Task UpdateText(params string[] tabNames) - { - for (var i = 0; i < spTabContainer.Children.Count; i++) - { - var grid = (Grid) spTabContainer.Children[i]; - ((TextBlock) grid.Children[0]).Text = tabNames[i]; - } - - return Task.CompletedTask; - } - - private void Grid_MouseDown(object sender, MouseButtonEventArgs e) - { - MouseDownLogic((Grid) sender); - } - - private void Grid_MouseLeave(object sender, MouseEventArgs e) - { - MouseEnterLeaveLogic((Grid) sender, 0); - } - - private void Grid_MouseEnter(object sender, MouseEventArgs e) - { - MouseEnterLeaveLogic((Grid) sender, 1); - } - - private async Task MouseEnterLeaveLogic(Grid grid, double to) - { - if (_selectedGrid != grid) - { - var rec = (Rectangle) grid.Children[1]; - Animations.DoubleAnimation(rec, to, rec.Height, propertyPath: new PropertyPath(HeightProperty), - duration: new Duration(TimeSpan.FromSeconds(0.15))); - } - } - - private async Task MouseDownLogic(Grid grid) - { - Rectangle rec; - if (_selectedGrid != null) - { - rec = (Rectangle) _selectedGrid.Children[1]; - Animations.DoubleAnimation(rec, 0, rec.Height, propertyPath: new PropertyPath(HeightProperty), - duration: new Duration(TimeSpan.FromSeconds(0.15))); - } - - _selectedGrid = grid; - - rec = (Rectangle) grid.Children[1]; - Animations.DoubleAnimation(rec, 3, rec.Height, propertyPath: new PropertyPath(HeightProperty), - duration: new Duration(TimeSpan.FromSeconds(0.3))); - frmContent.Navigate(grid.Tag); - } - } - - public class TabItem - { - public string TabName; - public object Page; - public bool IsActive; - } -} \ No newline at end of file diff --git a/MultiRPC/GUI/Controls/ToolTip.cs b/MultiRPC/GUI/Controls/ToolTip.cs deleted file mode 100644 index 1b71e4ee..00000000 --- a/MultiRPC/GUI/Controls/ToolTip.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Threading.Tasks; -using System.Windows; - -namespace MultiRPC.GUI.Controls -{ - /// - /// Edited Tooltip to have a string parameter, nothing special - /// - public class ToolTip : System.Windows.Controls.ToolTip - { - /// - /// Tooltip with string parameter - /// - /// Text to show on the tooltip - public ToolTip(string text) - { - Content = text; - UISetup(); - } - - public ToolTip() - { - UISetup(); - } - - private Task UISetup() - { - BorderThickness = new Thickness(1); - SetResourceReference(BorderBrushProperty, "AccentColour1SCBrush"); - SetResourceReference(BackgroundProperty, "AccentColour2SCBrush"); - - return Task.CompletedTask; - } - } -} \ No newline at end of file diff --git a/MultiRPC/GUI/MainWindow.xaml b/MultiRPC/GUI/MainWindow.xaml deleted file mode 100644 index b8b92798..00000000 --- a/MultiRPC/GUI/MainWindow.xaml +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/MultiRPC/GUI/MainWindow.xaml.cs b/MultiRPC/GUI/MainWindow.xaml.cs deleted file mode 100644 index 2ab353b4..00000000 --- a/MultiRPC/GUI/MainWindow.xaml.cs +++ /dev/null @@ -1,472 +0,0 @@ -using System; -using System.ComponentModel; -using System.Extra; -using System.IO; -using System.Threading.Tasks; -using System.Windows; -using System.Windows.Controls; -using System.Windows.Input; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; -using Hardcodet.Wpf.TaskbarNotification; -using MultiRPC.Functions; -using MultiRPC.GUI.Pages; -using MultiRPC.GUI.Views; -using MultiRPC.JsonClasses; -using Path = System.IO.Path; -using ToolTip = MultiRPC.GUI.Controls.ToolTip; - -namespace MultiRPC.GUI -{ - /// - /// Interaction logic for MainWindow.xaml - /// - public partial class MainWindow : Window - { - private static bool firstRun = true; - private readonly Storyboard _openStoryboard = new Storyboard(); - private Storyboard _closeStoryboard; - private DateTime _timeWindowWasDeactivated; - public TaskbarIcon TaskbarIcon; - - public object ToReturn { get; private set; } - protected long WindowID; //This is so we can know that the window we look for is the window we are looking for - - public MainWindow() - { - if (App.Config.Debug) - { - try - { - InitializeComponent(); - Title += (App.IsAdministrator ? " (Administrator)" : ""); - tblTitle.Text = Title; - if (this != Application.Current.MainWindow) - { - return; - } - - var mainPage = new MainPage(); - StartLogic(mainPage); - mainPage.frmContent.Navigated += MainPagefrmContent_OnNavigated; - - TaskbarIcon = new TaskbarIcon - { - IconSource = Icon - }; - TaskbarIcon.TrayLeftMouseDown += IconOnTrayLeftMouseDown; - TaskbarIcon.TrayToolTip = new ToolTip(App.Text.HideMultiRPC); - } - catch (Exception ex) - { - MessageBox.Show(ex.ToString(), "Main app error", MessageBoxButton.OK, MessageBoxImage.Error); - } - } - else - { - InitializeComponent(); - Title += (App.IsAdministrator ? " (Administrator)" : ""); - tblTitle.Text = Title; - if (this != Application.Current.MainWindow) - { - return; - } - - var mainPage = new MainPage(); - StartLogic(mainPage); - mainPage.frmContent.Navigated += MainPagefrmContent_OnNavigated; - - TaskbarIcon = new TaskbarIcon - { - IconSource = Icon - }; - TaskbarIcon.TrayLeftMouseDown += IconOnTrayLeftMouseDown; - TaskbarIcon.TrayToolTip = new ToolTip(App.Text.HideMultiRPC); - } - } - - private MainWindow(Page page, bool minButton = true) - { - - InitializeComponent(); - StartLogic(page); - ShowInTaskbar = false; - Title = $"MultiRPC - {page.Title} {(App.IsAdministrator ? "(Administrator)" : "")}"; - tblTitle.Text = Title; - - if (!minButton) - { - btnMin.Visibility = Visibility.Collapsed; - } - } - - private void MakeWinAnimation(Storyboard storyboard, double from = 1, double to = 0, - bool addEventHandler = false, object parameter = null, Duration lengthToRun = new Duration()) - { - if (!lengthToRun.HasTimeSpan) - { - lengthToRun = new Duration(TimeSpan.FromSeconds(0.4)); - } - - if (parameter == null) - { - parameter = OpacityProperty; - } - - if (string.IsNullOrWhiteSpace(Name)) - { - Name = "win" + DateTime.Now.Ticks; - RegisterName(Name, this); - } - - var winOpacityAnimation = new DoubleAnimation - { - From = from, - To = to, - Duration = lengthToRun, - EasingFunction = new BackEase() - }; - - storyboard.Children.Add(winOpacityAnimation); - Storyboard.SetTargetName(winOpacityAnimation, Name); - Storyboard.SetTargetProperty(winOpacityAnimation, new PropertyPath(parameter)); - if (addEventHandler) - { - storyboard.Completed += OpenCloseStoryboard_Completed; - } - } - - public static MainWindow GetWindow(long windowID) - { - for (var i = 0; i < Application.Current.Windows.Count; i++) - { - if (Application.Current.Windows[i] is MainWindow mainWindow && mainWindow.WindowID == windowID) - { - return mainWindow; - } - } - - return null; - } - - private void StartLogic(Page page) - { - frmContent.Content = page; - } - - private void IconOnTrayLeftMouseDown(object sender, RoutedEventArgs e) - { - var timeSpan = DateTime.Now.Subtract(_timeWindowWasDeactivated); - if (timeSpan.TotalSeconds < 1 || WindowState == WindowState.Minimized) - { - WindowState = WindowState == WindowState.Normal ? WindowState.Minimized : WindowState.Normal; - } - - if (WindowState == WindowState.Normal) - { - Activate(); - } - } - - public static Task OpenWindow(Page page, bool isDialog, long tick, bool minButton, - Action otherSetup = null) - { - var window = new MainWindow(page, minButton) - { - WindowID = tick, - Owner = Application.Current.MainWindow, - ResizeMode = ResizeMode.CanMinimize, - WindowStartupLocation = WindowStartupLocation.CenterOwner - }; - window.Loaded += Window_Loaded; - otherSetup?.Invoke(window); //This allows pages that need more hooks to get hooked - - if (isDialog) - { - window.ShowDialog(); - } - else - { - window.Show(); - } - - return Task.FromResult(window.ToReturn); - } - - private static void Window_Loaded(object sender, RoutedEventArgs e) - { - ((MainWindow) sender).Activate(); - } - - public static Task CloseWindow(long windowID, object returnObject = null) - { - for (var i = 0; i < Application.Current.Windows.Count; i++) - { - if (Application.Current.Windows[i] is MainWindow mainWindow && mainWindow.WindowID == windowID) - { - mainWindow.ToReturn = returnObject; - mainWindow.ShowInTaskbar = false; - mainWindow._closeStoryboard = new Storyboard(); - mainWindow.MakeWinAnimation(mainWindow._closeStoryboard, addEventHandler: true); - mainWindow._closeStoryboard.Begin(mainWindow); - break; - } - } - - return Task.CompletedTask; - } - - private void MainWindow_ContentRendered(object sender, EventArgs e) - { - - if (!File.Exists(App.Config.ActiveTheme)) - { - App.Config.ActiveTheme = Path.Combine("Assets", "Themes", "DarkTheme" + Theme.ThemeExtension); - App.Config.Save(); - } - - if (App.Config.Debug) - { - try - { - ThemeEditorPage.UpdateGlobalUI(); - MakeWinAnimation(_openStoryboard, 0, 1); - _openStoryboard.Begin(this); - - if (firstRun) - { - MainPage._MainPage.frmRPCPreview.Content = new RPCPreview(RPCPreview.ViewType.Default); - firstRun = false; - } - } - catch (Exception ex) - { - MessageBox.Show(ex.ToString(), "UI error", MessageBoxButton.OK, MessageBoxImage.Error); - } - } - else - { - ThemeEditorPage.UpdateGlobalUI(); - MakeWinAnimation(_openStoryboard, 0, 1); - _openStoryboard.Begin(this); - - if (firstRun) - { - MainPage._MainPage.frmRPCPreview.Content = new RPCPreview(RPCPreview.ViewType.Default); - firstRun = false; - } - } - } - - private void RecHandle_OnMouseDown(object sender, MouseButtonEventArgs e) - { - if (e.LeftButton == MouseButtonState.Pressed) - { - DragMove(); - } - } - - private void Min_OnClick(object sender, RoutedEventArgs e) - { - WindowState = WindowState.Minimized; - } - - private void Close_OnClick(object sender, RoutedEventArgs e) - { - ShowInTaskbar = false; - _closeStoryboard = new Storyboard(); - MakeWinAnimation(_closeStoryboard, addEventHandler: true); - _closeStoryboard.Begin(this); - } - - private void OpenCloseStoryboard_Completed(object sender, EventArgs e) - { - Close(); - } - - private void MainWindow_OnSizeChanged(object sender, SizeChangedEventArgs e) - { - if (Application.Current.MainWindow != this) - { - return; - } - - if (Environment.OSVersion.Version.Major >= 6 && Environment.OSVersion.Version.Minor >= 1) - { - TaskbarItemInfo = new TaskbarItemInfo - { - Description = "MultiRPC", - ThumbnailClipMargin = new Thickness(ActualWidth - 265, 41, 9, ActualHeight - 126) - }; - } - } - - private void Close_OnMouseEnter(object sender, MouseEventArgs e) - { - plgCloseIcon.Fill = Brushes.White; - } - - private void Close_OnMouseLeave(object sender, MouseEventArgs e) - { - plgCloseIcon.SetResourceReference(Shape.FillProperty, "TextColourSCBrush"); - } - - private void MainPagefrmContent_OnNavigated(object sender, NavigationEventArgs e) - { - if (App.Config.Debug) - { - try - { - if (frmContent.Content != null && Application.Current.MainWindow == this) - { - var runCode = !RPC.IsRPCRunning; - var content = ((Frame)sender).Content; - - if (runCode) - { - switch (content) - { - case MultiRPCPage _: - ((MainPage)frmContent.Content).btnStart.Content = $"{App.Text.Start} MultiRPC"; - break; - case MasterCustomPage _: - ((MainPage)frmContent.Content).btnStart.Content = App.Text.StartCustom; - break; - } - } - else - { - ((MainPage)frmContent.Content).btnUpdate.IsEnabled = true; - switch (content) - { - case MultiRPCPage _ when RPC.Type != RPC.RPCType.MultiRPC: - case MasterCustomPage _ when RPC.Type != RPC.RPCType.Custom: - ((MainPage)frmContent.Content).btnUpdate.IsEnabled = false; - break; - default: - { - if (!(content is MasterCustomPage) && !(content is MultiRPCPage)) - { - ((MainPage)frmContent.Content).btnUpdate.IsEnabled = false; - } - - break; - } - } - } - } - } - catch (Exception ex) - { - MessageBox.Show(ex.ToString(), "Main app error", MessageBoxButton.OK, MessageBoxImage.Error); - } - } - else - { - if (frmContent.Content != null && Application.Current.MainWindow == this) - { - var runCode = !RPC.IsRPCRunning; - var content = ((Frame)sender).Content; - - if (runCode) - { - switch (content) - { - case MultiRPCPage _: - ((MainPage)frmContent.Content).btnStart.Content = $"{App.Text.Start} MultiRPC"; - break; - case MasterCustomPage _: - ((MainPage)frmContent.Content).btnStart.Content = App.Text.StartCustom; - break; - } - } - else - { - ((MainPage)frmContent.Content).btnUpdate.IsEnabled = true; - switch (content) - { - case MultiRPCPage _ when RPC.Type != RPC.RPCType.MultiRPC: - case MasterCustomPage _ when RPC.Type != RPC.RPCType.Custom: - ((MainPage)frmContent.Content).btnUpdate.IsEnabled = false; - break; - default: - { - if (!(content is MasterCustomPage) && !(content is MultiRPCPage)) - { - ((MainPage)frmContent.Content).btnUpdate.IsEnabled = false; - } - - break; - } - } - } - } - } - } - - private void MainWindow_OnActivateChanged(object sender, EventArgs e) - { - if (App.Config.Debug) - { - try - { - Animations.ThicknessAnimation(WindowsContent, IsActive ? new Thickness(1) : new Thickness(0), - WindowsContent.BorderThickness, - propertyPath: new PropertyPath(Border.BorderThicknessProperty)); - if (TaskbarIcon != null) - { - TaskbarIcon.TrayToolTip = new ToolTip(!IsActive ? App.Text.ShowMultiRPC : App.Text.HideMultiRPC); - } - - if (!IsActive) - { - _timeWindowWasDeactivated = DateTime.Now; - } - } - catch (Exception ex) - { - MessageBox.Show(ex.ToString(), "Main app error", MessageBoxButton.OK, MessageBoxImage.Error); - } - } - else - { - Animations.ThicknessAnimation(WindowsContent, IsActive ? new Thickness(1) : new Thickness(0), - WindowsContent.BorderThickness, - propertyPath: new PropertyPath(Border.BorderThicknessProperty)); - if (TaskbarIcon != null) - { - TaskbarIcon.TrayToolTip = new ToolTip(!IsActive ? App.Text.ShowMultiRPC : App.Text.HideMultiRPC); - } - - if (!IsActive) - { - _timeWindowWasDeactivated = DateTime.Now; - } - } - } - - private void MainWindow_OnStateChanged(object sender, EventArgs e) - { - Animations.ThicknessAnimation(WindowsContent, - WindowState == WindowState.Maximized ? new Thickness(7) : new Thickness(0), - WindowsContent.Margin); - - if (Icon != null && App.Config.HideTaskbarIconWhenMin) - { - ShowInTaskbar = WindowState != WindowState.Minimized; - } - } - - private void MainWindow_OnClosing(object sender, CancelEventArgs e) - { - if (TaskbarIcon != null) - { - TaskbarIcon.Icon = null; - TaskbarIcon.Dispose(); - } - } - } -} \ No newline at end of file diff --git a/MultiRPC/GUI/MessageBox/CustomMessageBox.cs b/MultiRPC/GUI/MessageBox/CustomMessageBox.cs deleted file mode 100644 index 9ad1fc43..00000000 --- a/MultiRPC/GUI/MessageBox/CustomMessageBox.cs +++ /dev/null @@ -1,115 +0,0 @@ -using System; -using System.Threading.Tasks; -using System.Windows; - -namespace MultiRPC.GUI -{ - internal class CustomMessageBox : MainWindow - { - private CustomMessageBox(MessageBoxPage page, string title) - { - InitializeComponent(); - SizeToContent = SizeToContent.WidthAndHeight; - frmContent.Content = page; - MinHeight = page.MinHeight + 30; - MinWidth = page.MinWidth; - tblTitle.Text = title; - btnMin.Visibility = Visibility.Collapsed; - ResizeMode = ResizeMode.CanMinimize; - WindowStartupLocation = WindowStartupLocation.CenterOwner; - ShowInTaskbar = false; - } - - private static async Task _Show(string messageBoxText, string messageBoxTitle, - MessageBoxButton messageBoxButton, MessageBoxImage messageBoxImage, - MessageBoxResult messageBoxResult = MessageBoxResult.None, Window ownerWindow = null) - { - await Application.Current.Dispatcher.InvokeAsync(() => - { - var tick = DateTime.Now.Ticks; - var page = new MessageBoxPage(messageBoxText, messageBoxButton, messageBoxImage, tick); - - switch (messageBoxButton) - { - case MessageBoxButton.OKCancel: - page.btnOk.IsDefault = true; - break; - case MessageBoxButton.OK: - page.btnOk.IsDefault = true; - break; - case MessageBoxButton.YesNoCancel: - page.btnYes.IsDefault = true; - break; - case MessageBoxButton.YesNo: - page.btnYes.IsDefault = true; - break; - } - - var window = new CustomMessageBox(page, messageBoxTitle) - { - WindowID = tick, - Owner = ownerWindow ?? App.Current.MainWindow - }; - if (messageBoxButton == MessageBoxButton.YesNo) - { - window.btnClose.IsEnabled = false; - } - - window.ShowDialog(); - return window.ToReturn ?? DefaultReturn(messageBoxButton, messageBoxResult); - }); - return messageBoxResult; - } - - private static MessageBoxResult DefaultReturn(MessageBoxButton button, MessageBoxResult defaultMessageBoxResult) - { - switch (button) - { - case MessageBoxButton.OKCancel: - return MessageBoxResult.Cancel; - case MessageBoxButton.OK: - return MessageBoxResult.OK; - case MessageBoxButton.YesNoCancel: - return MessageBoxResult.Cancel; - case MessageBoxButton.YesNo: - return MessageBoxResult.Yes; - default: - return defaultMessageBoxResult; - } - } - - public static async Task Show(string messageBoxText, Window window = null) - { - return await _Show(messageBoxText, "MultiRPC", MessageBoxButton.OK, MessageBoxImage.None, - ownerWindow: window); - } - - public static async Task Show(string messageBoxText, string messageBoxTitle, - Window window = null) - { - return await _Show(messageBoxText, messageBoxTitle, MessageBoxButton.OK, MessageBoxImage.None, - ownerWindow: window); - } - - public static async Task Show(string messageBoxText, string messageBoxTitle, - MessageBoxButton messageBoxButton, Window window = null) - { - return await _Show(messageBoxText, messageBoxTitle, messageBoxButton, MessageBoxImage.None, - ownerWindow: window); - } - - public static async Task Show(string messageBoxText, string messageBoxTitle, - MessageBoxButton messageBoxButton, MessageBoxImage messageBoxImage, Window window = null) - { - return await _Show(messageBoxText, messageBoxTitle, messageBoxButton, messageBoxImage, ownerWindow: window); - } - - public static async Task Show(string messageBoxText, string messageBoxTitle, - MessageBoxButton messageBoxButton, MessageBoxImage messageBoxImage, MessageBoxResult defaultResult, - Window window = null) - { - return await _Show(messageBoxText, messageBoxTitle, messageBoxButton, messageBoxImage, defaultResult, - window); - } - } -} \ No newline at end of file diff --git a/MultiRPC/GUI/MessageBox/MessageBoxPage.xaml b/MultiRPC/GUI/MessageBox/MessageBoxPage.xaml deleted file mode 100644 index 8a1c5ebf..00000000 --- a/MultiRPC/GUI/MessageBox/MessageBoxPage.xaml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -