Re: [PATCH V3 2/2] OvmfPkg: Update CcProbeLib to DxeCcProbeLib
Gerd Hoffmann
Hi,
In DxeCcProbeLib we cache the GuestType in Ovmf work area in first-call.This only works in case the first call is early enough. Better use a CONSTRUCTOR instead. take care, Gerd
|
|
Re: [edk2-stable202208 3/3] Revert "BaseTools: Fix DSC LibraryClass precedence rule"
Bob Feng
Acked-by: Bob Feng <bob.c.feng@...>
toggle quoted messageShow quoted text
-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of gaoliming via groups.io Sent: Friday, August 26, 2022 10:15 AM To: devel@edk2.groups.io Cc: Chen, Christine <yuwei.chen@...>; Feng, Bob C <bob.c.feng@...> Subject: [edk2-devel] [edk2-stable202208 3/3] Revert "BaseTools: Fix DSC LibraryClass precedence rule" This reverts commit 039bdb4d3e96f9c9264abf135b8a0eef2e2b4860 for tag202208. This brings the behavior changes, and needs more discussion. Signed-off-by: Liming Gao <gaoliming@...> Cc: Yuwei Chen <yuwei.chen@...> Cc: Bob Feng <bob.c.feng@...> --- BaseTools/Source/Python/Workspace/DscBuildData.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BaseTools/Source/Python/Workspace/DscBuildData.py b/BaseTools/Source/Python/Workspace/DscBuildData.py index 41f93c93f2..e9f68384b4 100644 --- a/BaseTools/Source/Python/Workspace/DscBuildData.py +++ b/BaseTools/Source/Python/Workspace/DscBuildData.py @@ -872,7 +872,7 @@ class DscBuildData(PlatformBuildClassObject): if ModuleType != TAB_COMMON and ModuleType not in SUP_MODULE_LIST: EdkLogger.error('build', OPTION_UNKNOWN, "Unknown module type [%s]" % ModuleType, File=self.MetaFile, ExtraData=LibraryInstance, Line=LineNo) - LibraryClassDict[ModuleType, Arch, LibraryClass] = LibraryInstance + LibraryClassDict[Arch, ModuleType, LibraryClass] = LibraryInstance if LibraryInstance not in self._LibraryInstances: self._LibraryInstances.append(LibraryInstance) @@ -881,7 +881,7 @@ class DscBuildData(PlatformBuildClassObject): for LibraryClass in LibraryClassSet: # try all possible module types for ModuleType in SUP_MODULE_LIST: - LibraryInstance = LibraryClassDict[ModuleType, self._Arch, LibraryClass] + LibraryInstance = LibraryClassDict[self._Arch, ModuleType, LibraryClass] if LibraryInstance is None: continue self._LibraryClasses[LibraryClass, ModuleType] = LibraryInstance -- 2.27.0.windows.1 -=-=-=-=-=-= Groups.io Links: You receive all messages sent to this group. View/Reply Online (#92832): https://edk2.groups.io/g/devel/message/92832 Mute This Topic: https://groups.io/mt/93262564/1768742 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [bob.c.feng@...] -=-=-=-=-=-=
|
|
Re: MdeModulePkg build fails for AARCH64 on Ubuntu 22.04
Long1 Huang
Hi All,
toggle quoted messageShow quoted text
I'm the submitter. ==================Here's the DSC precedence rule from DSC Spec=================== The Library Instances will be selected using the following rules to satisfy a library class for each module listed in the [Components] section (in order of highest precedence): 1. <LibraryClasses> associated with the INF file in the [Components] section 2. [LibraryClasses.$(Arch).$(MODULE_TYPE), LibraryClasses.$(Arch).$(MODULE_TYPE)] 3. [LibraryClasses.$(Arch).$(MODULE_TYPE)] 4. [LibraryClasses.common.$(MODULE_TYPE)] 5. [LibraryClasses.$(Arch)] 6. [LibraryClasses.common] or [LibraryClasses] =========================================================================== Background: Our system takes DXE and later stages as 64-bit by default, using [LibraryClasses.X64] or appending a more detailed section "MODULE_TYPE"(e.g. [LibraryClasses.X64.DXE_CORE], [LibraryClasses.X64.DXE_SMM_DRIVER]). For SEC or PEI, use [LibraryClasses.IA32] or [LibraryClasses.IA32.SEC], [LibraryClasses.IA32.PEIM], etc. It works fine for traditional. With the arrival of pure X64, there will be some linking issues in this way. Because which library to link against cannot be determined simply using ARCH. During the development of X64 PEI, we found that the actual behavior of BaseTools for DSC precedence: [LibraryClasses.common.PEIM] < [LibraryClasses.X64] [LibraryClasses.IA32.PEIM] > [LibraryClasses.X64] [LibraryClasses.X64.PEIM] > [LibraryClasses.X64] We can see that this does not match the order of 4 and 5 in the spec. So when we tried to use "[LibraryClasses.common.MODULE_TYPE]" such the common ways to support both X64 and IA32 SEC & PEI and avoid duplication, before the fixed patch, modules in the PEI stage will linking DXE and later stage's libraries first(under [LibraryClasses.X64]), it will cause many puzzling linking issues. After the fixed patch downstream, we setup the X64 PEI build target, and works well for several days(both for IA32 and X64 SEC & PEI build). For Ard Biesheuvel's question: I think it may be the LockBoxLib under [LibraryClasses.ARM, LibraryClasses.AARCH64] doesn't provide the MODULE_TYPE section, it can work before this patch as I said above. But now it should be replaced with [LibraryClasses.ARM.MODULE_TYPE, LibraryClasses.AARCH64.MODULE_TYPE] to get higher priority than LockBoxLib under [LibraryClasses.comon.MODULE_TYPE]. Conclusion: From my point of view, I think the DSC precedence rule defined by spec is reasonable and make sense. MinPlatform gives us a good example, using the method of [LibraryClasses.common.MODULE_TYPE]. Do not assume the current arch, use "common" instead, then always append "MODULE_TYPE" section. It's clear, compatible and unambiguous. So we strongly support the idea of the DSC spec: Unless specified under [Components], then more detailed sections, higher priority. I think it will benefit future development. Short term solution: we can agree to temporarily revert this patch for stable tag if we can't fix the MdeModulePkg build issues or other potential problems immediately. For us, we will downstream overwrite it to keep this change to support the X64 build target. Long term solution: We suggest that we can discuss the rationale of this rule and evaluate if this patch should be reintroduced after the stable tag. Thanks, Huang, Long
-----Original Message-----
From: Feng, Bob C <bob.c.feng@...> Sent: Friday, August 26, 2022 8:56 AM To: Kinney, Michael D <michael.d.kinney@...>; devel@edk2.groups.io; quic_llindhol@...; Gao, Liming <gaoliming@...>; 'Ard Biesheuvel' <ardb@...>; rebecca@...; Chen, Christine <Yuwei.Chen@...> Cc: 'Andrew Fish' <afish@...>; Wang, Jian J <jian.j.wang@...>; Huang, Long1 <long1.huang@...> Subject: RE: [edk2-devel] MdeModulePkg build fails for AARCH64 on Ubuntu 22.04 + Huang Long, the bug submitter. I am OK to revert this patch for this stable tag. Since this patch break the MdeModulePkg build, also suggest to add this case in edk2 CI. Thanks, Bob -----Original Message----- From: Kinney, Michael D <michael.d.kinney@...> Sent: Thursday, August 25, 2022 11:44 PM To: devel@edk2.groups.io; quic_llindhol@...; Feng, Bob C <bob.c.feng@...>; Gao, Liming <gaoliming@...>; 'Ard Biesheuvel' <ardb@...>; rebecca@...; Chen, Christine <yuwei.chen@...>; Kinney, Michael D <michael.d.kinney@...> Cc: 'Andrew Fish' <afish@...>; Wang, Jian J <jian.j.wang@...> Subject: RE: [edk2-devel] MdeModulePkg build fails for AARCH64 on Ubuntu 22.04 Hi Bob, There was feedback in the Bugzilla on July 5 asking if this is a DSC spec issue or a BaseTools implementation issue. There was no response to that question. Why was a spec change not considered for this case to match the BaseTools behavior? Why were no additional details added to the BZ? I agree with Leif. If this change introduced regressions, we should consider a revert and evaluate again after the release. Thanks, Mike -----Original Message-----
|
|
Re: [edk2-stable202208 1/3] Revert "UefiCpuPkg/CpuPageTableLib/UnitTest: Add host based unit test"
Zhiguang Liu
Reviewed-by: Zhiguang Liu <zhiguang.liu@...>
toggle quoted messageShow quoted text
-----Original Message-----
|
|
Extend Hard Feature Freeze to 2022-08-29 for edk2-stable202208
gaoliming
Hi, all Today, we still need to merge several patches for this stable tag. So, I request to extend Hard Feature Freeze to 2022-08-29 (next Monday). Please continue to hold the patches until the stable tag is created. Thank you for your cooperation and patience.
Thanks Liming 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 gaoliming via groups.io
Hi, all
Today, we enter into Hard Feature Freeze phase until edk2-stable202208 tag is created at 2022-08-26. In this phase, there is no feature to be pushed. The critical bug fix is still allowed.
If the patch is sent after Hard Feature Freeze, and plans to catch this stable tag, please add edk2-stable202208 key words in the patch title and BZ, and also cc to Tianocore Stewards, then Stewards can give the comments.
Below is edk2-stable202208 tag planning (https://github.com/tianocore/tianocore.github.io/wiki/EDK-II-Release-Planning).
Date (00:00:00 UTC-8) Description 2022-05-27 Beginning of development 2022-08-08 Soft Feature Freeze 2022-08-12 Hard Feature Freeze 2022-08-26 Release
Thanks Liming
|
|
[edk2-stable202208 0/3] Revert three patches for edk2 stable tag 202208
gaoliming
Two features will be merged after the stable tag 202208 is created.=20
One behavior change will be discussed further.=20 Liming Gao (3): Revert "UefiCpuPkg/CpuPageTableLib/UnitTest: Add host based unit test" Revert "ShellPkg: Adds Local APIC parser to AcpiView" Revert "BaseTools: Fix DSC LibraryClass precedence rule" .../Parsers/Madt/MadtParser.c | 74 +- .../UnitTest/CpuPageTableLibUnitTestHost.c | 794 --- .../CpuPageTableLib/UnitTest/RandomNumber.c | 5009 ----------------- .../CpuPageTableLib/UnitTest/RandomTest.c | 926 --- .../CpuPageTableLib/UnitTest/TestHelper.c | 309 - .../Source/Python/Workspace/DscBuildData.py | 4 +- .../UnitTest/CpuPageTableLibUnitTest.h | 117 - .../UnitTest/CpuPageTableLibUnitTestHost.inf | 42 - .../CpuPageTableLib/UnitTest/RandomTest.h | 57 - UefiCpuPkg/Test/UefiCpuPkgHostTest.dsc | 9 - UefiCpuPkg/UefiCpuPkg.ci.yaml | 4 +- 11 files changed, 10 insertions(+), 7335 deletions(-) delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTa= bleLibUnitTestHost.c delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomNum= ber.c delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomTes= t.c delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/TestHelpe= r.c delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTa= bleLibUnitTest.h delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTa= bleLibUnitTestHost.inf delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomTes= t.h --=20 2.27.0.windows.1
|
|
[edk2-stable202208 2/3] Revert "ShellPkg: Adds Local APIC parser to AcpiView"
gaoliming
This reverts commit d5fd86f256b9ab5b4e3aff70d3c177c18faea892 for tag20220=
8. This feature will be merged after stable tag 202208 is created. Signed-off-by: Liming Gao <gaoliming@...> Cc: Abdul Lateef Attar <abdattar@...> --- .../Parsers/Madt/MadtParser.c | 74 ++----------------- 1 file changed, 7 insertions(+), 67 deletions(-) diff --git a/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Madt/Ma= dtParser.c b/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Madt/Ma= dtParser.c index 41edcb9ffd..aaa68c99f5 100644 --- a/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Madt/MadtParse= r.c +++ b/ShellPkg/Library/UefiShellAcpiViewCommandLib/Parsers/Madt/MadtParse= r.c @@ -2,7 +2,6 @@ MADT table parser =20 Copyright (c) 2016 - 2020, ARM Limited. All rights reserved. - Copyright (c) 2022, AMD Incorporated. All rights reserved. SPDX-License-Identifier: BSD-2-Clause-Patent =20 @par Reference(s): @@ -207,65 +206,17 @@ STATIC CONST ACPI_PARSER InterruptSourceOverride[]= =3D { { L"Flags", 2, 8, L"0x%x", NULL, NULL, NULL, NULL } }; =20 -STATIC CONST ACPI_PARSER LocalApicFlags[] =3D { - { L"Enabled", 1, 0, L"%d", NULL, NULL, NULL, NULL }, - { L"Online Capable", 1, 1, L"%d", NULL, NULL, NULL, NULL }, - { L"Reserved", 30, 2, L"%d", NULL, NULL, NULL, NULL } -}; - -/** - This function traces Bit Flags fields. - If no format string is specified the Format must be NULL. - - @param [in] Format Optional format string for tracing the data. - @param [in] Ptr Pointer to the start of the buffer. -**/ -VOID -EFIAPI -DumpLocalApicBitFlags ( - IN CONST CHAR16 *Format OPTIONAL, - IN UINT8 *Ptr - ) -{ - if (Format !=3D NULL) { - Print (Format, *(UINT32 *)Ptr); - return; - } - - Print (L"0x%X\n", *(UINT32 *)Ptr); - ParseAcpiBitFields ( - TRUE, - 2, - NULL, - Ptr, - 4, - PARSER_PARAMS (LocalApicFlags) - ); -} - -/** - An ACPI_PARSER array describing the Processor Local APIC Structure. - **/ -STATIC CONST ACPI_PARSER ProcessorLocalApic[] =3D { - { L"Type", 1, 0, L"0x%x", NULL, NULL, N= ULL, NULL }, - { L"Length", 1, 1, L"%d", NULL, NULL, N= ULL, NULL }, - - { L"ACPI Processor UID", 1, 2, L"0x%x", NULL, NULL, N= ULL, NULL }, - { L"APIC ID", 1, 3, L"0x%x", NULL, NULL, N= ULL, NULL }, - { L"Flags", 4, 4, NULL, DumpLocalApicBitFlags, NULL, N= ULL, NULL } -}; - /** An ACPI_PARSER array describing the Processor Local x2APIC Structure. **/ STATIC CONST ACPI_PARSER ProcessorLocalX2Apic[] =3D { - { L"Type", 1, 0, L"0x%x", NULL, NULL, = NULL, NULL }, - { L"Length", 1, 1, L"%d", NULL, NULL, = NULL, NULL }, - { L"Reserved", 2, 2, L"0x%x", NULL, NULL, = NULL, NULL }, + { L"Type", 1, 0, L"0x%x", NULL, NULL, NULL, NULL }, + { L"Length", 1, 1, L"%d", NULL, NULL, NULL, NULL }, + { L"Reserved", 2, 2, L"0x%x", NULL, NULL, NULL, NULL }, =20 - { L"X2APIC ID", 4, 4, L"0x%x", NULL, NULL, = NULL, NULL }, - { L"Flags", 4, 8, NULL, DumpLocalApicBitFlags, NULL, = NULL, NULL }, - { L"ACPI Processor UID", 4, 12, L"0x%x", NULL, NULL, = NULL, NULL } + { L"X2APIC ID", 4, 4, L"0x%x", NULL, NULL, NULL, NULL }, + { L"Flags", 4, 8, L"0x%x", NULL, NULL, NULL, NULL }, + { L"ACPI Processor UID", 4, 12, L"0x%x", NULL, NULL, NULL, NULL } }; =20 /** @@ -490,18 +441,7 @@ ParseAcpiMadt ( ); break; } - case EFI_ACPI_6_3_PROCESSOR_LOCAL_APIC: - { - ParseAcpi ( - TRUE, - 2, - "PROCESSOR LOCAL APIC", - InterruptContollerPtr, - *MadtInterruptControllerLength, - PARSER_PARAMS (ProcessorLocalApic) - ); - break; - } + case EFI_ACPI_6_3_PROCESSOR_LOCAL_X2APIC: { ParseAcpi ( --=20 2.27.0.windows.1
|
|
[edk2-stable202208 1/3] Revert "UefiCpuPkg/CpuPageTableLib/UnitTest: Add host based unit test"
gaoliming
This reverts commit 2812668bfc121ee792cf3302195176ef4a2ad0bc for tag20220=
8. This feature will be merged after stable tag 202208 is created. Signed-off-by: Liming Gao <gaoliming@...> Cc: Zhiguang Liu <zhiguang.liu@...> --- .../UnitTest/CpuPageTableLibUnitTestHost.c | 794 --- .../CpuPageTableLib/UnitTest/RandomNumber.c | 5009 ----------------- .../CpuPageTableLib/UnitTest/RandomTest.c | 926 --- .../CpuPageTableLib/UnitTest/TestHelper.c | 309 - .../UnitTest/CpuPageTableLibUnitTest.h | 117 - .../UnitTest/CpuPageTableLibUnitTestHost.inf | 42 - .../CpuPageTableLib/UnitTest/RandomTest.h | 57 - UefiCpuPkg/Test/UefiCpuPkgHostTest.dsc | 9 - UefiCpuPkg/UefiCpuPkg.ci.yaml | 4 +- 9 files changed, 1 insertion(+), 7266 deletions(-) delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTa= bleLibUnitTestHost.c delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomNum= ber.c delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomTes= t.c delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/TestHelpe= r.c delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTa= bleLibUnitTest.h delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTa= bleLibUnitTestHost.inf delete mode 100644 UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomTes= t.h diff --git a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTableLibU= nitTestHost.c b/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTableL= ibUnitTestHost.c deleted file mode 100644 index 3014a03243..0000000000 --- a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTableLibUnitTest= Host.c +++ /dev/null @@ -1,794 +0,0 @@ -/** @file - Unit tests of the CpuPageTableLib instance of the CpuPageTableLib clas= s - - Copyright (c) 2022, Intel Corporation. All rights reserved.<BR> - SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -#include "CpuPageTableLibUnitTest.h" - -// ---------------------------------------------------------------------= -- PageMode--TestCount-TestRangeCount---RandomOptions -static CPU_PAGE_TABLE_LIB_RANDOM_TEST_CONTEXT mTestContextPaging4Level = =3D { Paging4Level, 100, 20, ONLY_ONE_ONE_MAPPING|USE_RANDOM_ARRAY }; -static CPU_PAGE_TABLE_LIB_RANDOM_TEST_CONTEXT mTestContextPaging4Level1= GB =3D { Paging4Level1GB, 100, 20, ONLY_ONE_ONE_MAPPING|USE_RANDOM_ARRAY = }; -static CPU_PAGE_TABLE_LIB_RANDOM_TEST_CONTEXT mTestContextPaging5Level = =3D { Paging5Level, 100, 20, ONLY_ONE_ONE_MAPPING|USE_RANDOM_ARRAY }; -static CPU_PAGE_TABLE_LIB_RANDOM_TEST_CONTEXT mTestContextPaging5Level1= GB =3D { Paging5Level1GB, 100, 20, ONLY_ONE_ONE_MAPPING|USE_RANDOM_ARRAY = }; - -/** - Check if the input parameters are not supported. - - @param[in] Context [Optional] An optional parameter that enables: - 1) test-case reuse with varied parameters and - 2) test-case re-entry for Target tests that nee= d a - reboot. This parameter is a VOID* and it is th= e - responsibility of the test author to ensure tha= t the - contents are well understood by all test cases = that may - consume it. - - @retval UNIT_TEST_PASSED The Unit test has completed and = the test - case was successful. - @retval UNIT_TEST_ERROR_TEST_FAILED A test case assertion has failed= . -**/ -UNIT_TEST_STATUS -EFIAPI -TestCaseForParameter ( - IN UNIT_TEST_CONTEXT Context - ) -{ - UINTN PageTable; - PAGING_MODE PagingMode; - UINTN Buffer; - UINTN PageTableBufferSize; - IA32_MAP_ATTRIBUTE MapAttribute; - IA32_MAP_ATTRIBUTE MapMask; - - MapAttribute.Uint64 =3D 0; - MapMask.Uint64 =3D 0; - PagingMode =3D Paging5Level1GB; - PageTableBufferSize =3D 0; - PageTable =3D 0; - - // - // If the input linear address is not 4K align, it should return inval= id parameter - // - UT_ASSERT_EQUAL (PageTableMap (&PageTable, PagingMode, &Buffer, &PageT= ableBufferSize, 1, SIZE_4KB, &MapAttribute, &MapMask), RETURN_INVALID_PAR= AMETER); - - // - // If the input PageTableBufferSize is not 4K align, it should return = invalid parameter - // - PageTableBufferSize =3D 10; - UT_ASSERT_EQUAL (PageTableMap (&PageTable, PagingMode, &Buffer, &PageT= ableBufferSize, 0, SIZE_4KB, &MapAttribute, &MapMask), RETURN_INVALID_PAR= AMETER); - - // - // If the input PagingMode is Paging32bit, it should return invalid pa= rameter - // - PageTableBufferSize =3D 0; - PagingMode =3D Paging32bit; - UT_ASSERT_EQUAL (PageTableMap (&PageTable, PagingMode, &Buffer, &PageT= ableBufferSize, 1, SIZE_4KB, &MapAttribute, &MapMask), RETURN_UNSUPPORTED= ); - - // - // If the input MapMask is NULL, it should return invalid parameter - // - PagingMode =3D Paging5Level1GB; - UT_ASSERT_EQUAL (PageTableMap (&PageTable, PagingMode, &Buffer, &PageT= ableBufferSize, 1, SIZE_4KB, &MapAttribute, NULL), RETURN_INVALID_PARAMET= ER); - - return UNIT_TEST_PASSED; -} - -/** - Check the case that modifying page table doesn't need extra buffe - - @param[in] Context [Optional] An optional parameter that enables: - 1) test-case reuse with varied parameters and - 2) test-case re-entry for Target tests that nee= d a - reboot. This parameter is a VOID* and it is th= e - responsibility of the test author to ensure tha= t the - contents are well understood by all test cases = that may - consume it. - - @retval UNIT_TEST_PASSED The Unit test has completed and = the test - case was successful. - @retval UNIT_TEST_ERROR_TEST_FAILED A test case assertion has failed= . -**/ -UNIT_TEST_STATUS -EFIAPI -TestCaseWhichNoNeedExtraSize ( - IN UNIT_TEST_CONTEXT Context - ) -{ - UINTN PageTable; - PAGING_MODE PagingMode; - VOID *Buffer; - UINTN PageTableBufferSize; - IA32_MAP_ATTRIBUTE MapAttribute; - IA32_MAP_ATTRIBUTE MapMask; - RETURN_STATUS Status; - UNIT_TEST_STATUS TestStatus; - - MapAttribute.Uint64 =3D 0; - MapMask.Uint64 =3D 0; - PagingMode =3D Paging4Level1GB; - PageTableBufferSize =3D 0; - PageTable =3D 0; - Buffer =3D NULL; - MapAttribute.Bits.Present =3D 1; - MapAttribute.Bits.Nx =3D 1; - MapMask.Bits.Present =3D 1; - MapMask.Uint64 =3D MAX_UINT64; - - // - // Create page table to cover [0, 10M], it should have 5 PTE - // - Status =3D PageTableMap (&PageTable, PagingMode, Buffer, &PageTableBuf= ferSize, 0, (UINT64)SIZE_2MB * 5, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - Buffer =3D AllocatePages (EFI_SIZE_TO_PAGES (PageTableBufferSize)); - Status =3D PageTableMap (&PageTable, PagingMode, Buffer, &PageTableBuf= ferSize, 0, (UINT64)SIZE_2MB * 5, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - TestStatus =3D IsPageTableValid (PageTable, PagingMode); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - - // - // call library to cover [0, 4K], because the page table is already co= ver [0, 10M], and no attribute change, - // We assume the fucntion doesn't need to change page table, return su= ccess and output BufferSize is 0 - // - Buffer =3D NULL; - Status =3D PageTableMap (&PageTable, PagingMode, Buffer, &PageTableBuf= ferSize, 0, (UINT64)SIZE_4KB, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (PageTableBufferSize, 0); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - TestStatus =3D IsPageTableValid (PageTable, PagingMode); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - - // - // Same range and same attribute, only clear one mask attribute bit - // We assume the fucntion doesn't need to change page table, return su= ccess and output BufferSize is 0 - // - MapMask.Bits.Nx =3D 0; - PageTableBufferSize =3D 0; - Status =3D PageTableMap (&PageTable, PagingMode, NULL, &P= ageTableBufferSize, 0, (UINT64)SIZE_4KB, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - UT_ASSERT_EQUAL (PageTableBufferSize, 0); - TestStatus =3D IsPageTableValid (PageTable, PagingMode); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - - // - // call library to cover [2M, 4M], while the page table is already cov= er [0, 10M], - // only change one attribute bit, we assume the page table change be m= odified even if the - // input Buffer is NULL, and BufferSize is 0 - // - MapAttribute.Bits.Accessed =3D 1; - MapMask.Bits.Accessed =3D 1; - PageTableBufferSize =3D 0; - Status =3D PageTableMap (&PageTable, PagingMode, N= ULL, &PageTableBufferSize, (UINT64)SIZE_2MB, (UINT64)SIZE_2MB, &MapAttrib= ute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - UT_ASSERT_EQUAL (PageTableBufferSize, 0); - TestStatus =3D IsPageTableValid (PageTable, PagingMode); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - - return UNIT_TEST_PASSED; -} - -/** - Test Case that check the case to map [0, 1G] to [8K, 1G+8K] - - @param[in] Context [Optional] An optional parameter that enables: - 1) test-case reuse with varied parameters and - 2) test-case re-entry for Target tests that nee= d a - reboot. This parameter is a VOID* and it is th= e - responsibility of the test author to ensure tha= t the - contents are well understood by all test cases = that may - consume it. - - @retval UNIT_TEST_PASSED The Unit test has completed and = the test - case was successful. - @retval UNIT_TEST_ERROR_TEST_FAILED A test case assertion has failed= . -**/ -UNIT_TEST_STATUS -EFIAPI -TestCase1Gmapto4K ( - IN UNIT_TEST_CONTEXT Context - ) -{ - UINTN PageTable; - PAGING_MODE PagingMode; - VOID *Buffer; - UINTN PageTableBufferSize; - IA32_MAP_ATTRIBUTE MapAttribute; - IA32_MAP_ATTRIBUTE MapMask; - RETURN_STATUS Status; - UNIT_TEST_STATUS TestStatus; - - // - // Create Page table to map [0,1G] to [8K, 1G+8K] - // - PagingMode =3D Paging4Level1GB; - PageTableBufferSize =3D 0; - PageTable =3D 0; - Buffer =3D NULL; - MapAttribute.Uint64 =3D (UINT64)SIZE_4KB * 2; - MapMask.Uint64 =3D (UINT64)SIZE_4KB * 2; - MapAttribute.Bits.Present =3D 1; - MapMask.Bits.Present =3D 1; - MapMask.Uint64 =3D MAX_UINT64; - Status =3D PageTableMap (&PageTable, PagingMode, Bu= ffer, &PageTableBufferSize, (UINT64)0, (UINT64)SIZE_1GB, &MapAttribute, &= MapMask); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - Buffer =3D AllocatePages (EFI_SIZE_TO_PAGES (PageTableBufferSize)); - Status =3D PageTableMap (&PageTable, PagingMode, Buffer, &PageTableBuf= ferSize, (UINT64)0, (UINT64)SIZE_1GB, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - - // - // Page table should be valid. (All reserved bits are zero) - // - TestStatus =3D IsPageTableValid (PageTable, PagingMode); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - - return UNIT_TEST_PASSED; -} - -/** - Check if the parent entry has different R/W attribute - - @param[in] Context [Optional] An optional parameter that enables: - 1) test-case reuse with varied parameters and - 2) test-case re-entry for Target tests that nee= d a - reboot. This parameter is a VOID* and it is th= e - responsibility of the test author to ensure tha= t the - contents are well understood by all test cases = that may - consume it. - - @retval UNIT_TEST_PASSED The Unit test has completed and = the test - case was successful. - @retval UNIT_TEST_ERROR_TEST_FAILED A test case assertion has failed= . -**/ -UNIT_TEST_STATUS -EFIAPI -TestCaseManualChangeReadWrite ( - IN UNIT_TEST_CONTEXT Context - ) -{ - UINTN PageTable; - PAGING_MODE PagingMode; - VOID *Buffer; - UINTN PageTableBufferSize; - IA32_MAP_ATTRIBUTE MapAttribute; - IA32_MAP_ATTRIBUTE ExpectedMapAttribute; - IA32_MAP_ATTRIBUTE MapMask; - RETURN_STATUS Status; - IA32_MAP_ENTRY *Map; - UINTN MapCount; - IA32_PAGING_ENTRY *PagingEntry; - VOID *BackupBuffer; - UINTN BackupPageTableBufferSize; - - PagingMode =3D Paging4Level; - PageTableBufferSize =3D 0; - PageTable =3D 0; - Buffer =3D NULL; - MapAttribute.Uint64 =3D 0; - MapMask.Uint64 =3D MAX_UINT64; - MapAttribute.Bits.Present =3D 1; - MapAttribute.Bits.ReadWrite =3D 1; - - // - // Create Page table to cover [0,2G], with ReadWrite =3D 1 - // - Status =3D PageTableMap (&PageTable, PagingMode, Buffer, &PageTableBuf= ferSize, 0, SIZE_2GB, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - BackupPageTableBufferSize =3D PageTableBufferSize; - Buffer =3D AllocatePages (EFI_SIZE_TO_PAGES (PageTa= bleBufferSize)); - Status =3D PageTableMap (&PageTable, PagingMode, Bu= ffer, &PageTableBufferSize, 0, SIZE_2GB, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - IsPageTableValid (PageTable, PagingMode); - - MapCount =3D 0; - Status =3D PageTableParse (PageTable, PagingMode, NULL, &MapCount); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - IsPageTableValid (PageTable, PagingMode); - Map =3D AllocatePages (EFI_SIZE_TO_PAGES (MapCount)); - Status =3D PageTableParse (PageTable, PagingMode, Map, &MapCount); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - UT_ASSERT_EQUAL (MapCount, 1); - UT_ASSERT_EQUAL (Map[0].LinearAddress, 0); - UT_ASSERT_EQUAL (Map[0].Length, SIZE_2GB); - ExpectedMapAttribute.Uint64 =3D MapAttribute.Uint64; - UT_ASSERT_EQUAL (Map[0].Attribute.Uint64, ExpectedMapAttribute.Uint64)= ; - - // - // Manually change ReadWrite to 0 for non-leaf entry, which covers [0,= 2G] - // - PagingEntry =3D (IA32_PAGING_ENTRY *)(UINTN)PageTable; - PagingEntry->Uint64 =3D PagingEntry->Uint64 & (~(UINT64)0x2); - MapCount =3D 0; - Status =3D PageTableParse (PageTable, PagingMode, NULL, &= MapCount); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - Map =3D AllocatePages (EFI_SIZE_TO_PAGES (MapCount)); - Status =3D PageTableParse (PageTable, PagingMode, Map, &MapCount); - - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - UT_ASSERT_EQUAL (MapCount, 1); - UT_ASSERT_EQUAL (Map[0].LinearAddress, 0); - UT_ASSERT_EQUAL (Map[0].Length, SIZE_2GB); - ExpectedMapAttribute.Uint64 =3D MapAttribute.Uint64; - ExpectedMapAttribute.Bits.ReadWrite =3D 0; - UT_ASSERT_EQUAL (Map[0].Attribute.Uint64, ExpectedMapAttribute.Uint64)= ; - - // - // Copy the page entry structure memory for future compare - // - BackupBuffer =3D AllocateCopyPool (BackupPageTableBufferSize, Buffer); - UT_ASSERT_MEM_EQUAL (Buffer, BackupBuffer, BackupPageTableBufferSize); - - // - // Call library to change ReadWrite to 0 for [0,2M] - // - MapAttribute.Bits.ReadWrite =3D 0; - Status =3D PageTableMap (&PageTable, PagingMode, = NULL, &PageTableBufferSize, 0, SIZE_2MB, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - IsPageTableValid (PageTable, PagingMode); - MapCount =3D 0; - Status =3D PageTableParse (PageTable, PagingMode, NULL, &MapCount); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - Map =3D AllocatePages (EFI_SIZE_TO_PAGES (MapCount)); - Status =3D PageTableParse (PageTable, PagingMode, Map, &MapCount); - // - // There should be 1 range [0, 2G] with ReadWrite =3D 0 - // - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - UT_ASSERT_EQUAL (MapCount, 1); - UT_ASSERT_EQUAL (Map[0].LinearAddress, 0); - UT_ASSERT_EQUAL (Map[0].Length, SIZE_2GB); - ExpectedMapAttribute.Uint64 =3D MapAttribute.Uint64; - UT_ASSERT_EQUAL (Map[0].Attribute.Uint64, ExpectedMapAttribute.Uint64)= ; - - // - // The latest PageTableMap call should change nothing. - // The memory should be identical before and after the funtion is call= ed. - // - UT_ASSERT_MEM_EQUAL (Buffer, BackupBuffer, BackupPageTableBufferSize); - - // - // Call library to change ReadWrite to 1 for [0, 2M] - // - MapAttribute.Bits.ReadWrite =3D 1; - PageTableBufferSize =3D 0; - Status =3D PageTableMap (&PageTable, PagingMode, = NULL, &PageTableBufferSize, 0, SIZE_2MB, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - IsPageTableValid (PageTable, PagingMode); - MapCount =3D 0; - Status =3D PageTableParse (PageTable, PagingMode, NULL, &MapCount); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - Map =3D AllocatePages (EFI_SIZE_TO_PAGES (MapCount)); - Status =3D PageTableParse (PageTable, PagingMode, Map, &MapCount); - // - // There should be 2 range [0, 2M] with ReadWrite =3D 1 and [2M, 2G] w= ith ReadWrite =3D 0 - // - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - UT_ASSERT_EQUAL (MapCount, 2); - - UT_ASSERT_EQUAL (Map[0].LinearAddress, 0); - UT_ASSERT_EQUAL (Map[0].Length, SIZE_2MB); - ExpectedMapAttribute.Uint64 =3D MapAttribute.Uint64; - UT_ASSERT_EQUAL (Map[0].Attribute.Uint64, ExpectedMapAttribute.Uint64)= ; - - UT_ASSERT_EQUAL (Map[1].LinearAddress, SIZE_2MB); - UT_ASSERT_EQUAL (Map[1].Length, SIZE_2GB - SIZE_2MB); - ExpectedMapAttribute.Uint64 =3D SIZE_2MB; - ExpectedMapAttribute.Bits.ReadWrite =3D 0; - ExpectedMapAttribute.Bits.Present =3D 1; - UT_ASSERT_EQUAL (Map[1].Attribute.Uint64, ExpectedMapAttribute.Uint64)= ; - - return UNIT_TEST_PASSED; -} - -/** - Check if the needed size is expected - - @param[in] Context [Optional] An optional parameter that enables: - 1) test-case reuse with varied parameters and - 2) test-case re-entry for Target tests that nee= d a - reboot. This parameter is a VOID* and it is th= e - responsibility of the test author to ensure tha= t the - contents are well understood by all test cases = that may - consume it. - - @retval UNIT_TEST_PASSED The Unit test has completed and = the test - case was successful. - @retval UNIT_TEST_ERROR_TEST_FAILED A test case assertion has failed= . -**/ -UNIT_TEST_STATUS -EFIAPI -TestCaseManualSizeNotMatch ( - IN UNIT_TEST_CONTEXT Context - ) -{ - UINTN PageTable; - PAGING_MODE PagingMode; - VOID *Buffer; - UINTN PageTableBufferSize; - IA32_MAP_ATTRIBUTE MapAttribute; - IA32_MAP_ATTRIBUTE ExpectedMapAttribute; - IA32_MAP_ATTRIBUTE MapMask; - RETURN_STATUS Status; - IA32_MAP_ENTRY *Map; - UINTN MapCount; - IA32_PAGING_ENTRY *PagingEntry; - - PagingMode =3D Paging4Level; - PageTableBufferSize =3D 0; - PageTable =3D 0; - Buffer =3D NULL; - MapAttribute.Uint64 =3D 0; - MapMask.Uint64 =3D MAX_UINT64; - MapAttribute.Bits.Present =3D 1; - MapAttribute.Bits.ReadWrite =3D 1; - MapAttribute.Bits.PageTableBaseAddress =3D (SIZE_2MB - SIZE_4KB) >> 12= ; - // - // Create Page table to cover [2M-4K, 4M], with ReadWrite =3D 1 - // - Status =3D PageTableMap (&PageTable, PagingMode, Buffer, &PageTableBuf= ferSize, SIZE_2MB - SIZE_4KB, SIZE_4KB + SIZE_2MB, &MapAttribute, &MapMas= k); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - Buffer =3D AllocatePages (EFI_SIZE_TO_PAGES (PageTableBufferSize)); - Status =3D PageTableMap (&PageTable, PagingMode, Buffer, &PageTableBuf= ferSize, SIZE_2MB - SIZE_4KB, SIZE_4KB + SIZE_2MB, &MapAttribute, &MapMas= k); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - IsPageTableValid (PageTable, PagingMode); - - MapCount =3D 0; - Status =3D PageTableParse (PageTable, PagingMode, NULL, &MapCount); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - IsPageTableValid (PageTable, PagingMode); - Map =3D AllocatePages (EFI_SIZE_TO_PAGES (MapCount)); - Status =3D PageTableParse (PageTable, PagingMode, Map, &MapCount); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - UT_ASSERT_EQUAL (MapCount, 1); - UT_ASSERT_EQUAL (Map[0].LinearAddress, SIZE_2MB - SIZE_4KB); - UT_ASSERT_EQUAL (Map[0].Length, SIZE_4KB + SIZE_2MB); - ExpectedMapAttribute.Uint64 =3D MapAttribute.Uint64; - UT_ASSERT_EQUAL (Map[0].Attribute.Uint64, ExpectedMapAttribute.Uint64)= ; - - // - // Manually change ReadWrite to 0 for 3 level non-leaf entry, which co= vers [0,2M] - // Then the map is: - // [2M-4K,2M], R/W =3D 0 - // [2M ,4M], R/W =3D 1 - // - PagingEntry =3D (IA32_PAGING_ENTRY *)(UINTN)PageTable; = // Get 4 level entry - PagingEntry =3D (IA32_PAGING_ENTRY *)(UINTN)(PagingEntry->Pnle= .Bits.PageTableBaseAddress << 12); // Get 3 level entry - PagingEntry =3D (IA32_PAGING_ENTRY *)(UINTN)(PagingEntry->Pnle= .Bits.PageTableBaseAddress << 12); // Get 2 level entry - PagingEntry->Uint64 =3D PagingEntry->Uint64 & (~(UINT64)0x2); - MapCount =3D 0; - Status =3D PageTableParse (PageTable, PagingMode, NULL, &= MapCount); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - Map =3D AllocatePages (EFI_SIZE_TO_PAGES (MapCount)); - Status =3D PageTableParse (PageTable, PagingMode, Map, &MapCount); - - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - UT_ASSERT_EQUAL (MapCount, 2); - UT_ASSERT_EQUAL (Map[0].LinearAddress, SIZE_2MB - SIZE_4KB); - UT_ASSERT_EQUAL (Map[0].Length, SIZE_4KB); - ExpectedMapAttribute.Uint64 =3D MapAttribute.Uint64; - ExpectedMapAttribute.Bits.ReadWrite =3D 0; - UT_ASSERT_EQUAL (Map[0].Attribute.Uint64, ExpectedMapAttribute.Uint64)= ; - - UT_ASSERT_EQUAL (Map[1].LinearAddress, SIZE_2MB); - UT_ASSERT_EQUAL (Map[1].Length, SIZE_2MB); - ExpectedMapAttribute.Uint64 =3D MapAttribute.Uint64= ; - ExpectedMapAttribute.Bits.ReadWrite =3D 1; - ExpectedMapAttribute.Bits.PageTableBaseAddress =3D SIZE_2MB >> 12; - UT_ASSERT_EQUAL (Map[1].Attribute.Uint64, ExpectedMapAttribute.Uint64)= ; - - // - // Set Page table [2M-4K, 2M+4K]'s ReadWrite =3D 1, [2M,2M+4K]'s ReadW= rite is already 1 - // Just need to set [2M-4K,2M], won't need extra size, so the status s= hould be success - // - MapAttribute.Bits.Present =3D 1; - MapAttribute.Bits.ReadWrite =3D 1; - PageTableBufferSize =3D 0; - MapAttribute.Bits.PageTableBaseAddress =3D (SIZE_2MB - SIZE_4KB) >> 12= ; - Status =3D PageTableMap (&PageTable, P= agingMode, Buffer, &PageTableBufferSize, SIZE_2MB - SIZE_4KB, SIZE_4KB * = 2, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - return UNIT_TEST_PASSED; -} - -/** - Check that won't merge entries - - @param[in] Context [Optional] An optional parameter that enables: - 1) test-case reuse with varied parameters and - 2) test-case re-entry for Target tests that nee= d a - reboot. This parameter is a VOID* and it is th= e - responsibility of the test author to ensure tha= t the - contents are well understood by all test cases = that may - consume it. - - @retval UNIT_TEST_PASSED The Unit test has completed and = the test - case was successful. - @retval UNIT_TEST_ERROR_TEST_FAILED A test case assertion has failed= . -**/ -UNIT_TEST_STATUS -EFIAPI -TestCaseManualNotMergeEntry ( - IN UNIT_TEST_CONTEXT Context - ) -{ - UINTN PageTable; - PAGING_MODE PagingMode; - VOID *Buffer; - UINTN PageTableBufferSize; - IA32_MAP_ATTRIBUTE MapAttribute; - IA32_MAP_ATTRIBUTE MapMask; - RETURN_STATUS Status; - UNIT_TEST_STATUS TestStatus; - - PagingMode =3D Paging4Level1GB; - PageTableBufferSize =3D 0; - PageTable =3D 0; - Buffer =3D NULL; - MapAttribute.Uint64 =3D 0; - MapMask.Uint64 =3D MAX_UINT64; - MapAttribute.Bits.Present =3D 1; - MapMask.Bits.Present =3D 1; - - // - // Create Page table to cover [0,4M], and [4M, 1G] is not present - // - Status =3D PageTableMap (&PageTable, PagingMode, Buffer, &PageTableBuf= ferSize, (UINT64)0, (UINT64)SIZE_2MB * 2, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - Buffer =3D AllocatePages (EFI_SIZE_TO_PAGES (PageTableBufferSize)); - Status =3D PageTableMap (&PageTable, PagingMode, Buffer, &PageTableBuf= ferSize, (UINT64)0, (UINT64)SIZE_2MB * 2, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - TestStatus =3D IsPageTableValid (PageTable, PagingMode); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - - // - // Let Page table to cover [0,1G], we assume it won't use a big 1G ent= ry to cover whole range - // It looks like the chioce is not bad, but sometime, we need to keep = some small entry - // - PageTableBufferSize =3D 0; - Status =3D PageTableMap (&PageTable, PagingMode, NULL, &P= ageTableBufferSize, (UINT64)0, (UINT64)SIZE_1GB, &MapAttribute, &MapMask)= ; - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - TestStatus =3D IsPageTableValid (PageTable, PagingMode); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - - MapAttribute.Bits.Accessed =3D 1; - PageTableBufferSize =3D 0; - Status =3D PageTableMap (&PageTable, PagingMode, N= ULL, &PageTableBufferSize, (UINT64)0, (UINT64)SIZE_2MB, &MapAttribute, &M= apMask); - // - // If it didn't use a big 1G entry to cover whole range, only change [= 0,2M] for some attribute won't need extra memory - // - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - - return UNIT_TEST_PASSED; -} - -/** - Check if the parent entry has different Nx attribute - - @param[in] Context [Optional] An optional parameter that enables: - 1) test-case reuse with varied parameters and - 2) test-case re-entry for Target tests that nee= d a - reboot. This parameter is a VOID* and it is th= e - responsibility of the test author to ensure tha= t the - contents are well understood by all test cases = that may - consume it. - - @retval UNIT_TEST_PASSED The Unit test has completed and = the test - case was successful. - @retval UNIT_TEST_ERROR_TEST_FAILED A test case assertion has failed= . -**/ -UNIT_TEST_STATUS -EFIAPI -TestCaseManualChangeNx ( - IN UNIT_TEST_CONTEXT Context - ) -{ - UINTN PageTable; - PAGING_MODE PagingMode; - VOID *Buffer; - UINTN PageTableBufferSize; - IA32_MAP_ATTRIBUTE MapAttribute; - IA32_MAP_ATTRIBUTE ExpectedMapAttribute; - IA32_MAP_ATTRIBUTE MapMask; - RETURN_STATUS Status; - IA32_MAP_ENTRY *Map; - UINTN MapCount; - IA32_PAGING_ENTRY *PagingEntry; - UNIT_TEST_STATUS TestStatus; - - PagingMode =3D Paging4Level1GB; - PageTableBufferSize =3D 0; - PageTable =3D 0; - Buffer =3D NULL; - MapAttribute.Uint64 =3D 0; - MapMask.Uint64 =3D MAX_UINT64; - MapAttribute.Bits.Present =3D 1; - MapAttribute.Bits.Nx =3D 0; - - // - // Create Page table to cover [0,2G], with Nx =3D 0 - // - Status =3D PageTableMap (&PageTable, PagingMode, Buffer, &PageTableBuf= ferSize, (UINT64)0, (UINT64)SIZE_1GB * 2, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - Buffer =3D AllocatePages (EFI_SIZE_TO_PAGES (PageTableBufferSize)); - Status =3D PageTableMap (&PageTable, PagingMode, Buffer, &PageTableBuf= ferSize, (UINT64)0, (UINT64)SIZE_1GB * 2, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - TestStatus =3D IsPageTableValid (PageTable, PagingMode); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - - MapCount =3D 0; - Status =3D PageTableParse (PageTable, PagingMode, NULL, &MapCount); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - TestStatus =3D IsPageTableValid (PageTable, PagingMode); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - - Map =3D AllocatePages (EFI_SIZE_TO_PAGES (MapCount* sizeof (IA32_MA= P_ENTRY))); - Status =3D PageTableParse (PageTable, PagingMode, Map, &MapCount); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - UT_ASSERT_EQUAL (MapCount, 1); - UT_ASSERT_EQUAL (Map[0].LinearAddress, 0); - UT_ASSERT_EQUAL (Map[0].Length, SIZE_2GB); - ExpectedMapAttribute.Uint64 =3D MapAttribute.Uint64; - UT_ASSERT_EQUAL (Map[0].Attribute.Uint64, ExpectedMapAttribute.Uint64)= ; - - // - // Manually change Nx to 1 for non-leaf entry, which covers [0,2G] - // - PagingEntry =3D (IA32_PAGING_ENTRY *)(UINTN)PageTable; - PagingEntry->Uint64 =3D PagingEntry->Uint64 | BIT63; - MapCount =3D 0; - Status =3D PageTableParse (PageTable, PagingMode, NULL, &= MapCount); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - Map =3D AllocatePages (EFI_SIZE_TO_PAGES (MapCount* sizeof (IA32_MA= P_ENTRY))); - Status =3D PageTableParse (PageTable, PagingMode, Map, &MapCount); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - UT_ASSERT_EQUAL (MapCount, 1); - UT_ASSERT_EQUAL (Map[0].LinearAddress, 0); - UT_ASSERT_EQUAL (Map[0].Length, SIZE_2GB); - ExpectedMapAttribute.Bits.Nx =3D 1; - UT_ASSERT_EQUAL (Map[0].Attribute.Uint64, ExpectedMapAttribute.Uint64)= ; - - // - // Call library to change Nx to 0 for [0,1G] - // - Status =3D PageTableMap (&PageTable, PagingMode, NULL, &PageTableBuffe= rSize, (UINT64)0, (UINT64)SIZE_1GB, &MapAttribute, &MapMask); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - TestStatus =3D IsPageTableValid (PageTable, PagingMode); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - - MapCount =3D 0; - Status =3D PageTableParse (PageTable, PagingMode, NULL, &MapCount); - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - Map =3D AllocatePages (EFI_SIZE_TO_PAGES (MapCount* sizeof (IA32_MA= P_ENTRY))); - Status =3D PageTableParse (PageTable, PagingMode, Map, &MapCount); - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - - // - // There should be two ranges [0, 1G] with Nx =3D 0 and [1G, 2G] with = Nx =3D 1 - // - UT_ASSERT_EQUAL (MapCount, 2); - UT_ASSERT_EQUAL (Map[0].LinearAddress, 0); - UT_ASSERT_EQUAL (Map[0].Length, SIZE_1GB); - ExpectedMapAttribute.Uint64 =3D MapAttribute.Uint64; - UT_ASSERT_EQUAL (Map[0].Attribute.Uint64, ExpectedMapAttribute.Uint64)= ; - UT_ASSERT_EQUAL (Map[1].LinearAddress, SIZE_1GB); - UT_ASSERT_EQUAL (Map[1].Length, SIZE_1GB); - ExpectedMapAttribute.Uint64 =3D SIZE_1GB; - ExpectedMapAttribute.Bits.Present =3D 1; - ExpectedMapAttribute.Bits.Nx =3D 1; - UT_ASSERT_EQUAL (Map[1].Attribute.Uint64, ExpectedMapAttribute.Uint64)= ; - return UNIT_TEST_PASSED; -} - -/** - Initialize the unit test framework, suite, and unit tests for the - sample unit tests and run the unit tests. - - @retval EFI_SUCCESS All test cases were dispatched. - @retval EFI_OUT_OF_RESOURCES There are not enough resources availabl= e to - initialize the unit tests. -**/ -EFI_STATUS -EFIAPI -UefiTestMain ( - VOID - ) -{ - EFI_STATUS Status; - UNIT_TEST_FRAMEWORK_HANDLE Framework; - UNIT_TEST_SUITE_HANDLE ManualTestCase; - UNIT_TEST_SUITE_HANDLE RandomTestCase; - - Framework =3D NULL; - - DEBUG ((DEBUG_INFO, "%a v%a\n", UNIT_TEST_APP_NAME, UNIT_TEST_APP_VERS= ION)); - - // - // Start setting up the test framework for running the tests. - // - Status =3D InitUnitTestFramework (&Framework, UNIT_TEST_APP_NAME, gEfi= CallerBaseName, UNIT_TEST_APP_VERSION); - if (EFI_ERROR (Status)) { - DEBUG ((DEBUG_ERROR, "Failed in InitUnitTestFramework. Status =3D %r= \n", Status)); - goto EXIT; - } - - // - // Populate the Manual Test Cases. - // - Status =3D CreateUnitTestSuite (&ManualTestCase, Framework, "Manual Te= st Cases", "CpuPageTableLib.Manual", NULL, NULL); - if (EFI_ERROR (Status)) { - DEBUG ((DEBUG_ERROR, "Failed in CreateUnitTestSuite for Manual Test = Cases\n")); - Status =3D EFI_OUT_OF_RESOURCES; - goto EXIT; - } - - AddTestCase (ManualTestCase, "Check if the input parameters are not su= pported.", "Manual Test Case1", TestCaseForParameter, NULL, NULL, NULL); - AddTestCase (ManualTestCase, "Check the case that modifying page table= doesn't need extra buffer", "Manual Test Case2", TestCaseWhichNoNeedExtr= aSize, NULL, NULL, NULL); - AddTestCase (ManualTestCase, "Check the case to map [0, 1G] to [8K, 1G= +8K]", "Manual Test Case3", TestCase1Gmapto4K, NULL, NULL, NULL); - AddTestCase (ManualTestCase, "Check won't merge entries", "Manual Test= Case4", TestCaseManualNotMergeEntry, NULL, NULL, NULL); - AddTestCase (ManualTestCase, "Check if the parent entry has different = ReadWrite attribute", "Manual Test Case5", TestCaseManualChangeReadWrite,= NULL, NULL, NULL); - AddTestCase (ManualTestCase, "Check if the parent entry has different = Nx attribute", "Manual Test Case6", TestCaseManualChangeNx, NULL, NULL, N= ULL); - AddTestCase (ManualTestCase, "Check if the needed size is expected", "= Manual Test Case7", TestCaseManualSizeNotMatch, NULL, NULL, NULL); - - // - // Populate the Random Test Cases. - // - Status =3D CreateUnitTestSuite (&RandomTestCase, Framework, "Random Te= st Cases", "CpuPageTableLib.Random", NULL, NULL); - if (EFI_ERROR (Status)) { - DEBUG ((DEBUG_ERROR, "Failed in CreateUnitTestSuite for Random Test = Cases\n")); - Status =3D EFI_OUT_OF_RESOURCES; - goto EXIT; - } - - AddTestCase (RandomTestCase, "Random Test for Paging4Level", "Random T= est Case1", TestCaseforRandomTest, NULL, NULL, &mTestContextPaging4Level)= ; - AddTestCase (RandomTestCase, "Random Test for Paging4Level1G", "Random= Test Case2", TestCaseforRandomTest, NULL, NULL, &mTestContextPaging4Leve= l1GB); - AddTestCase (RandomTestCase, "Random Test for Paging5Level", "Random T= est Case3", TestCaseforRandomTest, NULL, NULL, &mTestContextPaging5Level)= ; - AddTestCase (RandomTestCase, "Random Test for Paging5Level1G", "Random= Test Case4", TestCaseforRandomTest, NULL, NULL, &mTestContextPaging5Leve= l1GB); - - // - // Execute the tests. - // - Status =3D RunAllTestSuites (Framework); - -EXIT: - if (Framework) { - FreeUnitTestFramework (Framework); - } - - return Status; -} - -/** - Standard POSIX C entry point for host based unit test execution. - - @param Argc Number of arguments. - @param Argv Array of arguments. - - @return Test application exit code. -**/ -INT32 -main ( - INT32 Argc, - CHAR8 *Argv[] - ) -{ - InitGlobalData (52); - return UefiTestMain (); -} diff --git a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomNumber.c b= /UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomNumber.c deleted file mode 100644 index 4ccbc47d9e..0000000000 --- a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomNumber.c +++ /dev/null @@ -1,5009 +0,0 @@ -/** @file - Pre-generated random number used by CpuPageTableLib test. - - Copyright (c) 2022, Intel Corporation. All rights reserved.<BR> - SPDX-License-Identifier: BSD-2-Clause-Patent - **/ -UINTN mNumberCount =3D 50000; -UINT8 mNumbers[] =3D { - 250, 22, 243, 87, 160, 129, 26, 103, 242, 136, - 193, 195, 125, 183, 205, 246, 65, 169, 187, 121, - 129, 195, 32, 183, 49, 100, 34, 51, 143, 84, - 215, 111, 113, 121, 59, 119, 33, 56, 224, 245, - 254, 244, 114, 20, 63, 216, 118, 253, 145, 171, - 108, 208, 155, 4, 47, 174, 154, 5, 92, 107, - 127, 176, 76, 238, 147, 4, 21, 26, 116, 251, - 54, 33, 126, 239, 125, 21, 188, 17, 65, 2, - 176, 77, 54, 82, 60, 32, 133, 105, 5, 211, - 41, 67, 24, 246, 122, 160, 96, 3, 27, 53, - 116, 129, 220, 46, 16, 251, 49, 70, 149, 153, - 14, 102, 69, 131, 125, 166, 221, 13, 36, 189, - 103, 28, 229, 50, 217, 174, 163, 98, 1, 101, - 226, 237, 164, 232, 153, 165, 48, 155, 152, 26, - 112, 129, 155, 23, 84, 154, 53, 147, 240, 195, - 248, 207, 129, 49, 35, 151, 90, 77, 170, 216, - 27, 51, 143, 214, 195, 161, 61, 219, 68, 106, - 159, 225, 204, 197, 59, 176, 37, 203, 61, 23, - 12, 76, 116, 118, 169, 250, 161, 68, 2, 247, - 184, 242, 199, 226, 86, 150, 216, 112, 116, 194, - 57, 173, 11, 146, 23, 244, 168, 185, 85, 234, - 57, 209, 48, 95, 130, 137, 107, 148, 113, 152, - 28, 152, 53, 2, 180, 115, 18, 32, 93, 178, - 158, 230, 216, 3, 230, 150, 244, 153, 200, 24, - 54, 195, 181, 205, 234, 159, 76, 162, 92, 91, - 255, 87, 145, 10, 250, 76, 150, 79, 13, 48, - 119, 161, 245, 145, 56, 216, 107, 237, 189, 197, - 192, 90, 52, 251, 176, 247, 163, 5, 82, 56, - 234, 155, 160, 208, 252, 10, 1, 148, 153, 21, - 221, 42, 205, 226, 6, 13, 243, 146, 123, 14, - 234, 102, 179, 156, 13, 30, 31, 182, 179, 252, - 32, 174, 65, 247, 53, 152, 106, 134, 120, 116, - 188, 59, 59, 217, 26, 39, 113, 246, 170, 127, - 91, 18, 15, 117, 9, 175, 165, 92, 111, 208, - 250, 48, 33, 57, 14, 129, 154, 4, 95, 216, - 76, 51, 80, 234, 173, 189, 203, 146, 54, 6, - 225, 175, 138, 148, 49, 123, 112, 211, 195, 119, - 248, 241, 24, 60, 0, 70, 109, 54, 49, 157, - 240, 15, 171, 235, 76, 60, 236, 105, 92, 183, - 238, 160, 203, 157, 205, 246, 149, 13, 246, 67, - 205, 249, 245, 154, 81, 30, 149, 145, 227, 208, - 65, 190, 72, 232, 102, 176, 69, 231, 156, 85, - 216, 241, 192, 157, 88, 169, 247, 23, 200, 41, - 247, 62, 173, 240, 35, 52, 98, 224, 159, 53, - 15, 141, 59, 213, 100, 28, 76, 48, 26, 73, - 48, 209, 164, 18, 176, 99, 15, 248, 154, 240, - 134, 70, 217, 179, 133, 76, 222, 185, 247, 40, - 139, 101, 85, 137, 197, 186, 89, 66, 35, 127, - 31, 201, 231, 81, 39, 206, 99, 231, 106, 26, - 69, 72, 208, 207, 49, 227, 141, 233, 41, 247, - 176, 102, 47, 51, 237, 80, 88, 149, 229, 18, - 89, 77, 126, 156, 32, 72, 132, 216, 247, 142, - 103, 179, 220, 178, 162, 133, 215, 249, 52, 160, - 25, 223, 226, 103, 4, 253, 103, 93, 191, 46, - 250, 20, 186, 223, 145, 73, 114, 195, 159, 76, - 44, 215, 46, 142, 190, 141, 201, 241, 134, 40, - 135, 140, 28, 105, 147, 102, 55, 210, 102, 44, - 180, 229, 217, 207, 46, 145, 161, 94, 8, 44, - 110, 4, 38, 254, 174, 75, 36, 64, 113, 51, - 98, 73, 97, 94, 147, 101, 168, 22, 67, 232, - 3, 20, 35, 104, 166, 105, 168, 45, 133, 122, - 101, 170, 238, 103, 31, 245, 66, 16, 81, 166, - 68, 155, 34, 71, 172, 186, 156, 37, 105, 171, - 90, 137, 248, 76, 123, 220, 208, 138, 209, 48, - 127, 195, 191, 150, 19, 19, 148, 229, 91, 73, - 204, 28, 112, 141, 239, 86, 130, 65, 238, 77, - 0, 133, 137, 105, 62, 107, 0, 132, 109, 180, - 182, 194, 215, 232, 207, 171, 189, 50, 169, 186, - 177, 76, 56, 56, 155, 204, 176, 145, 80, 67, - 178, 229, 32, 144, 10, 182, 98, 7, 129, 74, - 216, 213, 96, 172, 206, 205, 27, 4, 215, 121, - 55, 60, 73, 234, 223, 181, 60, 150, 32, 212, - 254, 35, 202, 173, 9, 234, 0, 103, 229, 21, - 23, 137, 101, 75, 102, 40, 225, 180, 203, 121, - 109, 172, 227, 249, 172, 75, 126, 33, 1, 20, - 130, 66, 205, 131, 154, 16, 72, 184, 76, 10, - 98, 226, 65, 208, 177, 154, 111, 80, 130, 27, - 46, 224, 46, 113, 61, 227, 125, 136, 118, 129, - 121, 144, 140, 83, 197, 235, 226, 140, 141, 154, - 240, 173, 133, 114, 138, 101, 114, 242, 73, 70, - 104, 236, 72, 141, 58, 129, 108, 211, 11, 189, - 212, 95, 37, 117, 40, 236, 67, 168, 251, 228, - 111, 152, 209, 130, 3, 209, 8, 21, 217, 223, - 202, 134, 159, 13, 126, 137, 150, 185, 93, 207, - 218, 38, 77, 183, 197, 250, 134, 36, 184, 228, - 213, 109, 220, 69, 219, 229, 39, 153, 78, 125, - 223, 57, 239, 131, 116, 73, 4, 147, 105, 239, - 132, 57, 160, 255, 66, 233, 145, 183, 225, 82, - 170, 151, 244, 113, 130, 180, 63, 66, 236, 237, - 7, 82, 29, 141, 83, 61, 93, 219, 79, 89, - 192, 102, 77, 47, 191, 96, 250, 191, 186, 235, - 24, 40, 244, 70, 91, 193, 102, 171, 110, 55, - 158, 127, 226, 211, 86, 16, 56, 42, 20, 81, - 143, 82, 47, 189, 112, 85, 246, 111, 177, 229, - 28, 179, 101, 35, 114, 38, 148, 26, 134, 246, - 123, 102, 141, 0, 11, 207, 173, 232, 92, 129, - 182, 97, 175, 143, 89, 42, 112, 238, 3, 137, - 96, 51, 150, 148, 20, 71, 4, 209, 94, 181, - 232, 175, 110, 244, 148, 44, 172, 99, 129, 161, - 253, 136, 100, 180, 141, 103, 81, 153, 96, 213, - 250, 140, 9, 89, 93, 123, 166, 177, 85, 235, - 56, 72, 63, 15, 164, 161, 5, 68, 214, 188, - 93, 15, 41, 64, 233, 117, 0, 9, 255, 96, - 190, 47, 27, 209, 79, 28, 117, 202, 185, 211, - 58, 184, 150, 75, 67, 22, 36, 243, 148, 21, - 218, 208, 214, 68, 173, 218, 164, 50, 139, 85, - 108, 106, 134, 4, 22, 210, 181, 209, 187, 239, - 137, 19, 250, 75, 93, 117, 214, 21, 138, 62, - 249, 172, 72, 36, 209, 119, 198, 35, 156, 231, - 7, 3, 153, 29, 46, 197, 147, 47, 105, 234, - 129, 160, 130, 96, 231, 27, 178, 11, 180, 172, - 155, 168, 14, 66, 73, 211, 143, 171, 42, 61, - 36, 34, 207, 31, 56, 158, 138, 30, 125, 238, - 145, 56, 93, 233, 231, 195, 115, 208, 54, 131, - 171, 11, 13, 151, 41, 39, 165, 132, 44, 147, - 79, 140, 107, 103, 189, 108, 51, 24, 178, 214, - 21, 139, 25, 240, 231, 36, 17, 132, 246, 211, - 87, 62, 149, 98, 27, 209, 189, 72, 11, 181, - 151, 161, 3, 254, 90, 120, 62, 40, 36, 49, - 71, 206, 33, 234, 57, 76, 112, 23, 79, 22, - 181, 9, 105, 251, 193, 84, 103, 75, 114, 30, - 49, 0, 36, 168, 169, 205, 11, 154, 187, 2, - 115, 168, 242, 251, 244, 124, 77, 39, 174, 42, - 182, 162, 124, 76, 201, 92, 47, 110, 5, 122, - 35, 139, 212, 181, 239, 120, 99, 105, 29, 143, - 109, 13, 242, 219, 38, 82, 197, 44, 28, 160, - 7, 181, 82, 144, 156, 83, 28, 68, 240, 147, - 119, 247, 130, 55, 158, 175, 41, 23, 126, 98, - 89, 192, 233, 22, 24, 13, 170, 83, 122, 125, - 28, 72, 120, 237, 115, 29, 171, 236, 52, 187, - 191, 160, 36, 10, 104, 77, 170, 46, 138, 53, - 42, 89, 131, 119, 94, 198, 237, 180, 158, 81, - 202, 1, 238, 141, 245, 65, 108, 177, 235, 9, - 156, 167, 59, 55, 105, 49, 191, 116, 110, 255, - 121, 123, 87, 28, 80, 47, 10, 24, 228, 107, - 99, 107, 167, 144, 174, 2, 89, 53, 62, 151, - 143, 221, 30, 226, 135, 203, 50, 39, 96, 119, - 46, 121, 13, 178, 103, 245, 218, 141, 158, 112, - 155, 1, 7, 130, 35, 6, 57, 67, 59, 27, - 81, 136, 147, 51, 17, 147, 119, 236, 173, 150, - 150, 241, 201, 35, 31, 144, 12, 121, 118, 165, - 102, 70, 234, 179, 183, 60, 19, 159, 217, 6, - 207, 87, 88, 189, 215, 198, 244, 7, 16, 143, - 24, 132, 116, 74, 205, 147, 33, 232, 141, 96, - 140, 249, 67, 82, 57, 38, 34, 238, 161, 2, - 201, 207, 5, 110, 75, 231, 239, 22, 255, 56, - 240, 136, 105, 207, 223, 48, 232, 80, 185, 123, - 141, 234, 193, 197, 6, 90, 131, 174, 106, 69, - 229, 72, 160, 206, 180, 33, 252, 101, 106, 215, - 156, 77, 114, 112, 216, 83, 222, 171, 159, 89, - 118, 222, 93, 201, 24, 253, 217, 106, 2, 0, - 39, 155, 55, 17, 239, 248, 253, 49, 103, 138, - 134, 229, 134, 186, 41, 83, 29, 234, 126, 216, - 157, 210, 47, 165, 225, 24, 217, 124, 130, 5, - 58, 154, 111, 116, 92, 38, 159, 228, 172, 92, - 44, 103, 7, 140, 88, 54, 12, 17, 112, 179, - 69, 216, 27, 29, 50, 239, 219, 127, 136, 152, - 84, 245, 136, 253, 80, 7, 64, 21, 177, 0, - 163, 145, 228, 238, 202, 102, 127, 239, 186, 14, - 15, 136, 193, 114, 112, 137, 146, 108, 47, 103, - 238, 71, 223, 170, 56, 97, 31, 246, 74, 219, - 7, 17, 111, 9, 96, 140, 99, 7, 33, 13, - 117, 222, 117, 86, 165, 179, 49, 135, 235, 75, - 132, 61, 18, 248, 235, 81, 182, 255, 9, 149, - 218, 63, 96, 10, 123, 79, 78, 64, 221, 25, - 67, 33, 113, 24, 90, 123, 223, 86, 228, 242, - 134, 21, 240, 230, 10, 184, 65, 103, 157, 183, - 130, 5, 253, 139, 60, 105, 38, 39, 217, 29, - 203, 117, 213, 90, 150, 45, 153, 143, 121, 202, - 251, 57, 58, 88, 212, 152, 195, 43, 7, 92, - 227, 14, 74, 242, 54, 172, 135, 150, 101, 247, - 81, 82, 240, 10, 46, 17, 196, 179, 18, 195, - 12, 179, 98, 1, 126, 158, 6, 95, 41, 122, - 118, 143, 0, 75, 197, 239, 112, 133, 213, 46, - 148, 60, 4, 49, 224, 138, 248, 77, 212, 6, - 250, 85, 209, 147, 161, 162, 209, 235, 99, 60, - 19, 115, 5, 219, 171, 195, 184, 236, 60, 241, - 141, 6, 132, 100, 225, 35, 64, 131, 97, 130, - 19, 226, 201, 64, 225, 146, 233, 49, 74, 203, - 206, 35, 249, 43, 97, 102, 138, 59, 125, 33, - 220, 143, 173, 212, 8, 12, 215, 93, 173, 220, - 238, 140, 218, 73, 219, 243, 91, 44, 100, 20, - 79, 232, 177, 204, 107, 153, 234, 167, 207, 9, - 154, 46, 159, 233, 55, 26, 28, 128, 187, 50, - 46, 69, 34, 229, 45, 35, 35, 132, 129, 97, - 116, 253, 142, 34, 216, 221, 255, 140, 169, 206, - 106, 10, 236, 94, 152, 59, 196, 149, 59, 156, - 172, 56, 149, 117, 115, 187, 217, 103, 168, 184, - 51, 36, 49, 12, 13, 155, 73, 121, 184, 152, - 245, 94, 126, 121, 89, 80, 224, 97, 1, 115, - 33, 26, 241, 104, 234, 151, 89, 190, 2, 134, - 251, 229, 162, 129, 41, 8, 26, 14, 219, 71, - 80, 4, 41, 50, 205, 31, 88, 216, 196, 150, - 217, 219, 50, 81, 39, 170, 231, 69, 225, 109, - 173, 99, 207, 31, 144, 4, 141, 131, 158, 149, - 187, 176, 81, 119, 149, 195, 156, 109, 53, 246, - 77, 119, 210, 248, 105, 93, 158, 16, 140, 103, - 84, 228, 175, 52, 251, 84, 207, 61, 28, 92, - 170, 168, 148, 30, 185, 55, 19, 63, 186, 78, - 195, 19, 114, 190, 38, 202, 190, 182, 115, 201, - 123, 10, 92, 61, 125, 47, 226, 198, 228, 178, - 119, 242, 69, 206, 148, 35, 156, 50, 187, 231, - 192, 156, 38, 66, 194, 44, 107, 248, 226, 251, - 147, 177, 213, 36, 225, 99, 149, 143, 99, 199, - 34, 201, 147, 85, 28, 226, 75, 76, 245, 116, - 44, 10, 141, 135, 60, 124, 83, 160, 246, 4, - 202, 4, 67, 73, 239, 141, 178, 12, 235, 114, - 204, 152, 249, 60, 81, 142, 74, 213, 15, 73, - 84, 25, 224, 237, 223, 21, 230, 13, 253, 236, - 189, 22, 206, 158, 11, 74, 90, 95, 41, 36, - 247, 155, 202, 160, 115, 4, 148, 95, 61, 88, - 99, 86, 82, 240, 10, 68, 43, 216, 16, 188, - 168, 253, 222, 245, 148, 44, 169, 54, 152, 33, - 44, 166, 95, 10, 5, 5, 155, 180, 127, 162, - 226, 245, 187, 239, 109, 92, 186, 162, 7, 164, - 0, 18, 139, 82, 252, 138, 172, 36, 34, 83, - 109, 46, 70, 162, 196, 114, 22, 1, 54, 127, - 79, 186, 99, 137, 72, 213, 222, 85, 71, 64, - 176, 253, 108, 24, 53, 209, 254, 89, 177, 182, - 117, 77, 58, 125, 24, 224, 187, 183, 96, 107, - 28, 120, 254, 118, 178, 248, 58, 47, 71, 49, - 171, 53, 238, 175, 228, 244, 75, 99, 80, 107, - 17, 36, 248, 116, 31, 86, 123, 152, 22, 199, - 205, 111, 25, 252, 21, 143, 109, 70, 208, 100, - 1, 68, 3, 39, 139, 43, 17, 42, 101, 44, - 49, 186, 122, 179, 110, 249, 33, 62, 11, 83, - 253, 192, 164, 25, 30, 220, 133, 192, 31, 141, - 184, 105, 77, 164, 5, 142, 39, 32, 160, 118, - 130, 42, 223, 53, 71, 197, 71, 188, 232, 27, - 177, 57, 136, 3, 9, 52, 56, 75, 153, 55, - 124, 147, 88, 177, 69, 3, 195, 130, 249, 229, - 55, 83, 122, 46, 3, 252, 211, 93, 10, 98, - 175, 71, 34, 131, 174, 84, 208, 216, 74, 164, - 93, 65, 163, 196, 43, 173, 253, 44, 7, 82, - 144, 17, 151, 3, 73, 177, 111, 104, 24, 149, - 153, 217, 179, 153, 93, 64, 162, 174, 50, 32, - 161, 227, 51, 6, 26, 156, 20, 85, 163, 75, - 226, 70, 39, 115, 18, 223, 1, 249, 241, 41, - 43, 190, 2, 103, 233, 33, 29, 78, 103, 154, - 132, 225, 103, 224, 211, 148, 202, 165, 86, 121, - 221, 169, 181, 25, 41, 237, 108, 80, 85, 41, - 20, 72, 118, 224, 24, 200, 52, 30, 177, 163, - 240, 208, 73, 200, 5, 63, 130, 199, 155, 213, - 135, 230, 137, 26, 217, 184, 197, 60, 184, 107, - 185, 215, 164, 255, 177, 194, 23, 171, 122, 37, - 37, 2, 76, 27, 174, 22, 203, 47, 100, 196, - 201, 168, 26, 111, 33, 126, 12, 122, 157, 164, - 112, 166, 250, 198, 92, 99, 54, 155, 91, 122, - 20, 181, 38, 128, 103, 180, 76, 74, 26, 180, - 118, 58, 239, 166, 183, 91, 215, 185, 121, 40, - 64, 129, 224, 8, 178, 51, 250, 42, 74, 113, - 204, 183, 71, 223, 41, 39, 171, 53, 14, 87, - 95, 134, 149, 212, 241, 12, 232, 228, 117, 98, - 217, 6, 25, 124, 145, 174, 237, 219, 88, 47, - 188, 174, 184, 197, 227, 143, 231, 215, 58, 245, - 181, 247, 109, 145, 248, 80, 173, 222, 225, 16, - 87, 132, 48, 118, 92, 97, 73, 37, 253, 239, - 30, 140, 90, 28, 136, 214, 11, 111, 210, 60, - 195, 26, 34, 14, 58, 205, 187, 178, 182, 16, - 176, 38, 173, 106, 99, 220, 222, 101, 46, 152, - 6, 248, 76, 29, 17, 192, 28, 0, 249, 104, - 122, 31, 91, 61, 217, 106, 229, 44, 244, 249, - 199, 85, 72, 237, 186, 86, 218, 62, 238, 120, - 210, 127, 7, 135, 171, 16, 0, 105, 247, 254, - 61, 19, 78, 145, 20, 13, 84, 243, 39, 248, - 169, 216, 249, 217, 248, 191, 150, 186, 228, 13, - 110, 163, 121, 103, 208, 128, 0, 151, 111, 57, - 222, 41, 102, 184, 107, 20, 73, 175, 91, 198, - 20, 81, 174, 102, 55, 221, 24, 220, 84, 68, - 28, 54, 133, 174, 75, 179, 198, 11, 149, 48, - 20, 180, 144, 163, 9, 39, 208, 244, 60, 224, - 253, 133, 241, 95, 76, 72, 192, 51, 139, 56, - 163, 43, 55, 35, 18, 154, 235, 241, 127, 24, - 67, 40, 6, 255, 61, 34, 137, 45, 198, 126, - 221, 172, 205, 243, 197, 166, 143, 45, 131, 40, - 19, 196, 42, 60, 131, 73, 166, 236, 169, 199, - 61, 4, 183, 127, 182, 64, 126, 172, 65, 145, - 179, 163, 222, 41, 252, 48, 212, 12, 7, 55, - 239, 238, 28, 158, 166, 66, 109, 125, 147, 180, - 164, 119, 110, 83, 21, 36, 135, 67, 102, 210, - 78, 13, 43, 248, 213, 206, 206, 98, 46, 17, - 188, 105, 213, 107, 227, 241, 69, 20, 208, 9, - 55, 123, 136, 218, 165, 83, 204, 77, 81, 77, - 128, 160, 141, 52, 165, 175, 41, 17, 138, 23, - 145, 55, 44, 217, 138, 201, 243, 84, 248, 0, - 5, 146, 101, 55, 200, 192, 130, 129, 206, 70, - 149, 165, 175, 111, 118, 172, 146, 53, 142, 186, - 30, 181, 66, 165, 14, 226, 112, 167, 161, 84, - 61, 26, 87, 201, 17, 213, 43, 144, 99, 97, - 195, 111, 208, 249, 97, 194, 205, 168, 94, 57, - 58, 236, 206, 165, 89, 134, 205, 30, 16, 250, - 76, 11, 249, 41, 34, 222, 146, 166, 59, 86, - 180, 8, 156, 46, 204, 252, 170, 77, 6, 112, - 85, 167, 87, 242, 60, 238, 34, 227, 181, 118, - 230, 89, 220, 153, 12, 5, 109, 123, 129, 52, - 175, 139, 43, 165, 144, 247, 11, 157, 204, 167, - 156, 190, 71, 136, 157, 247, 178, 27, 121, 0, - 89, 240, 196, 57, 209, 79, 25, 203, 63, 65, - 213, 63, 44, 245, 157, 81, 72, 152, 137, 239, - 93, 24, 186, 221, 56, 28, 250, 35, 216, 145, - 196, 235, 195, 104, 108, 62, 216, 188, 19, 3, - 106, 152, 146, 221, 83, 99, 88, 224, 174, 180, - 77, 9, 48, 168, 213, 235, 227, 189, 61, 42, - 11, 241, 189, 58, 155, 70, 193, 48, 181, 90, - 38, 116, 212, 213, 167, 143, 60, 95, 151, 226, - 212, 189, 46, 4, 102, 133, 129, 43, 246, 110, - 206, 221, 47, 78, 48, 197, 196, 163, 200, 126, - 240, 200, 57, 61, 15, 123, 22, 190, 102, 16, - 255, 22, 176, 89, 56, 96, 108, 247, 94, 162, - 148, 239, 232, 129, 196, 21, 239, 178, 14, 106, - 213, 187, 8, 55, 176, 164, 217, 153, 112, 134, - 228, 41, 245, 228, 182, 45, 214, 58, 126, 49, - 15, 72, 109, 141, 219, 45, 138, 237, 70, 84, - 238, 104, 52, 28, 114, 195, 185, 86, 26, 251, - 192, 218, 63, 82, 241, 253, 253, 64, 74, 51, - 100, 232, 168, 16, 75, 53, 145, 120, 168, 175, - 117, 109, 49, 225, 249, 233, 113, 106, 255, 236, - 31, 173, 5, 243, 151, 144, 154, 111, 13, 206, - 167, 48, 158, 125, 237, 243, 187, 183, 36, 207, - 20, 71, 152, 25, 68, 124, 242, 2, 157, 7, - 243, 134, 98, 196, 185, 55, 210, 195, 210, 173, - 131, 5, 100, 201, 41, 127, 21, 171, 168, 24, - 91, 204, 207, 165, 219, 69, 144, 235, 77, 221, - 167, 160, 75, 145, 176, 133, 28, 108, 170, 146, - 202, 86, 46, 209, 196, 62, 142, 214, 121, 1, - 50, 21, 198, 124, 21, 159, 23, 217, 205, 87, - 62, 180, 54, 142, 71, 62, 206, 103, 224, 158, - 208, 168, 235, 43, 116, 9, 124, 165, 238, 104, - 15, 117, 113, 97, 31, 88, 204, 63, 162, 40, - 114, 157, 76, 49, 83, 254, 57, 133, 12, 246, - 227, 100, 29, 242, 41, 10, 178, 50, 46, 119, - 56, 7, 94, 116, 211, 220, 83, 42, 248, 0, - 165, 63, 227, 215, 199, 169, 38, 30, 242, 220, - 205, 18, 98, 24, 122, 148, 194, 207, 193, 2, - 203, 135, 147, 237, 87, 192, 162, 160, 190, 251, - 11, 147, 112, 60, 16, 53, 213, 185, 61, 198, - 6, 183, 233, 133, 231, 59, 252, 128, 242, 223, - 151, 56, 223, 207, 146, 63, 118, 135, 107, 5, - 188, 9, 50, 113, 242, 226, 17, 40, 173, 138, - 46, 195, 99, 62, 32, 57, 121, 26, 179, 10, - 226, 62, 198, 58, 251, 196, 75, 211, 217, 63, - 58, 65, 69, 148, 16, 92, 190, 191, 78, 185, - 120, 154, 223, 10, 96, 95, 146, 255, 68, 233, - 151, 8, 61, 238, 152, 152, 213, 4, 160, 190, - 167, 71, 236, 17, 160, 238, 25, 78, 104, 185, - 46, 151, 246, 67, 167, 214, 250, 4, 4, 49, - 181, 145, 166, 96, 151, 21, 77, 97, 186, 75, - 129, 15, 127, 220, 17, 116, 138, 213, 109, 208, - 115, 121, 131, 7, 92, 226, 123, 47, 239, 231, - 164, 78, 198, 116, 182, 153, 184, 48, 184, 136, - 234, 116, 251, 144, 236, 7, 205, 210, 78, 80, - 60, 229, 175, 242, 127, 19, 152, 198, 68, 173, - 234, 130, 177, 119, 26, 3, 39, 12, 73, 127, - 145, 142, 186, 73, 85, 201, 98, 127, 248, 99, - 8, 60, 30, 178, 61, 77, 233, 8, 16, 191, - 14, 85, 78, 151, 198, 176, 13, 210, 210, 55, - 228, 12, 14, 239, 45, 117, 41, 61, 34, 131, - 39, 65, 238, 57, 205, 45, 87, 204, 127, 66, - 93, 204, 132, 92, 77, 84, 210, 77, 61, 112, - 56, 82, 224, 54, 153, 30, 133, 78, 255, 12, - 230, 222, 11, 188, 25, 133, 75, 40, 161, 213, - 189, 85, 153, 52, 76, 255, 219, 143, 96, 87, - 220, 208, 185, 85, 193, 42, 231, 64, 131, 21, - 158, 2, 64, 160, 184, 60, 201, 185, 103, 133, - 233, 150, 191, 160, 57, 158, 61, 65, 30, 242, - 133, 149, 138, 132, 164, 80, 250, 60, 81, 158, - 126, 126, 2, 237, 120, 239, 236, 168, 195, 205, - 211, 46, 14, 97, 129, 160, 24, 124, 230, 103, - 176, 208, 169, 164, 3, 55, 223, 225, 13, 222, - 112, 29, 224, 145, 209, 130, 45, 210, 44, 186, - 254, 169, 125, 148, 200, 80, 44, 110, 196, 49, - 113, 243, 134, 53, 128, 106, 255, 54, 27, 185, - 112, 16, 120, 149, 191, 238, 89, 73, 97, 77, - 204, 238, 174, 136, 227, 23, 148, 188, 215, 100, - 123, 178, 156, 89, 97, 41, 30, 126, 173, 164, - 253, 182, 248, 24, 116, 60, 62, 193, 114, 42, - 98, 24, 175, 156, 118, 90, 195, 138, 227, 212, - 178, 9, 25, 80, 104, 99, 168, 54, 150, 133, - 50, 62, 49, 59, 134, 253, 57, 137, 39, 14, - 156, 240, 81, 181, 7, 19, 86, 225, 198, 213, - 129, 202, 49, 113, 169, 7, 51, 216, 78, 20, - 188, 71, 226, 228, 211, 35, 251, 216, 254, 58, - 217, 168, 52, 156, 68, 2, 49, 184, 21, 164, - 54, 5, 217, 250, 187, 35, 45, 26, 26, 21, - 194, 183, 136, 130, 150, 108, 178, 7, 201, 246, - 188, 188, 62, 240, 60, 7, 32, 252, 125, 224, - 19, 127, 215, 69, 6, 54, 93, 238, 107, 218, - 156, 248, 86, 67, 99, 162, 81, 6, 200, 93, - 170, 206, 101, 105, 113, 160, 232, 92, 87, 92, - 172, 120, 65, 86, 174, 90, 125, 14, 162, 93, - 59, 10, 85, 173, 198, 230, 116, 168, 148, 115, - 211, 24, 163, 89, 45, 17, 4, 29, 19, 164, - 236, 192, 228, 73, 101, 114, 48, 195, 152, 48, - 152, 65, 245, 77, 20, 123, 4, 159, 60, 31, - 1, 110, 56, 247, 147, 160, 119, 41, 154, 212, - 153, 159, 100, 195, 235, 74, 173, 235, 110, 244, - 165, 8, 152, 184, 217, 18, 82, 200, 184, 171, - 140, 59, 254, 185, 135, 79, 229, 125, 151, 206, - 8, 181, 70, 183, 79, 245, 70, 109, 131, 161, - 211, 169, 35, 47, 112, 235, 73, 190, 230, 82, - 196, 254, 148, 239, 38, 106, 199, 175, 138, 190, - 184, 243, 72, 106, 172, 25, 65, 63, 251, 40, - 114, 208, 172, 45, 85, 42, 92, 174, 238, 51, - 79, 163, 62, 218, 253, 113, 87, 14, 243, 139, - 251, 13, 175, 108, 225, 231, 243, 196, 63, 31, - 208, 131, 79, 2, 148, 113, 48, 119, 198, 121, - 90, 50, 157, 231, 8, 88, 125, 90, 118, 125, - 78, 250, 248, 127, 60, 193, 182, 134, 119, 210, - 156, 4, 198, 235, 123, 118, 63, 129, 214, 203, - 31, 189, 69, 231, 48, 74, 98, 229, 187, 139, - 106, 79, 206, 114, 79, 17, 146, 45, 68, 14, - 139, 74, 22, 26, 223, 103, 59, 175, 11, 248, - 61, 130, 112, 177, 126, 220, 114, 4, 95, 225, - 72, 184, 193, 196, 22, 95, 152, 10, 49, 80, - 246, 245, 217, 128, 142, 229, 245, 0, 217, 64, - 218, 86, 252, 150, 239, 85, 32, 32, 169, 173, - 108, 179, 91, 139, 70, 214, 221, 128, 145, 245, - 202, 212, 211, 70, 150, 165, 173, 186, 128, 100, - 12, 217, 250, 33, 46, 173, 179, 43, 185, 91, - 252, 143, 237, 209, 39, 55, 3, 179, 99, 16, - 18, 28, 49, 194, 92, 71, 96, 16, 35, 228, - 231, 35, 0, 203, 103, 98, 34, 88, 95, 37, - 114, 145, 146, 228, 33, 243, 244, 185, 130, 114, - 47, 213, 51, 141, 56, 35, 88, 160, 19, 111, - 76, 238, 215, 126, 126, 248, 155, 221, 235, 209, - 197, 252, 67, 163, 156, 175, 233, 212, 174, 140, - 35, 215, 223, 157, 48, 41, 86, 59, 212, 14, - 195, 232, 173, 0, 103, 34, 71, 226, 150, 255, - 200, 118, 135, 15, 8, 159, 127, 142, 245, 18, - 198, 77, 131, 83, 130, 6, 173, 11, 209, 244, - 200, 32, 189, 66, 136, 2, 87, 30, 105, 59, - 139, 134, 140, 87, 202, 165, 197, 13, 203, 215, - 112, 115, 94, 134, 9, 82, 187, 29, 42, 74, - 56, 20, 83, 220, 132, 207, 8, 140, 76, 88, - 194, 192, 66, 224, 209, 74, 58, 73, 225, 0, - 139, 162, 6, 152, 23, 170, 154, 252, 126, 8, - 221, 30, 246, 0, 210, 62, 126, 188, 106, 234, - 0, 42, 30, 179, 254, 209, 181, 215, 49, 178, - 43, 35, 201, 222, 112, 219, 173, 254, 105, 38, - 66, 26, 144, 85, 100, 31, 175, 171, 90, 119, - 197, 240, 146, 12, 58, 137, 27, 24, 195, 149, - 14, 132, 30, 240, 144, 86, 139, 246, 96, 248, - 209, 206, 183, 0, 110, 106, 131, 189, 185, 222, - 91, 30, 255, 85, 21, 25, 213, 148, 111, 93, - 224, 185, 61, 110, 58, 25, 207, 181, 7, 113, - 17, 96, 159, 84, 168, 119, 35, 172, 123, 32, - 68, 41, 140, 23, 40, 79, 188, 182, 111, 86, - 142, 81, 85, 100, 109, 234, 28, 150, 75, 215, - 38, 219, 8, 123, 6, 150, 143, 26, 165, 33, - 61, 214, 94, 146, 4, 125, 108, 91, 114, 123, - 76, 33, 166, 252, 25, 83, 111, 128, 1, 135, - 168, 242, 189, 0, 116, 112, 136, 116, 78, 152, - 223, 164, 143, 207, 9, 113, 42, 241, 45, 129, - 68, 117, 124, 82, 198, 129, 158, 144, 250, 194, - 88, 227, 136, 159, 25, 37, 47, 104, 95, 165, - 225, 177, 40, 114, 227, 204, 160, 29, 66, 176, - 102, 55, 88, 187, 233, 55, 57, 148, 61, 127, - 219, 37, 110, 165, 73, 182, 114, 50, 213, 182, - 36, 214, 139, 175, 200, 110, 246, 227, 139, 245, - 206, 203, 100, 114, 125, 46, 26, 119, 95, 169, - 119, 153, 179, 16, 134, 101, 180, 179, 200, 99, - 12, 164, 138, 235, 20, 215, 144, 105, 223, 45, - 233, 186, 238, 203, 31, 9, 54, 245, 181, 167, - 131, 144, 48, 36, 241, 217, 251, 148, 240, 198, - 15, 73, 207, 62, 156, 71, 178, 241, 231, 160, - 22, 190, 81, 59, 167, 98, 46, 164, 127, 114, - 66, 60, 102, 84, 197, 159, 32, 177, 232, 54, - 108, 85, 73, 98, 200, 3, 88, 210, 150, 58, - 99, 62, 121, 9, 107, 237, 62, 238, 96, 250, - 159, 225, 29, 10, 244, 160, 219, 78, 143, 12, - 145, 39, 207, 69, 143, 38, 141, 190, 153, 222, - 242, 71, 197, 187, 113, 25, 110, 94, 106, 89, - 46, 108, 73, 27, 170, 21, 19, 242, 145, 42, - 251, 196, 149, 82, 133, 28, 245, 234, 30, 227, - 187, 236, 250, 71, 250, 175, 66, 92, 53, 101, - 46, 100, 16, 199, 188, 58, 114, 50, 52, 158, - 165, 205, 76, 252, 103, 193, 170, 71, 8, 155, - 63, 49, 247, 83, 78, 167, 125, 186, 181, 60, - 34, 16, 26, 196, 20, 19, 52, 185, 118, 131, - 121, 249, 207, 189, 41, 30, 152, 15, 29, 117, - 145, 148, 252, 171, 242, 201, 37, 106, 138, 153, - 207, 21, 166, 152, 230, 68, 0, 175, 80, 154, - 39, 110, 161, 215, 161, 36, 177, 157, 135, 143, - 30, 137, 22, 206, 138, 90, 68, 153, 112, 116, - 203, 70, 251, 30, 172, 154, 48, 41, 237, 18, - 194, 246, 28, 96, 169, 140, 31, 49, 182, 95, - 210, 51, 190, 123, 250, 182, 129, 68, 168, 156, - 52, 150, 111, 1, 187, 235, 8, 63, 108, 236, - 13, 12, 221, 62, 88, 165, 138, 218, 22, 243, - 134, 211, 229, 254, 226, 106, 234, 215, 19, 109, - 6, 27, 241, 16, 249, 57, 33, 27, 217, 13, - 248, 129, 100, 173, 31, 253, 70, 158, 175, 44, - 60, 16, 221, 10, 66, 107, 11, 51, 157, 62, - 74, 20, 227, 8, 170, 83, 51, 222, 165, 198, - 203, 134, 7, 209, 133, 43, 88, 180, 85, 136, - 57, 66, 171, 193, 163, 89, 88, 159, 96, 62, - 7, 142, 77, 149, 251, 15, 242, 42, 18, 143, - 27, 106, 183, 117, 72, 233, 234, 99, 132, 136, - 96, 52, 79, 132, 33, 182, 78, 114, 134, 170, - 12, 132, 191, 105, 130, 156, 133, 224, 112, 165, - 31, 41, 12, 83, 186, 172, 145, 23, 226, 57, - 118, 81, 223, 180, 132, 140, 189, 148, 140, 162, - 228, 132, 73, 31, 16, 224, 165, 170, 128, 98, - 90, 206, 236, 128, 6, 165, 251, 36, 225, 35, - 237, 248, 96, 210, 122, 157, 115, 112, 56, 216, - 0, 15, 75, 107, 142, 39, 212, 2, 237, 159, - 90, 154, 117, 58, 215, 223, 100, 117, 57, 147, - 161, 244, 61, 79, 54, 150, 2, 66, 233, 132, - 129, 252, 118, 142, 182, 62, 58, 205, 237, 103, - 214, 129, 149, 32, 198, 162, 154, 31, 79, 200, - 230, 79, 181, 29, 114, 16, 221, 226, 101, 6, - 62, 189, 218, 181, 195, 50, 114, 192, 85, 215, - 73, 11, 239, 143, 52, 92, 111, 239, 158, 2, - 234, 195, 159, 106, 118, 7, 229, 60, 101, 106, - 206, 122, 235, 117, 28, 254, 54, 121, 126, 21, - 49, 240, 46, 211, 127, 168, 253, 95, 13, 211, - 201, 89, 213, 79, 79, 205, 72, 54, 24, 31, - 161, 248, 192, 216, 11, 122, 190, 44, 162, 253, - 243, 222, 40, 156, 4, 106, 207, 196, 121, 110, - 116, 31, 33, 128, 37, 152, 78, 6, 16, 29, - 102, 179, 64, 205, 131, 195, 17, 174, 45, 237, - 59, 151, 21, 64, 199, 71, 140, 253, 151, 187, - 251, 55, 62, 123, 73, 47, 1, 118, 182, 130, - 116, 152, 6, 93, 162, 96, 239, 224, 253, 169, - 231, 132, 35, 102, 86, 35, 122, 136, 235, 191, - 136, 169, 44, 253, 244, 143, 148, 41, 203, 220, - 242, 250, 168, 110, 22, 143, 189, 219, 61, 8, - 14, 200, 193, 182, 24, 21, 37, 28, 57, 32, - 247, 9, 213, 212, 87, 27, 91, 25, 55, 117, - 165, 253, 253, 136, 81, 215, 124, 212, 183, 94, - 139, 164, 107, 207, 188, 66, 216, 118, 34, 58, - 129, 154, 83, 160, 169, 190, 7, 209, 168, 3, - 133, 162, 104, 10, 153, 177, 36, 40, 145, 183, - 102, 140, 181, 118, 170, 56, 93, 5, 193, 160, - 33, 58, 63, 14, 90, 249, 143, 214, 25, 243, - 176, 18, 236, 149, 102, 68, 185, 1, 168, 157, - 164, 28, 119, 165, 2, 255, 42, 221, 10, 177, - 129, 163, 114, 138, 135, 101, 136, 63, 250, 11, - 162, 35, 31, 168, 255, 8, 77, 175, 185, 176, - 146, 144, 48, 148, 55, 21, 24, 72, 103, 12, - 83, 55, 239, 38, 204, 188, 220, 190, 212, 150, - 93, 125, 132, 227, 249, 166, 247, 247, 139, 122, - 172, 96, 233, 53, 118, 31, 9, 95, 3, 241, - 47, 60, 149, 140, 160, 148, 152, 27, 171, 226, - 41, 81, 202, 182, 55, 187, 109, 96, 237, 45, - 39, 164, 231, 88, 70, 27, 12, 37, 48, 174, - 141, 235, 230, 21, 22, 37, 129, 164, 226, 79, - 228, 171, 88, 85, 96, 80, 135, 43, 95, 70, - 160, 44, 198, 71, 24, 116, 120, 123, 39, 38, - 145, 27, 155, 164, 166, 127, 29, 14, 68, 148, - 20, 109, 174, 112, 32, 130, 156, 72, 66, 24, - 65, 228, 168, 154, 112, 123, 170, 144, 14, 40, - 81, 12, 121, 2, 249, 110, 65, 172, 175, 15, - 47, 66, 200, 10, 100, 241, 221, 2, 126, 99, - 191, 255, 125, 84, 54, 163, 46, 128, 123, 71, - 126, 135, 116, 155, 139, 61, 43, 137, 69, 179, - 74, 103, 230, 129, 137, 176, 61, 61, 78, 199, - 238, 188, 228, 123, 20, 34, 4, 98, 106, 64, - 9, 145, 1, 213, 96, 181, 27, 168, 152, 66, - 6, 77, 166, 60, 4, 33, 90, 174, 42, 151, - 148, 207, 111, 23, 29, 29, 138, 248, 60, 48, - 248, 40, 169, 105, 146, 33, 39, 237, 0, 138, - 176, 19, 156, 93, 105, 176, 252, 14, 77, 17, - 122, 119, 18, 103, 17, 200, 38, 31, 230, 102, - 45, 106, 51, 29, 198, 244, 43, 183, 121, 55, - 223, 217, 223, 10, 209, 70, 86, 130, 160, 230, - 120, 215, 221, 5, 213, 130, 193, 224, 33, 191, - 60, 85, 143, 200, 105, 255, 22, 77, 21, 94, - 208, 155, 194, 95, 15, 111, 128, 20, 79, 253, - 225, 164, 250, 101, 26, 157, 127, 250, 26, 255, - 188, 1, 243, 209, 173, 161, 240, 135, 192, 198, - 200, 114, 112, 226, 254, 76, 197, 217, 92, 101, - 154, 106, 72, 47, 219, 83, 133, 236, 13, 240, - 36, 234, 34, 109, 152, 115, 0, 120, 92, 230, - 222, 43, 220, 253, 6, 156, 192, 196, 157, 51, - 231, 32, 26, 247, 232, 28, 130, 130, 241, 13, - 44, 191, 187, 211, 196, 156, 35, 29, 185, 88, - 129, 91, 83, 33, 59, 4, 137, 173, 62, 77, - 253, 103, 199, 10, 115, 179, 158, 75, 71, 252, - 11, 149, 165, 29, 209, 188, 207, 250, 228, 226, - 74, 137, 225, 87, 138, 87, 5, 10, 233, 38, - 118, 4, 147, 225, 215, 11, 108, 87, 28, 235, - 170, 202, 253, 255, 130, 179, 133, 75, 138, 131, - 63, 173, 192, 35, 153, 11, 53, 44, 87, 188, - 86, 223, 26, 60, 115, 65, 172, 91, 165, 199, - 87, 92, 67, 233, 187, 40, 34, 132, 217, 203, - 44, 151, 224, 213, 107, 243, 10, 36, 38, 153, - 224, 165, 102, 253, 251, 251, 45, 145, 255, 159, - 161, 65, 158, 33, 69, 165, 213, 218, 152, 226, - 135, 28, 25, 101, 144, 26, 62, 252, 149, 164, - 157, 161, 184, 40, 62, 75, 52, 103, 244, 6, - 187, 20, 126, 167, 138, 26, 40, 187, 115, 85, - 110, 60, 172, 55, 151, 7, 167, 137, 222, 75, - 125, 156, 249, 3, 104, 116, 137, 156, 230, 113, - 200, 68, 210, 157, 189, 208, 155, 185, 187, 128, - 203, 18, 214, 69, 72, 76, 91, 44, 71, 169, - 16, 118, 55, 148, 93, 204, 36, 138, 229, 174, - 131, 117, 209, 149, 31, 1, 53, 43, 196, 3, - 118, 99, 39, 152, 249, 37, 219, 169, 145, 146, - 131, 163, 100, 47, 199, 29, 231, 23, 78, 215, - 234, 9, 113, 86, 202, 110, 5, 232, 211, 153, - 137, 103, 9, 61, 155, 135, 149, 184, 140, 193, - 8, 12, 27, 186, 230, 9, 116, 219, 206, 34, - 182, 123, 6, 93, 169, 201, 119, 148, 88, 47, - 21, 52, 247, 169, 121, 238, 152, 17, 195, 201, - 202, 249, 88, 23, 70, 145, 16, 85, 71, 8, - 166, 186, 72, 136, 131, 51, 70, 249, 164, 22, - 29, 252, 83, 164, 34, 86, 74, 113, 166, 224, - 194, 123, 103, 49, 53, 6, 202, 88, 188, 89, - 2, 189, 176, 192, 17, 78, 95, 204, 158, 234, - 20, 183, 60, 0, 224, 139, 19, 98, 207, 195, - 112, 194, 232, 140, 237, 13, 126, 187, 138, 122, - 162, 130, 126, 56, 207, 92, 18, 175, 128, 200, - 219, 189, 27, 123, 58, 11, 46, 127, 2, 190, - 204, 231, 56, 15, 134, 83, 29, 103, 110, 150, - 147, 118, 134, 162, 250, 228, 55, 157, 21, 60, - 202, 8, 187, 68, 238, 30, 92, 35, 171, 75, - 165, 152, 187, 168, 180, 125, 193, 108, 229, 244, - 205, 126, 238, 56, 170, 108, 61, 208, 221, 131, - 122, 210, 52, 171, 236, 84, 70, 35, 76, 77, - 244, 248, 50, 172, 53, 38, 157, 131, 121, 226, - 172, 166, 195, 39, 207, 252, 146, 70, 43, 110, - 170, 215, 53, 137, 79, 153, 136, 108, 250, 74, - 217, 166, 57, 202, 189, 167, 19, 126, 165, 60, - 254, 235, 120, 166, 92, 43, 33, 99, 246, 54, - 159, 243, 181, 205, 237, 49, 48, 141, 17, 237, - 177, 96, 240, 35, 226, 69, 186, 147, 180, 157, - 7, 212, 42, 128, 107, 73, 76, 138, 244, 127, - 137, 66, 212, 200, 154, 29, 140, 69, 203, 207, - 246, 206, 7, 149, 248, 222, 121, 95, 18, 2, - 6, 110, 191, 185, 111, 97, 210, 11, 186, 203, - 207, 208, 76, 10, 254, 247, 143, 130, 146, 61, - 143, 106, 121, 206, 97, 28, 38, 239, 156, 190, - 239, 132, 57, 35, 133, 247, 176, 180, 171, 53, - 92, 53, 221, 173, 38, 197, 117, 175, 38, 129, - 102, 204, 190, 254, 174, 156, 6, 228, 16, 65, - 236, 8, 199, 191, 122, 174, 64, 40, 76, 97, - 149, 135, 114, 210, 203, 126, 203, 89, 155, 233, - 120, 210, 229, 46, 142, 205, 64, 244, 157, 152, - 149, 71, 109, 207, 240, 205, 101, 18, 28, 13, - 167, 201, 146, 142, 196, 138, 39, 241, 177, 61, - 215, 20, 85, 215, 84, 201, 91, 190, 147, 6, - 157, 119, 94, 224, 181, 182, 239, 61, 210, 90, - 47, 145, 62, 37, 40, 64, 180, 231, 87, 181, - 160, 207, 104, 104, 249, 65, 93, 234, 166, 12, - 104, 63, 127, 128, 246, 243, 128, 36, 46, 83, - 171, 183, 235, 18, 102, 254, 76, 70, 211, 243, - 109, 194, 83, 17, 132, 225, 249, 190, 22, 147, - 44, 166, 192, 240, 63, 80, 193, 39, 98, 46, - 97, 109, 160, 220, 237, 120, 109, 34, 79, 44, - 47, 221, 225, 4, 204, 200, 213, 130, 152, 186, - 87, 181, 115, 122, 58, 36, 166, 239, 202, 228, - 66, 105, 123, 7, 183, 120, 71, 200, 169, 133, - 94, 240, 122, 220, 182, 115, 186, 88, 71, 4, - 234, 235, 8, 140, 47, 117, 243, 204, 204, 206, - 153, 3, 227, 93, 213, 212, 131, 54, 238, 198, - 4, 111, 236, 93, 3, 63, 149, 62, 231, 29, - 211, 9, 83, 130, 91, 218, 183, 149, 176, 213, - 255, 63, 111, 113, 116, 224, 39, 206, 243, 60, - 203, 252, 176, 214, 241, 47, 216, 150, 31, 195, - 149, 175, 56, 253, 197, 120, 179, 8, 185, 98, - 251, 239, 98, 210, 162, 246, 90, 116, 251, 247, - 236, 103, 255, 40, 163, 153, 82, 117, 190, 26, - 199, 8, 154, 146, 219, 49, 118, 193, 159, 30, - 78, 114, 243, 188, 104, 56, 132, 112, 166, 170, - 197, 51, 112, 151, 224, 66, 130, 206, 195, 97, - 239, 227, 153, 228, 60, 120, 94, 42, 255, 150, - 49, 60, 232, 165, 34, 184, 33, 90, 27, 85, - 111, 248, 196, 174, 224, 252, 26, 236, 51, 195, - 32, 235, 42, 221, 148, 88, 194, 126, 34, 204, - 228, 6, 108, 18, 122, 11, 50, 108, 46, 73, - 79, 45, 183, 203, 244, 95, 186, 82, 176, 245, - 91, 100, 107, 78, 42, 223, 251, 123, 174, 182, - 90, 28, 80, 0, 226, 59, 199, 81, 201, 208, - 218, 84, 152, 10, 159, 170, 146, 26, 189, 186, - 136, 59, 155, 165, 148, 148, 81, 106, 144, 28, - 97, 165, 219, 122, 5, 231, 79, 44, 92, 255, - 7, 76, 90, 207, 141, 15, 80, 200, 126, 225, - 211, 135, 173, 216, 27, 200, 138, 105, 160, 81, - 39, 196, 81, 253, 177, 124, 225, 36, 72, 209, - 193, 63, 113, 123, 112, 14, 132, 132, 170, 134, - 22, 15, 152, 75, 83, 33, 220, 184, 78, 205, - 255, 168, 78, 0, 44, 5, 47, 26, 146, 75, - 238, 220, 177, 157, 105, 36, 179, 73, 77, 9, - 72, 230, 49, 35, 16, 39, 124, 70, 18, 120, - 188, 136, 206, 255, 16, 70, 235, 190, 235, 237, - 98, 43, 145, 161, 94, 27, 34, 242, 155, 224, - 206, 124, 63, 133, 167, 146, 135, 237, 150, 217, - 158, 251, 177, 182, 73, 32, 221, 13, 27, 204, - 99, 226, 69, 151, 58, 184, 100, 156, 242, 98, - 64, 131, 157, 99, 96, 200, 180, 16, 2, 211, - 110, 154, 16, 141, 4, 76, 47, 246, 107, 168, - 42, 155, 95, 217, 72, 221, 94, 147, 213, 14, - 33, 205, 194, 223, 13, 19, 128, 92, 56, 121, - 111, 105, 130, 96, 87, 155, 89, 13, 102, 87, - 220, 153, 43, 100, 139, 240, 231, 50, 34, 95, - 178, 254, 38, 25, 114, 86, 30, 148, 115, 250, - 110, 72, 237, 31, 100, 217, 222, 46, 87, 132, - 199, 65, 50, 21, 163, 72, 116, 73, 149, 187, - 22, 165, 250, 9, 155, 76, 96, 87, 76, 56, - 71, 153, 165, 116, 214, 204, 106, 12, 35, 246, - 14, 203, 159, 90, 236, 58, 220, 196, 198, 145, - 112, 224, 37, 236, 96, 62, 42, 68, 223, 3, - 198, 132, 158, 40, 218, 198, 252, 146, 138, 248, - 76, 255, 156, 33, 233, 109, 239, 129, 20, 127, - 168, 181, 12, 230, 86, 184, 83, 243, 82, 67, - 192, 164, 61, 55, 93, 222, 24, 68, 60, 102, - 99, 23, 150, 228, 14, 33, 167, 167, 219, 102, - 216, 78, 30, 41, 205, 164, 4, 194, 146, 173, - 196, 188, 10, 212, 58, 220, 209, 79, 175, 223, - 108, 218, 221, 136, 248, 124, 4, 112, 115, 152, - 45, 209, 174, 99, 110, 231, 129, 166, 174, 104, - 125, 203, 96, 90, 8, 220, 186, 97, 239, 218, - 177, 221, 167, 198, 209, 7, 208, 157, 35, 252, - 123, 111, 217, 98, 122, 170, 166, 245, 27, 12, - 238, 68, 203, 191, 147, 17, 229, 184, 247, 43, - 195, 230, 167, 216, 213, 177, 71, 29, 219, 76, - 63, 126, 249, 230, 201, 108, 229, 126, 223, 208, - 204, 55, 253, 246, 11, 248, 32, 220, 83, 14, - 6, 66, 159, 69, 158, 55, 92, 248, 36, 238, - 160, 9, 216, 219, 153, 127, 240, 168, 50, 3, - 233, 122, 64, 123, 244, 116, 17, 133, 0, 88, - 182, 39, 255, 21, 31, 197, 92, 73, 55, 126, - 171, 182, 138, 73, 240, 134, 13, 220, 177, 200, - 65, 113, 102, 183, 101, 17, 232, 10, 185, 201, - 99, 29, 67, 141, 243, 85, 73, 103, 217, 33, - 64, 250, 155, 117, 163, 92, 253, 91, 30, 8, - 140, 112, 248, 73, 57, 167, 177, 194, 208, 7, - 216, 105, 91, 227, 83, 208, 126, 198, 218, 102, - 197, 239, 65, 57, 109, 212, 83, 246, 214, 160, - 74, 52, 154, 64, 230, 16, 252, 198, 57, 60, - 224, 169, 100, 19, 216, 57, 104, 181, 108, 146, - 227, 170, 0, 74, 117, 141, 199, 165, 140, 77, - 20, 62, 39, 0, 60, 193, 90, 219, 50, 90, - 150, 169, 64, 82, 232, 127, 5, 188, 153, 237, - 203, 201, 106, 240, 47, 77, 99, 232, 137, 202, - 214, 14, 146, 136, 231, 87, 214, 224, 10, 46, - 208, 131, 212, 202, 140, 173, 219, 200, 7, 44, - 160, 42, 51, 68, 158, 22, 84, 150, 53, 50, - 13, 236, 169, 94, 50, 254, 10, 170, 18, 12, - 180, 49, 0, 235, 158, 100, 232, 160, 40, 199, - 104, 196, 16, 169, 51, 37, 151, 3, 123, 142, - 69, 79, 85, 104, 141, 57, 133, 227, 59, 10, - 6, 190, 127, 14, 31, 11, 38, 194, 147, 214, - 63, 115, 188, 211, 3, 119, 108, 23, 164, 111, - 152, 93, 144, 25, 247, 251, 206, 227, 4, 215, - 218, 113, 155, 82, 183, 124, 84, 226, 51, 202, - 242, 19, 11, 13, 143, 190, 47, 93, 246, 17, - 62, 97, 113, 158, 73, 119, 146, 151, 3, 135, - 75, 68, 196, 19, 220, 67, 203, 129, 148, 119, - 95, 53, 64, 23, 210, 18, 255, 154, 33, 215, - 201, 70, 212, 222, 199, 135, 71, 165, 254, 185, - 193, 181, 82, 218, 188, 202, 248, 206, 201, 162, - 144, 90, 176, 231, 167, 212, 3, 82, 26, 145, - 149, 91, 105, 37, 90, 75, 203, 177, 239, 169, - 181, 211, 108, 165, 117, 158, 248, 26, 123, 176, - 238, 2, 62, 4, 151, 127, 76, 98, 189, 242, - 17, 61, 18, 58, 157, 245, 126, 80, 63, 62, - 247, 113, 147, 167, 189, 36, 89, 23, 72, 27, - 186, 254, 238, 4, 241, 45, 22, 255, 195, 222, - 185, 57, 235, 201, 178, 185, 206, 29, 55, 36, - 200, 253, 128, 245, 14, 252, 114, 210, 192, 238, - 170, 55, 28, 70, 250, 114, 130, 59, 40, 42, - 166, 165, 86, 64, 65, 119, 7, 19, 183, 226, - 37, 99, 167, 193, 43, 203, 138, 236, 204, 28, - 122, 151, 26, 3, 34, 124, 139, 111, 225, 198, - 119, 46, 100, 33, 38, 147, 34, 124, 95, 127, - 215, 167, 198, 94, 108, 75, 203, 185, 53, 237, - 117, 33, 149, 122, 217, 12, 11, 96, 201, 203, - 212, 67, 36, 93, 216, 58, 149, 71, 18, 97, - 227, 66, 28, 164, 226, 168, 181, 254, 31, 234, - 228, 127, 43, 253, 120, 22, 247, 164, 36, 254, - 131, 213, 19, 135, 158, 83, 255, 34, 228, 173, - 233, 216, 244, 176, 234, 242, 58, 91, 32, 161, - 11, 180, 100, 176, 210, 125, 127, 32, 168, 221, - 166, 131, 77, 141, 228, 228, 43, 60, 218, 178, - 181, 140, 62, 174, 143, 145, 9, 212, 0, 167, - 197, 206, 129, 3, 172, 82, 154, 185, 14, 61, - 29, 192, 30, 203, 11, 217, 189, 156, 161, 44, - 250, 130, 206, 217, 5, 189, 225, 68, 71, 181, - 227, 127, 1, 15, 173, 64, 237, 255, 150, 118, - 51, 184, 200, 245, 88, 70, 96, 193, 35, 217, - 141, 166, 26, 99, 243, 38, 20, 164, 65, 184, - 199, 124, 86, 27, 115, 60, 125, 199, 74, 48, - 152, 54, 6, 4, 118, 122, 116, 88, 115, 140, - 130, 90, 226, 200, 169, 112, 61, 92, 131, 48, - 165, 207, 116, 133, 85, 69, 239, 18, 40, 37, - 227, 78, 61, 91, 57, 180, 87, 253, 75, 223, - 9, 127, 44, 22, 22, 30, 182, 88, 69, 250, - 218, 21, 161, 114, 91, 101, 163, 189, 205, 83, - 206, 97, 175, 85, 239, 230, 199, 232, 93, 5, - 230, 175, 177, 97, 88, 93, 163, 245, 168, 224, - 112, 4, 153, 111, 44, 232, 198, 208, 232, 140, - 23, 56, 107, 156, 29, 253, 204, 237, 234, 112, - 40, 107, 229, 54, 99, 28, 254, 28, 148, 203, - 105, 219, 83, 246, 219, 208, 220, 177, 220, 145, - 237, 98, 113, 4, 137, 78, 177, 147, 189, 121, - 51, 71, 175, 191, 22, 230, 151, 39, 207, 76, - 157, 237, 216, 131, 234, 180, 165, 18, 120, 154, - 231, 15, 242, 204, 84, 208, 159, 79, 160, 110, - 229, 132, 103, 54, 130, 5, 175, 89, 93, 38, - 2, 18, 211, 27, 11, 127, 46, 113, 111, 11, - 31, 7, 225, 104, 113, 94, 151, 88, 251, 154, - 97, 222, 131, 239, 163, 9, 59, 49, 75, 62, - 173, 178, 215, 65, 222, 156, 103, 233, 251, 43, - 160, 89, 163, 128, 228, 109, 251, 121, 37, 132, - 224, 136, 220, 4, 219, 187, 77, 104, 178, 72, - 131, 37, 30, 82, 56, 189, 113, 161, 41, 124, - 62, 2, 31, 236, 226, 217, 78, 167, 41, 239, - 62, 229, 241, 17, 222, 207, 159, 26, 243, 56, - 203, 8, 130, 112, 211, 125, 70, 47, 42, 119, - 239, 17, 241, 168, 240, 46, 15, 175, 28, 44, - 116, 62, 24, 91, 215, 187, 52, 33, 252, 92, - 252, 24, 43, 88, 237, 177, 63, 239, 118, 244, - 53, 15, 63, 3, 123, 14, 79, 103, 239, 234, - 66, 185, 50, 19, 55, 208, 234, 239, 125, 94, - 206, 40, 51, 124, 116, 244, 162, 239, 22, 131, - 136, 48, 239, 185, 249, 137, 42, 45, 173, 100, - 70, 215, 222, 149, 87, 176, 121, 56, 97, 32, - 227, 45, 240, 126, 105, 104, 233, 76, 74, 233, - 194, 118, 176, 59, 22, 43, 8, 187, 83, 41, - 131, 50, 114, 17, 127, 245, 175, 64, 38, 12, - 245, 212, 9, 183, 221, 116, 219, 124, 151, 21, - 36, 84, 35, 61, 146, 140, 224, 72, 102, 157, - 204, 50, 159, 146, 102, 231, 185, 182, 5, 110, - 240, 71, 123, 251, 24, 80, 194, 22, 30, 207, - 11, 31, 164, 163, 10, 32, 93, 65, 67, 31, - 229, 254, 5, 10, 151, 123, 62, 206, 79, 92, - 119, 25, 33, 82, 138, 118, 74, 112, 145, 64, - 214, 252, 204, 38, 189, 5, 164, 17, 166, 164, - 67, 45, 73, 130, 251, 2, 90, 15, 20, 208, - 113, 129, 23, 151, 237, 180, 182, 241, 114, 148, - 68, 242, 191, 22, 219, 244, 87, 252, 38, 88, - 112, 102, 104, 181, 92, 54, 72, 250, 223, 153, - 250, 157, 86, 210, 111, 135, 65, 200, 46, 181, - 107, 145, 37, 188, 147, 112, 97, 49, 254, 130, - 53, 165, 32, 15, 200, 218, 86, 117, 44, 47, - 108, 110, 91, 240, 194, 62, 202, 78, 17, 68, - 237, 19, 21, 201, 39, 149, 104, 181, 210, 128, - 153, 136, 109, 233, 153, 145, 154, 176, 213, 193, - 229, 184, 158, 230, 174, 63, 71, 187, 238, 18, - 45, 0, 201, 172, 193, 28, 35, 106, 100, 227, - 208, 207, 237, 211, 141, 182, 52, 113, 141, 54, - 69, 243, 76, 103, 8, 165, 89, 217, 13, 5, - 241, 38, 23, 60, 103, 141, 68, 227, 58, 182, - 14, 16, 236, 192, 134, 4, 8, 67, 171, 213, - 237, 37, 195, 6, 1, 81, 72, 128, 35, 69, - 169, 214, 31, 10, 26, 119, 55, 116, 186, 108, - 120, 132, 39, 153, 1, 248, 161, 7, 98, 83, - 57, 199, 41, 116, 11, 32, 22, 13, 190, 81, - 39, 194, 144, 3, 76, 62, 16, 104, 219, 176, - 139, 106, 107, 219, 200, 198, 169, 113, 77, 95, - 101, 33, 1, 55, 70, 149, 181, 177, 136, 69, - 171, 200, 171, 198, 231, 186, 18, 24, 31, 133, - 166, 225, 231, 114, 236, 11, 99, 104, 86, 89, - 227, 249, 192, 63, 126, 43, 88, 29, 247, 208, - 47, 133, 119, 114, 216, 23, 38, 227, 28, 220, - 209, 41, 32, 228, 205, 214, 42, 14, 69, 198, - 146, 8, 14, 25, 165, 185, 138, 118, 195, 42, - 136, 104, 198, 99, 123, 28, 58, 9, 248, 80, - 158, 234, 133, 104, 84, 102, 36, 209, 99, 52, - 134, 126, 206, 51, 238, 233, 180, 20, 100, 142, - 184, 225, 23, 29, 186, 243, 10, 16, 201, 232, - 242, 197, 74, 210, 196, 171, 127, 79, 185, 90, - 63, 242, 223, 17, 132, 84, 161, 159, 9, 119, - 178, 19, 49, 26, 95, 146, 254, 226, 70, 235, - 58, 54, 225, 88, 33, 147, 10, 148, 42, 213, - 91, 228, 132, 146, 49, 153, 249, 218, 58, 120, - 211, 156, 246, 119, 126, 236, 148, 240, 18, 78, - 90, 246, 109, 73, 46, 14, 43, 181, 245, 146, - 42, 3, 86, 140, 187, 42, 50, 181, 42, 37, - 105, 148, 229, 12, 177, 113, 21, 3, 238, 91, - 51, 222, 255, 76, 99, 140, 180, 129, 247, 231, - 114, 21, 166, 247, 123, 120, 75, 173, 102, 236, - 118, 149, 238, 232, 207, 203, 39, 96, 141, 255, - 128, 197, 81, 215, 153, 74, 28, 1, 159, 39, - 225, 168, 22, 129, 96, 246, 195, 154, 20, 19, - 16, 155, 60, 133, 9, 91, 95, 220, 197, 99, - 3, 59, 174, 106, 2, 35, 185, 160, 44, 114, - 165, 243, 195, 133, 4, 186, 30, 29, 12, 208, - 194, 112, 87, 162, 89, 188, 189, 159, 163, 224, - 108, 193, 155, 144, 231, 217, 37, 240, 41, 156, - 153, 106, 23, 86, 188, 85, 21, 76, 89, 60, - 174, 101, 139, 245, 30, 47, 230, 26, 109, 138, - 141, 100, 250, 23, 247, 118, 155, 189, 144, 13, - 116, 41, 190, 138, 131, 225, 217, 229, 123, 26, - 215, 59, 49, 110, 198, 98, 221, 54, 46, 38, - 143, 1, 61, 255, 144, 221, 154, 236, 79, 50, - 156, 134, 56, 20, 149, 3, 229, 157, 71, 53, - 230, 209, 250, 40, 232, 35, 66, 220, 48, 92, - 9, 41, 219, 165, 74, 0, 247, 93, 214, 163, - 157, 201, 11, 155, 183, 198, 230, 95, 106, 130, - 22, 185, 34, 52, 17, 246, 94, 94, 232, 144, - 144, 242, 169, 37, 87, 46, 121, 170, 189, 176, - 161, 39, 190, 49, 10, 218, 92, 66, 191, 107, - 15, 109, 209, 247, 72, 250, 187, 203, 50, 203, - 215, 92, 136, 249, 186, 55, 137, 232, 91, 201, - 15, 87, 99, 30, 32, 144, 96, 240, 190, 253, - 236, 183, 46, 105, 70, 65, 35, 226, 117, 169, - 93, 107, 44, 12, 33, 125, 182, 241, 90, 111, - 208, 147, 19, 180, 242, 204, 168, 39, 1, 184, - 67, 125, 182, 233, 99, 28, 193, 139, 183, 74, - 149, 162, 174, 90, 67, 173, 243, 182, 166, 44, - 148, 116, 101, 207, 150, 53, 203, 188, 149, 202, - 240, 233, 63, 79, 155, 122, 217, 34, 104, 97, - 138, 107, 212, 219, 35, 201, 92, 11, 18, 194, - 216, 234, 223, 245, 50, 65, 10, 67, 178, 251, - 245, 143, 153, 102, 245, 128, 13, 101, 107, 160, - 163, 251, 206, 70, 164, 244, 78, 212, 18, 51, - 233, 43, 56, 3, 59, 34, 88, 113, 175, 72, - 188, 123, 117, 25, 238, 247, 173, 20, 36, 41, - 227, 151, 209, 172, 57, 42, 128, 195, 112, 135, - 234, 205, 199, 165, 45, 224, 247, 77, 165, 160, - 94, 188, 198, 232, 143, 118, 98, 72, 188, 126, - 30, 223, 60, 116, 98, 229, 28, 1, 126, 14, - 236, 163, 106, 158, 152, 169, 223, 194, 189, 149, - 223, 59, 101, 167, 179, 140, 55, 165, 134, 60, - 201, 208, 201, 66, 253, 68, 130, 19, 242, 52, - 23, 43, 120, 240, 231, 39, 98, 39, 48, 155, - 245, 9, 43, 80, 255, 117, 42, 128, 125, 91, - 214, 250, 156, 150, 158, 72, 176, 4, 253, 15, - 8, 110, 28, 0, 138, 225, 41, 23, 9, 42, - 163, 234, 244, 244, 174, 218, 88, 133, 62, 46, - 13, 118, 124, 212, 180, 205, 23, 215, 80, 184, - 221, 131, 240, 36, 134, 23, 68, 50, 91, 157, - 22, 73, 115, 113, 68, 187, 241, 91, 241, 197, - 10, 176, 5, 224, 29, 177, 149, 131, 33, 221, - 120, 60, 40, 110, 156, 44, 79, 210, 100, 61, - 129, 218, 2, 88, 11, 23, 50, 121, 81, 64, - 176, 250, 206, 109, 62, 37, 109, 57, 151, 206, - 190, 192, 254, 46, 97, 184, 71, 177, 208, 184, - 116, 80, 198, 63, 123, 135, 101, 188, 7, 147, - 111, 245, 135, 74, 12, 127, 238, 58, 224, 152, - 18, 200, 61, 56, 22, 7, 104, 56, 252, 240, - 60, 117, 162, 15, 137, 169, 178, 79, 84, 220, - 24, 33, 28, 66, 149, 69, 126, 93, 238, 26, - 255, 134, 84, 208, 246, 238, 34, 156, 159, 2, - 38, 218, 104, 200, 83, 207, 49, 210, 57, 43, - 199, 250, 208, 204, 22, 237, 239, 198, 221, 133, - 203, 9, 215, 246, 164, 220, 64, 90, 98, 34, - 114, 113, 56, 246, 64, 155, 57, 107, 85, 69, - 129, 225, 217, 85, 88, 132, 4, 170, 19, 43, - 26, 139, 163, 164, 198, 82, 198, 18, 220, 92, - 52, 158, 52, 146, 25, 94, 78, 227, 105, 127, - 157, 7, 9, 74, 194, 28, 240, 32, 48, 166, - 56, 236, 252, 37, 22, 94, 245, 45, 112, 126, - 31, 33, 82, 91, 56, 216, 187, 69, 231, 41, - 56, 75, 167, 234, 88, 208, 108, 89, 59, 156, - 88, 53, 173, 212, 227, 218, 23, 103, 242, 158, - 195, 251, 196, 221, 166, 224, 217, 143, 92, 77, - 74, 39, 65, 104, 175, 230, 4, 130, 112, 55, - 67, 241, 5, 230, 38, 28, 187, 196, 165, 117, - 197, 42, 30, 217, 209, 193, 180, 49, 223, 143, - 5, 57, 7, 54, 252, 191, 64, 193, 152, 173, - 97, 220, 32, 125, 44, 236, 85, 109, 137, 179, - 146, 8, 134, 71, 240, 109, 59, 23, 226, 100, - 31, 141, 253, 156, 131, 105, 70, 246, 240, 179, - 206, 173, 33, 30, 44, 27, 58, 180, 123, 146, - 156, 209, 217, 135, 45, 22, 198, 210, 175, 211, - 95, 180, 14, 27, 185, 39, 230, 95, 139, 40, - 110, 188, 87, 109, 53, 163, 8, 213, 191, 123, - 203, 56, 219, 133, 43, 132, 195, 35, 202, 160, - 108, 201, 238, 229, 148, 199, 41, 7, 119, 167, - 165, 180, 237, 248, 29, 227, 139, 61, 82, 219, - 177, 15, 168, 179, 79, 204, 139, 214, 140, 54, - 44, 78, 6, 152, 68, 101, 6, 99, 235, 154, - 228, 130, 62, 64, 112, 151, 202, 202, 71, 188, - 12, 150, 167, 167, 141, 167, 149, 144, 235, 73, - 222, 65, 72, 195, 24, 124, 110, 30, 199, 162, - 71, 187, 135, 158, 78, 162, 41, 24, 208, 5, - 43, 180, 126, 100, 159, 131, 190, 43, 146, 23, - 217, 143, 73, 225, 85, 221, 187, 69, 244, 156, - 2, 7, 11, 255, 243, 81, 224, 203, 184, 224, - 176, 166, 81, 74, 111, 122, 7, 33, 97, 11, - 8, 167, 35, 168, 217, 197, 105, 212, 113, 14, - 50, 85, 86, 132, 58, 69, 142, 146, 48, 225, - 189, 57, 54, 177, 167, 234, 131, 197, 193, 194, - 174, 230, 93, 40, 19, 31, 129, 148, 160, 85, - 14, 57, 2, 188, 216, 69, 240, 219, 190, 170, - 84, 100, 15, 206, 38, 40, 171, 233, 1, 135, - 87, 209, 221, 68, 13, 147, 254, 159, 179, 140, - 130, 169, 158, 66, 249, 250, 36, 75, 183, 79, - 105, 198, 144, 7, 190, 13, 172, 222, 203, 49, - 206, 193, 115, 46, 28, 119, 151, 16, 178, 1, - 49, 43, 216, 118, 201, 13, 99, 100, 168, 120, - 133, 226, 58, 80, 92, 20, 51, 0, 252, 59, - 189, 228, 218, 48, 158, 54, 152, 55, 112, 213, - 117, 14, 238, 24, 83, 169, 90, 37, 29, 122, - 200, 162, 103, 18, 44, 73, 147, 10, 164, 244, - 176, 180, 17, 236, 226, 201, 103, 15, 178, 196, - 230, 39, 50, 232, 112, 106, 70, 13, 245, 157, - 226, 155, 233, 200, 37, 166, 242, 248, 118, 29, - 236, 16, 62, 237, 221, 127, 124, 113, 194, 92, - 138, 145, 141, 86, 239, 150, 103, 73, 193, 74, - 49, 135, 234, 208, 149, 100, 218, 145, 59, 78, - 115, 241, 101, 10, 75, 208, 141, 144, 137, 83, - 201, 175, 16, 214, 81, 153, 97, 240, 150, 144, - 92, 173, 56, 25, 145, 129, 247, 168, 78, 5, - 122, 2, 140, 182, 191, 109, 127, 77, 165, 149, - 178, 217, 129, 193, 242, 202, 42, 116, 172, 252, - 72, 157, 83, 138, 55, 138, 148, 210, 252, 126, - 175, 242, 192, 50, 19, 6, 61, 94, 118, 238, - 81, 127, 251, 209, 91, 14, 148, 111, 17, 96, - 104, 40, 9, 216, 185, 155, 91, 62, 61, 121, - 78, 148, 25, 2, 36, 127, 149, 253, 202, 162, - 192, 215, 130, 140, 192, 0, 7, 78, 31, 68, - 35, 153, 251, 218, 255, 127, 24, 169, 6, 125, - 189, 210, 7, 6, 136, 114, 79, 199, 101, 29, - 122, 243, 27, 17, 152, 188, 239, 242, 75, 171, - 96, 42, 72, 240, 63, 182, 192, 199, 194, 199, - 112, 82, 116, 62, 55, 177, 119, 170, 176, 219, - 247, 216, 126, 179, 78, 1, 173, 95, 207, 250, - 125, 77, 97, 172, 207, 76, 227, 204, 233, 79, - 119, 192, 39, 65, 243, 113, 15, 156, 97, 253, - 56, 200, 255, 63, 112, 134, 201, 104, 166, 183, - 140, 153, 89, 203, 93, 15, 245, 21, 28, 107, - 186, 45, 156, 221, 163, 4, 73, 78, 108, 22, - 116, 207, 217, 228, 25, 142, 247, 189, 49, 124, - 248, 20, 45, 15, 51, 47, 203, 10, 114, 238, - 23, 34, 105, 250, 219, 97, 140, 83, 3, 121, - 224, 137, 130, 138, 89, 9, 217, 254, 33, 14, - 38, 77, 116, 189, 205, 118, 199, 132, 200, 118, - 59, 25, 136, 91, 155, 10, 60, 202, 128, 232, - 137, 159, 21, 67, 87, 115, 229, 46, 56, 8, - 125, 200, 116, 31, 113, 75, 242, 107, 89, 105, - 176, 127, 30, 119, 157, 95, 12, 226, 152, 96, - 79, 19, 101, 33, 160, 68, 234, 163, 123, 25, - 183, 105, 77, 108, 10, 163, 23, 200, 52, 31, - 221, 40, 72, 72, 165, 106, 191, 185, 150, 114, - 58, 150, 36, 226, 185, 249, 220, 173, 190, 184, - 159, 116, 205, 129, 214, 154, 79, 246, 156, 160, - 191, 120, 95, 92, 4, 63, 115, 216, 17, 69, - 217, 109, 146, 102, 20, 189, 245, 46, 78, 141, - 118, 143, 104, 96, 22, 154, 113, 216, 133, 13, - 112, 32, 81, 3, 196, 13, 102, 80, 81, 184, - 13, 90, 14, 222, 246, 70, 18, 190, 43, 36, - 77, 116, 66, 62, 11, 119, 88, 156, 105, 165, - 80, 231, 224, 78, 167, 132, 4, 120, 93, 82, - 18, 185, 185, 207, 225, 2, 215, 184, 145, 112, - 171, 95, 41, 194, 237, 150, 96, 146, 32, 147, - 246, 167, 153, 213, 188, 162, 133, 169, 182, 183, - 165, 159, 80, 33, 23, 1, 28, 81, 90, 95, - 120, 230, 133, 5, 20, 77, 243, 69, 167, 191, - 188, 212, 125, 145, 209, 41, 79, 78, 220, 186, - 188, 8, 154, 140, 181, 143, 104, 52, 155, 206, - 52, 44, 127, 114, 74, 57, 93, 112, 249, 35, - 37, 90, 69, 215, 200, 121, 16, 241, 72, 209, - 120, 0, 131, 71, 157, 165, 7, 75, 173, 243, - 172, 58, 68, 209, 100, 170, 84, 177, 47, 233, - 85, 152, 181, 93, 172, 101, 137, 147, 195, 44, - 144, 119, 222, 41, 223, 17, 104, 247, 190, 115, - 110, 231, 233, 123, 244, 234, 0, 143, 242, 132, - 237, 61, 81, 76, 52, 3, 106, 80, 43, 148, - 19, 225, 116, 73, 191, 43, 141, 28, 178, 166, - 210, 78, 8, 45, 222, 54, 175, 126, 160, 189, - 141, 139, 225, 22, 191, 142, 44, 101, 218, 78, - 60, 175, 45, 15, 96, 107, 71, 202, 57, 255, - 189, 117, 3, 183, 164, 25, 149, 104, 107, 107, - 227, 74, 209, 76, 217, 65, 19, 112, 253, 128, - 132, 217, 241, 69, 72, 8, 176, 212, 37, 135, - 167, 180, 102, 100, 126, 20, 49, 109, 214, 184, - 34, 176, 195, 80, 250, 234, 34, 179, 254, 1, - 22, 99, 229, 219, 214, 42, 129, 113, 2, 196, - 93, 30, 95, 114, 188, 57, 108, 126, 215, 58, - 136, 158, 83, 246, 75, 39, 173, 245, 208, 36, - 84, 125, 215, 6, 82, 65, 37, 92, 72, 164, - 117, 206, 26, 55, 161, 197, 147, 170, 187, 140, - 147, 194, 238, 77, 32, 90, 238, 103, 210, 120, - 197, 187, 199, 121, 11, 73, 91, 88, 131, 49, - 77, 36, 44, 41, 214, 182, 169, 165, 67, 76, - 184, 234, 38, 185, 104, 140, 153, 73, 253, 228, - 10, 24, 51, 84, 179, 199, 243, 14, 218, 161, - 155, 72, 43, 255, 255, 13, 223, 205, 215, 67, - 30, 77, 43, 211, 182, 224, 243, 238, 110, 51, - 62, 82, 116, 175, 35, 71, 160, 162, 11, 207, - 247, 83, 44, 175, 64, 55, 40, 130, 55, 72, - 132, 191, 130, 234, 218, 74, 180, 98, 241, 228, - 184, 150, 173, 51, 26, 235, 207, 246, 105, 90, - 60, 253, 44, 221, 104, 168, 83, 232, 187, 237, - 204, 184, 228, 66, 52, 87, 0, 226, 19, 225, - 109, 84, 114, 166, 209, 199, 128, 216, 239, 51, - 25, 137, 226, 62, 113, 230, 78, 34, 84, 253, - 250, 19, 169, 73, 8, 97, 220, 254, 174, 203, - 235, 180, 246, 35, 62, 215, 171, 166, 187, 63, - 40, 65, 141, 179, 67, 242, 197, 203, 50, 154, - 122, 162, 33, 67, 131, 87, 198, 178, 118, 213, - 218, 246, 98, 245, 6, 208, 7, 251, 182, 85, - 196, 73, 115, 96, 159, 2, 54, 249, 15, 181, - 13, 83, 255, 49, 31, 185, 49, 16, 14, 46, - 135, 238, 7, 91, 49, 58, 105, 37, 163, 124, - 169, 141, 210, 52, 22, 9, 87, 150, 2, 219, - 185, 20, 29, 145, 245, 188, 51, 210, 242, 94, - 108, 136, 246, 198, 58, 119, 39, 100, 162, 69, - 202, 254, 249, 60, 175, 65, 82, 140, 254, 173, - 106, 226, 52, 170, 171, 184, 46, 141, 245, 12, - 0, 156, 198, 189, 21, 40, 97, 85, 163, 170, - 4, 191, 239, 13, 249, 16, 139, 4, 189, 213, - 133, 248, 81, 160, 235, 38, 249, 105, 37, 70, - 120, 243, 210, 100, 192, 85, 210, 105, 186, 58, - 145, 203, 14, 217, 122, 65, 33, 140, 60, 61, - 44, 70, 9, 12, 88, 134, 64, 32, 52, 136, - 206, 195, 104, 217, 130, 222, 207, 236, 57, 216, - 241, 165, 104, 88, 114, 224, 197, 195, 91, 36, - 27, 174, 167, 23, 76, 193, 43, 57, 192, 95, - 253, 68, 111, 113, 43, 0, 184, 176, 30, 1, - 23, 246, 213, 109, 28, 230, 46, 3, 55, 224, - 209, 174, 21, 196, 237, 130, 103, 202, 216, 70, - 8, 97, 193, 254, 253, 50, 25, 249, 162, 130, - 248, 213, 127, 149, 100, 188, 212, 99, 219, 83, - 61, 167, 71, 122, 121, 232, 116, 149, 27, 44, - 60, 227, 26, 34, 134, 125, 251, 166, 128, 58, - 184, 133, 254, 85, 120, 244, 118, 14, 89, 23, - 38, 167, 134, 97, 225, 58, 101, 175, 42, 152, - 254, 141, 113, 15, 39, 20, 144, 254, 224, 102, - 205, 22, 76, 60, 47, 245, 101, 112, 170, 190, - 249, 37, 143, 158, 44, 146, 12, 181, 100, 17, - 123, 170, 121, 92, 50, 198, 212, 235, 132, 228, - 44, 80, 0, 57, 32, 22, 248, 206, 250, 132, - 8, 141, 5, 57, 57, 231, 196, 182, 102, 100, - 84, 241, 92, 44, 183, 51, 155, 180, 95, 81, - 220, 116, 132, 212, 54, 138, 13, 180, 52, 53, - 55, 168, 134, 252, 215, 198, 150, 215, 44, 158, - 78, 142, 56, 132, 255, 175, 104, 207, 11, 129, - 34, 108, 173, 109, 236, 9, 108, 132, 15, 198, - 36, 77, 33, 169, 183, 131, 3, 238, 217, 248, - 26, 74, 12, 139, 1, 80, 38, 142, 45, 198, - 137, 175, 7, 111, 157, 162, 1, 145, 85, 207, - 232, 227, 71, 47, 27, 173, 115, 131, 28, 187, - 17, 127, 40, 49, 100, 83, 148, 143, 68, 234, - 7, 159, 214, 15, 20, 45, 164, 141, 52, 92, - 184, 221, 69, 139, 138, 230, 213, 114, 21, 182, - 179, 209, 102, 51, 81, 52, 221, 170, 192, 55, - 190, 126, 104, 64, 181, 133, 113, 145, 109, 165, - 239, 60, 233, 250, 146, 157, 33, 31, 211, 189, - 8, 209, 38, 196, 101, 176, 137, 166, 74, 32, - 202, 142, 167, 24, 146, 222, 110, 104, 67, 1, - 95, 224, 99, 144, 166, 147, 180, 26, 26, 227, - 164, 10, 135, 161, 170, 167, 187, 121, 101, 107, - 237, 249, 66, 240, 174, 114, 146, 51, 84, 242, - 111, 251, 99, 237, 122, 1, 135, 253, 106, 165, - 153, 119, 116, 207, 28, 159, 237, 239, 163, 138, - 252, 230, 252, 196, 13, 202, 207, 66, 138, 54, - 229, 189, 42, 90, 62, 196, 99, 203, 227, 20, - 99, 104, 213, 142, 1, 248, 222, 84, 122, 56, - 134, 90, 133, 141, 91, 65, 255, 254, 48, 245, - 99, 131, 73, 168, 183, 81, 206, 244, 30, 225, - 130, 81, 174, 36, 114, 2, 35, 187, 55, 36, - 6, 209, 118, 224, 91, 199, 36, 225, 30, 246, - 114, 205, 151, 11, 115, 63, 245, 198, 21, 209, - 57, 19, 8, 181, 197, 20, 68, 36, 75, 79, - 16, 25, 206, 222, 2, 94, 116, 105, 88, 14, - 16, 255, 30, 43, 134, 75, 248, 134, 80, 240, - 131, 177, 45, 246, 170, 181, 219, 132, 241, 6, - 77, 204, 206, 254, 247, 123, 253, 28, 246, 49, - 103, 176, 92, 196, 189, 177, 169, 25, 65, 167, - 19, 26, 8, 6, 32, 58, 112, 216, 247, 68, - 89, 87, 30, 195, 54, 55, 238, 57, 126, 121, - 26, 19, 247, 123, 100, 58, 135, 227, 110, 38, - 8, 104, 135, 252, 235, 34, 213, 76, 136, 177, - 157, 86, 239, 228, 191, 226, 90, 88, 181, 134, - 17, 201, 22, 92, 166, 246, 161, 102, 123, 86, - 18, 111, 227, 51, 252, 195, 24, 211, 37, 89, - 90, 233, 95, 250, 190, 94, 196, 91, 15, 150, - 95, 102, 13, 212, 106, 51, 14, 99, 168, 53, - 88, 140, 89, 240, 43, 30, 106, 33, 164, 192, - 221, 170, 141, 91, 136, 150, 175, 197, 178, 165, - 14, 80, 2, 173, 25, 174, 61, 234, 247, 56, - 31, 106, 45, 70, 35, 200, 44, 116, 210, 79, - 132, 87, 58, 142, 130, 53, 106, 109, 147, 37, - 21, 83, 185, 0, 220, 121, 45, 195, 114, 197, - 41, 162, 222, 142, 149, 119, 230, 49, 108, 37, - 103, 53, 74, 22, 38, 79, 228, 255, 182, 78, - 175, 144, 207, 147, 44, 125, 56, 137, 216, 160, - 162, 25, 106, 219, 43, 148, 17, 147, 252, 35, - 24, 229, 10, 158, 225, 124, 136, 39, 84, 192, - 217, 214, 196, 11, 204, 255, 208, 238, 164, 230, - 93, 171, 189, 50, 78, 179, 56, 115, 197, 244, - 58, 75, 232, 144, 120, 16, 26, 147, 224, 192, - 194, 208, 216, 194, 12, 1, 216, 216, 52, 96, - 83, 224, 16, 25, 36, 32, 99, 212, 139, 103, - 166, 85, 102, 172, 131, 246, 140, 26, 75, 231, - 146, 199, 92, 24, 199, 160, 132, 171, 115, 10, - 215, 14, 178, 197, 83, 221, 4, 207, 72, 243, - 9, 17, 28, 4, 144, 102, 211, 98, 204, 119, - 248, 241, 235, 84, 95, 214, 223, 145, 245, 232, - 158, 114, 33, 162, 199, 34, 158, 223, 73, 63, - 135, 98, 220, 207, 112, 57, 115, 90, 15, 133, - 248, 213, 103, 156, 238, 229, 193, 246, 37, 167, - 194, 94, 160, 182, 255, 142, 43, 255, 206, 125, - 206, 197, 70, 100, 176, 254, 196, 214, 28, 154, - 66, 157, 52, 60, 8, 81, 189, 168, 125, 243, - 109, 218, 197, 34, 243, 222, 249, 206, 179, 137, - 166, 115, 220, 194, 53, 29, 22, 104, 78, 193, - 167, 205, 148, 20, 91, 114, 194, 53, 234, 252, - 155, 109, 162, 55, 202, 103, 2, 188, 194, 213, - 160, 222, 231, 77, 79, 86, 135, 22, 172, 164, - 97, 92, 21, 59, 215, 165, 228, 161, 228, 106, - 243, 195, 73, 137, 167, 29, 134, 95, 215, 7, - 57, 130, 117, 145, 230, 147, 34, 125, 1, 27, - 192, 160, 5, 195, 63, 93, 235, 40, 137, 123, - 165, 139, 143, 121, 32, 109, 69, 244, 171, 51, - 184, 117, 106, 214, 66, 232, 110, 45, 2, 124, - 112, 133, 54, 66, 175, 135, 236, 40, 144, 101, - 54, 162, 3, 163, 3, 212, 224, 79, 61, 179, - 239, 254, 182, 22, 150, 156, 178, 83, 192, 43, - 13, 28, 228, 197, 124, 108, 219, 162, 121, 85, - 84, 102, 54, 1, 152, 203, 164, 133, 90, 170, - 189, 6, 3, 214, 104, 23, 40, 107, 16, 33, - 77, 212, 3, 127, 195, 246, 205, 104, 99, 197, - 148, 161, 150, 108, 99, 26, 194, 156, 219, 117, - 254, 211, 167, 36, 17, 230, 101, 185, 162, 9, - 135, 79, 19, 205, 137, 95, 73, 201, 229, 84, - 12, 203, 252, 81, 88, 56, 49, 26, 139, 178, - 226, 30, 217, 177, 130, 253, 221, 254, 145, 180, - 132, 19, 223, 56, 170, 161, 165, 24, 134, 224, - 46, 34, 24, 79, 46, 48, 80, 179, 247, 123, - 57, 77, 15, 33, 30, 75, 136, 2, 98, 89, - 137, 39, 36, 107, 94, 230, 91, 4, 170, 242, - 0, 204, 213, 132, 138, 40, 198, 40, 168, 210, - 36, 149, 138, 77, 124, 124, 207, 81, 22, 87, - 114, 216, 206, 190, 205, 20, 214, 19, 100, 251, - 110, 212, 219, 139, 203, 70, 91, 58, 248, 126, - 202, 223, 114, 132, 245, 147, 84, 91, 170, 14, - 193, 179, 39, 196, 164, 102, 204, 188, 233, 56, - 225, 239, 232, 194, 6, 188, 191, 118, 190, 171, - 36, 170, 107, 244, 19, 82, 69, 32, 25, 238, - 170, 27, 33, 69, 90, 146, 6, 92, 214, 118, - 78, 41, 214, 194, 57, 103, 24, 168, 28, 93, - 116, 63, 167, 82, 154, 107, 135, 7, 102, 200, - 65, 13, 219, 157, 154, 218, 75, 46, 146, 54, - 185, 29, 51, 56, 107, 80, 217, 16, 174, 188, - 35, 236, 74, 109, 51, 252, 247, 54, 197, 250, - 2, 110, 205, 13, 155, 57, 217, 45, 7, 76, - 7, 62, 167, 153, 182, 59, 211, 227, 148, 244, - 222, 154, 223, 140, 184, 181, 204, 69, 177, 16, - 42, 182, 29, 18, 154, 196, 231, 55, 244, 118, - 181, 207, 169, 49, 179, 197, 20, 182, 233, 136, - 234, 161, 109, 95, 200, 165, 124, 176, 193, 78, - 183, 190, 44, 200, 67, 23, 17, 119, 129, 197, - 71, 9, 72, 213, 191, 15, 176, 169, 151, 235, - 130, 38, 3, 33, 87, 168, 186, 249, 136, 243, - 149, 244, 125, 83, 31, 132, 59, 210, 199, 191, - 93, 205, 239, 141, 139, 71, 77, 227, 220, 175, - 214, 27, 61, 183, 178, 90, 101, 72, 133, 102, - 223, 44, 168, 250, 51, 45, 49, 59, 53, 160, - 150, 44, 162, 238, 167, 40, 94, 12, 157, 64, - 200, 50, 196, 241, 115, 142, 254, 20, 110, 101, - 179, 219, 68, 56, 168, 66, 226, 38, 168, 217, - 194, 132, 149, 216, 59, 87, 15, 221, 172, 232, - 41, 28, 69, 164, 113, 249, 161, 149, 243, 129, - 112, 121, 3, 56, 119, 199, 80, 93, 104, 67, - 134, 20, 74, 214, 180, 0, 206, 243, 197, 251, - 154, 118, 70, 207, 248, 4, 15, 96, 171, 57, - 248, 155, 198, 222, 100, 180, 184, 28, 114, 141, - 236, 139, 56, 200, 144, 92, 107, 2, 79, 159, - 215, 53, 31, 208, 92, 243, 30, 68, 60, 165, - 193, 156, 90, 63, 148, 17, 238, 35, 73, 244, - 81, 120, 229, 229, 198, 252, 21, 150, 193, 220, - 242, 112, 84, 186, 57, 43, 186, 210, 82, 209, - 94, 47, 35, 4, 179, 218, 208, 62, 15, 84, - 156, 134, 14, 231, 232, 234, 153, 168, 250, 248, - 52, 234, 106, 249, 23, 166, 243, 210, 195, 91, - 245, 76, 127, 111, 127, 252, 158, 217, 193, 200, - 122, 217, 169, 157, 15, 13, 103, 65, 156, 92, - 255, 147, 220, 252, 60, 47, 8, 131, 114, 188, - 240, 193, 106, 82, 209, 64, 249, 234, 65, 247, - 120, 43, 75, 243, 16, 33, 173, 88, 200, 121, - 97, 104, 92, 238, 80, 12, 247, 159, 132, 190, - 232, 33, 0, 176, 181, 156, 45, 200, 251, 177, - 100, 205, 213, 3, 22, 13, 55, 195, 204, 129, - 241, 135, 83, 122, 53, 194, 51, 67, 169, 85, - 104, 9, 67, 45, 196, 49, 196, 52, 13, 11, - 42, 246, 20, 109, 80, 46, 236, 214, 88, 214, - 129, 192, 176, 157, 20, 205, 112, 134, 69, 6, - 52, 103, 29, 255, 143, 143, 73, 1, 104, 104, - 188, 67, 112, 82, 44, 240, 85, 28, 235, 91, - 179, 160, 40, 10, 59, 151, 173, 93, 76, 118, - 132, 17, 167, 216, 41, 36, 217, 180, 194, 143, - 169, 201, 150, 61, 107, 124, 33, 155, 247, 70, - 73, 127, 199, 56, 219, 181, 148, 129, 189, 252, - 148, 226, 75, 177, 216, 114, 47, 110, 64, 113, - 174, 240, 200, 42, 32, 119, 97, 220, 108, 158, - 255, 89, 70, 30, 106, 237, 149, 15, 245, 118, - 208, 220, 70, 170, 232, 252, 127, 57, 131, 98, - 40, 18, 124, 250, 194, 222, 206, 187, 180, 236, - 51, 185, 19, 38, 112, 205, 224, 254, 132, 164, - 163, 28, 42, 90, 160, 102, 25, 42, 166, 118, - 26, 49, 50, 204, 166, 120, 50, 163, 222, 151, - 177, 206, 75, 142, 214, 112, 229, 145, 238, 55, - 228, 29, 8, 221, 127, 1, 211, 41, 251, 155, - 147, 118, 146, 87, 242, 206, 140, 228, 141, 166, - 234, 17, 54, 167, 195, 64, 122, 216, 87, 201, - 87, 80, 238, 163, 19, 148, 223, 76, 11, 118, - 233, 129, 58, 54, 167, 137, 38, 237, 159, 84, - 126, 26, 181, 9, 91, 38, 197, 228, 82, 41, - 105, 29, 84, 60, 8, 183, 60, 73, 103, 0, - 81, 12, 74, 40, 176, 38, 154, 16, 238, 246, - 119, 161, 44, 47, 180, 1, 18, 94, 68, 226, - 153, 220, 44, 183, 2, 11, 66, 187, 41, 191, - 150, 54, 64, 57, 68, 244, 89, 248, 175, 216, - 75, 30, 60, 26, 81, 245, 189, 252, 16, 144, - 75, 162, 103, 93, 126, 113, 234, 184, 119, 245, - 196, 113, 80, 250, 133, 154, 19, 9, 102, 128, - 120, 32, 234, 203, 191, 98, 68, 66, 115, 187, - 72, 113, 202, 239, 53, 150, 238, 134, 238, 69, - 1, 98, 193, 191, 213, 102, 229, 180, 169, 116, - 225, 168, 120, 53, 130, 190, 222, 11, 16, 255, - 66, 151, 74, 207, 131, 214, 223, 54, 33, 26, - 143, 224, 57, 29, 32, 196, 13, 195, 183, 84, - 198, 241, 203, 247, 129, 173, 155, 234, 46, 64, - 78, 124, 33, 101, 88, 19, 144, 202, 69, 60, - 190, 81, 150, 83, 157, 217, 223, 0, 23, 87, - 238, 46, 250, 225, 142, 237, 40, 78, 56, 231, - 18, 59, 47, 158, 98, 19, 7, 221, 160, 75, - 252, 38, 163, 247, 10, 131, 238, 233, 226, 205, - 235, 51, 59, 115, 223, 208, 205, 135, 243, 196, - 191, 187, 230, 25, 208, 145, 187, 192, 102, 42, - 16, 190, 32, 125, 212, 11, 102, 130, 26, 90, - 104, 83, 148, 161, 126, 224, 139, 147, 209, 195, - 48, 171, 24, 43, 144, 140, 131, 238, 116, 237, - 31, 158, 32, 170, 165, 90, 40, 54, 215, 16, - 196, 215, 26, 240, 185, 129, 22, 131, 24, 27, - 33, 116, 83, 17, 34, 73, 14, 243, 65, 76, - 151, 41, 210, 196, 183, 176, 254, 83, 35, 20, - 211, 224, 23, 233, 225, 230, 167, 221, 217, 55, - 168, 193, 147, 212, 229, 246, 206, 236, 252, 12, - 147, 141, 220, 156, 193, 167, 58, 106, 236, 33, - 106, 196, 249, 27, 171, 10, 5, 25, 208, 218, - 120, 97, 236, 142, 45, 180, 18, 219, 2, 3, - 48, 205, 72, 61, 38, 152, 186, 252, 154, 216, - 35, 246, 83, 112, 91, 93, 197, 69, 113, 237, - 16, 62, 250, 95, 164, 219, 193, 158, 228, 66, - 122, 187, 106, 172, 223, 154, 73, 109, 77, 165, - 179, 212, 252, 133, 33, 106, 136, 199, 2, 164, - 160, 58, 194, 30, 129, 130, 240, 254, 101, 127, - 137, 133, 9, 53, 110, 3, 250, 223, 63, 232, - 187, 22, 250, 70, 66, 157, 43, 93, 232, 83, - 157, 109, 10, 30, 85, 100, 1, 237, 177, 229, - 98, 214, 106, 161, 233, 238, 22, 105, 168, 188, - 237, 210, 232, 238, 175, 70, 92, 125, 164, 86, - 97, 248, 141, 26, 136, 168, 182, 194, 105, 84, - 231, 152, 1, 179, 156, 202, 30, 180, 66, 87, - 101, 208, 4, 240, 83, 231, 116, 245, 198, 165, - 37, 4, 214, 198, 23, 96, 9, 198, 40, 215, - 131, 92, 158, 236, 146, 16, 148, 59, 20, 166, - 218, 8, 17, 67, 236, 222, 71, 74, 164, 19, - 235, 44, 6, 160, 0, 180, 204, 33, 179, 145, - 156, 116, 110, 32, 53, 169, 138, 69, 27, 149, - 196, 42, 66, 51, 11, 213, 10, 62, 134, 219, - 230, 184, 183, 233, 112, 195, 11, 31, 135, 215, - 14, 159, 92, 80, 7, 112, 254, 255, 19, 193, - 127, 226, 82, 44, 116, 254, 18, 254, 6, 111, - 123, 220, 88, 153, 231, 194, 253, 167, 238, 184, - 59, 195, 14, 24, 127, 134, 187, 101, 74, 54, - 154, 139, 12, 210, 250, 28, 160, 96, 252, 216, - 231, 179, 115, 4, 48, 227, 168, 147, 218, 163, - 190, 25, 141, 240, 56, 50, 130, 228, 192, 224, - 35, 109, 246, 239, 233, 214, 144, 0, 19, 12, - 40, 145, 199, 218, 77, 250, 1, 13, 85, 119, - 191, 139, 80, 112, 222, 109, 214, 181, 53, 150, - 252, 239, 0, 107, 8, 95, 158, 62, 186, 46, - 140, 185, 219, 146, 0, 126, 200, 237, 192, 54, - 94, 31, 83, 252, 154, 234, 139, 224, 173, 141, - 182, 204, 174, 130, 223, 216, 171, 172, 124, 91, - 135, 166, 98, 109, 109, 242, 124, 168, 153, 195, - 37, 5, 13, 231, 25, 235, 209, 129, 245, 102, - 110, 33, 213, 223, 63, 152, 215, 199, 213, 105, - 223, 110, 16, 104, 195, 230, 234, 29, 208, 15, - 55, 10, 147, 254, 169, 15, 255, 74, 13, 63, - 150, 232, 85, 139, 206, 17, 235, 221, 201, 115, - 106, 63, 204, 102, 193, 45, 226, 198, 193, 81, - 106, 12, 150, 124, 147, 106, 84, 86, 140, 146, - 31, 54, 76, 173, 223, 25, 95, 241, 222, 38, - 33, 185, 29, 103, 230, 223, 99, 18, 58, 68, - 14, 212, 77, 168, 70, 164, 86, 193, 217, 148, - 11, 230, 255, 155, 214, 204, 159, 11, 159, 171, - 179, 57, 57, 106, 22, 114, 79, 195, 186, 191, - 2, 230, 93, 77, 217, 251, 204, 225, 76, 8, - 178, 38, 19, 230, 62, 37, 103, 239, 18, 238, - 133, 120, 73, 211, 62, 181, 35, 131, 172, 10, - 40, 184, 66, 248, 229, 185, 38, 169, 155, 132, - 7, 65, 226, 178, 29, 87, 93, 108, 252, 91, - 221, 231, 11, 134, 227, 124, 73, 183, 215, 111, - 74, 201, 132, 64, 52, 229, 156, 98, 121, 65, - 121, 90, 28, 218, 81, 56, 196, 56, 86, 86, - 235, 208, 112, 189, 191, 23, 94, 121, 13, 100, - 100, 16, 167, 233, 77, 158, 169, 68, 5, 32, - 57, 125, 147, 2, 16, 200, 50, 198, 243, 232, - 228, 162, 154, 164, 155, 31, 165, 35, 60, 191, - 155, 147, 44, 128, 187, 84, 11, 204, 109, 115, - 34, 4, 127, 222, 91, 247, 56, 246, 4, 160, - 181, 251, 179, 211, 26, 232, 73, 86, 85, 137, - 20, 248, 40, 166, 236, 204, 149, 216, 166, 170, - 130, 106, 115, 175, 97, 58, 213, 69, 145, 237, - 111, 56, 57, 48, 197, 218, 39, 215, 209, 145, - 0, 77, 217, 217, 94, 222, 47, 31, 68, 113, - 218, 51, 98, 47, 237, 129, 43, 186, 76, 15, - 189, 201, 113, 210, 237, 220, 10, 193, 214, 229, - 166, 156, 1, 86, 243, 125, 221, 44, 173, 137, - 166, 243, 218, 113, 33, 165, 24, 238, 117, 180, - 23, 6, 184, 237, 255, 115, 126, 76, 129, 221, - 25, 136, 243, 118, 129, 189, 122, 56, 17, 255, - 231, 51, 83, 59, 158, 223, 129, 209, 254, 72, - 85, 139, 207, 186, 51, 87, 236, 112, 145, 217, - 110, 2, 43, 118, 92, 49, 245, 30, 163, 12, - 165, 115, 117, 88, 152, 193, 114, 234, 91, 39, - 237, 172, 145, 142, 138, 129, 30, 141, 107, 225, - 197, 1, 33, 247, 66, 218, 88, 69, 225, 197, - 130, 251, 106, 55, 33, 130, 125, 214, 57, 171, - 106, 180, 53, 142, 137, 49, 118, 130, 60, 192, - 166, 235, 228, 13, 226, 7, 165, 36, 211, 33, - 219, 255, 29, 155, 240, 66, 181, 217, 122, 0, - 146, 247, 148, 227, 157, 208, 194, 243, 97, 76, - 202, 38, 48, 214, 6, 45, 53, 208, 96, 165, - 202, 96, 221, 45, 53, 28, 191, 104, 93, 81, - 126, 130, 34, 159, 252, 181, 141, 239, 41, 161, - 140, 68, 101, 33, 5, 113, 141, 244, 144, 125, - 47, 70, 181, 202, 195, 80, 202, 88, 48, 58, - 212, 99, 251, 147, 59, 50, 137, 233, 194, 231, - 208, 239, 150, 210, 101, 17, 155, 101, 206, 213, - 145, 141, 126, 120, 31, 18, 175, 37, 22, 180, - 199, 1, 49, 227, 34, 201, 110, 114, 251, 175, - 221, 184, 115, 148, 142, 247, 97, 182, 20, 145, - 195, 140, 200, 118, 43, 249, 192, 205, 71, 66, - 57, 77, 147, 156, 158, 122, 17, 20, 101, 250, - 90, 173, 39, 203, 233, 160, 84, 197, 64, 143, - 90, 143, 229, 153, 17, 239, 53, 7, 179, 170, - 191, 232, 206, 28, 22, 97, 30, 123, 160, 69, - 250, 117, 201, 105, 68, 42, 111, 84, 237, 70, - 234, 94, 72, 1, 198, 117, 6, 197, 225, 72, - 4, 91, 175, 198, 61, 70, 67, 153, 222, 114, - 9, 168, 117, 67, 122, 52, 176, 115, 65, 162, - 40, 54, 97, 6, 93, 11, 77, 173, 209, 218, - 243, 57, 126, 117, 0, 75, 179, 67, 31, 123, - 197, 144, 93, 116, 119, 46, 29, 111, 194, 30, - 224, 252, 133, 13, 47, 9, 118, 146, 156, 205, - 62, 209, 67, 204, 164, 237, 46, 171, 117, 86, - 91, 120, 86, 13, 19, 19, 156, 200, 210, 104, - 235, 114, 58, 152, 76, 53, 43, 214, 92, 181, - 254, 225, 45, 168, 17, 148, 254, 22, 119, 87, - 120, 85, 159, 240, 143, 128, 175, 243, 8, 253, - 120, 158, 122, 71, 251, 13, 128, 103, 34, 100, - 201, 151, 31, 160, 144, 49, 86, 161, 165, 168, - 214, 246, 86, 163, 159, 22, 98, 105, 51, 55, - 245, 97, 255, 146, 4, 121, 147, 68, 78, 159, - 27, 177, 113, 247, 188, 38, 78, 94, 12, 66, - 242, 230, 9, 65, 241, 114, 112, 22, 86, 3, - 1, 22, 76, 107, 200, 96, 174, 148, 208, 51, - 171, 222, 225, 148, 108, 80, 33, 154, 54, 246, - 246, 131, 48, 35, 201, 239, 68, 214, 55, 233, - 177, 162, 40, 242, 180, 176, 67, 155, 2, 21, - 27, 130, 94, 131, 198, 193, 226, 161, 139, 199, - 252, 203, 152, 112, 55, 63, 139, 60, 110, 12, - 101, 1, 108, 167, 44, 59, 91, 60, 48, 248, - 85, 33, 1, 111, 142, 155, 38, 195, 170, 115, - 199, 165, 174, 196, 49, 27, 75, 54, 69, 2, - 34, 97, 101, 121, 217, 12, 103, 135, 182, 146, - 228, 107, 151, 195, 80, 232, 184, 211, 204, 13, - 202, 146, 253, 180, 67, 168, 238, 172, 31, 66, - 139, 44, 80, 93, 62, 219, 18, 87, 251, 14, - 211, 76, 201, 85, 179, 209, 237, 48, 218, 111, - 75, 253, 146, 12, 185, 211, 0, 97, 233, 14, - 87, 21, 28, 217, 104, 155, 27, 27, 107, 213, - 120, 156, 68, 224, 213, 179, 165, 155, 59, 65, - 183, 91, 90, 163, 37, 5, 60, 255, 143, 93, - 91, 14, 42, 221, 210, 50, 105, 104, 153, 106, - 32, 68, 213, 46, 100, 139, 168, 111, 132, 41, - 95, 25, 79, 253, 7, 14, 166, 195, 148, 23, - 24, 70, 158, 2, 131, 241, 132, 97, 155, 53, - 20, 99, 251, 50, 157, 179, 111, 249, 242, 14, - 153, 239, 139, 112, 185, 62, 16, 236, 118, 203, - 103, 40, 160, 97, 67, 194, 184, 141, 218, 207, - 26, 246, 200, 216, 144, 133, 43, 144, 101, 28, - 2, 191, 36, 4, 39, 166, 247, 144, 192, 164, - 164, 174, 168, 176, 79, 51, 255, 236, 174, 150, - 94, 67, 12, 184, 35, 103, 1, 17, 171, 208, - 62, 46, 139, 28, 101, 211, 98, 173, 3, 196, - 34, 211, 72, 2, 36, 230, 35, 48, 189, 4, - 66, 207, 20, 47, 69, 122, 98, 251, 63, 137, - 22, 147, 129, 24, 70, 158, 193, 31, 120, 160, - 111, 59, 193, 201, 111, 213, 225, 146, 121, 56, - 78, 194, 6, 133, 117, 180, 116, 144, 51, 252, - 85, 30, 88, 134, 152, 44, 186, 57, 199, 91, - 250, 93, 15, 142, 227, 96, 248, 252, 104, 11, - 218, 190, 10, 80, 119, 144, 66, 228, 125, 92, - 191, 9, 69, 15, 28, 244, 222, 0, 136, 238, - 151, 250, 136, 238, 220, 112, 240, 234, 147, 76, - 66, 18, 2, 17, 17, 51, 27, 59, 100, 94, - 72, 174, 40, 202, 44, 94, 219, 118, 84, 62, - 43, 223, 233, 252, 133, 203, 233, 108, 143, 174, - 245, 70, 100, 33, 3, 66, 246, 108, 173, 149, - 225, 52, 8, 235, 172, 224, 64, 222, 76, 194, - 24, 78, 123, 14, 64, 102, 211, 234, 122, 140, - 148, 167, 13, 23, 206, 34, 255, 254, 62, 135, - 55, 59, 14, 146, 195, 191, 95, 126, 19, 44, - 153, 44, 80, 255, 68, 140, 3, 145, 249, 2, - 193, 0, 131, 72, 145, 105, 186, 68, 248, 92, - 183, 163, 171, 221, 133, 45, 66, 7, 23, 115, - 187, 212, 151, 180, 139, 17, 95, 64, 123, 236, - 26, 12, 67, 154, 6, 27, 51, 232, 227, 150, - 249, 72, 204, 115, 84, 203, 62, 121, 171, 89, - 94, 233, 196, 51, 101, 55, 48, 189, 243, 146, - 168, 17, 120, 189, 56, 19, 115, 108, 114, 82, - 65, 190, 47, 53, 101, 134, 77, 201, 178, 212, - 38, 5, 182, 52, 146, 203, 196, 161, 92, 155, - 129, 234, 45, 225, 139, 212, 31, 58, 102, 190, - 129, 243, 133, 53, 228, 53, 208, 165, 232, 220, - 249, 234, 76, 87, 203, 172, 77, 102, 166, 31, - 71, 210, 156, 75, 150, 12, 48, 205, 169, 163, - 192, 43, 91, 10, 38, 199, 92, 190, 41, 75, - 212, 89, 72, 219, 103, 89, 130, 210, 49, 193, - 212, 173, 171, 41, 107, 178, 190, 87, 24, 29, - 8, 202, 166, 243, 46, 176, 42, 10, 146, 87, - 155, 9, 53, 23, 138, 170, 128, 201, 189, 94, - 63, 201, 45, 100, 196, 101, 113, 207, 202, 103, - 232, 118, 247, 99, 81, 174, 126, 59, 150, 53, - 162, 99, 162, 6, 206, 167, 119, 56, 232, 246, - 156, 18, 132, 95, 173, 23, 42, 114, 2, 230, - 93, 140, 240, 222, 171, 102, 46, 110, 192, 187, - 39, 118, 104, 43, 144, 96, 90, 95, 203, 201, - 29, 123, 203, 221, 136, 15, 204, 9, 90, 137, - 0, 70, 145, 186, 108, 37, 110, 138, 151, 82, - 96, 71, 94, 48, 236, 62, 10, 167, 43, 4, - 52, 213, 122, 31, 135, 181, 111, 151, 180, 200, - 61, 251, 211, 197, 134, 133, 125, 163, 238, 121, - 29, 255, 88, 222, 114, 5, 194, 148, 24, 226, - 81, 112, 126, 99, 60, 203, 173, 152, 101, 192, - 22, 186, 53, 51, 227, 125, 84, 165, 128, 27, - 165, 114, 13, 38, 57, 98, 208, 110, 184, 157, - 218, 253, 171, 220, 184, 196, 149, 81, 51, 81, - 145, 187, 99, 251, 52, 41, 210, 108, 26, 151, - 13, 22, 119, 60, 251, 24, 181, 214, 131, 190, - 209, 101, 250, 232, 122, 240, 42, 144, 253, 89, - 34, 241, 107, 223, 24, 228, 190, 242, 108, 220, - 101, 254, 90, 25, 50, 218, 147, 25, 61, 184, - 160, 118, 161, 250, 84, 117, 124, 113, 159, 36, - 117, 235, 13, 242, 135, 26, 212, 6, 171, 145, - 22, 126, 155, 89, 125, 81, 57, 190, 225, 98, - 197, 141, 209, 125, 5, 160, 149, 186, 230, 63, - 238, 155, 116, 145, 6, 41, 93, 137, 64, 199, - 250, 225, 210, 89, 216, 8, 202, 14, 212, 40, - 58, 61, 116, 145, 99, 92, 100, 144, 50, 114, - 104, 48, 72, 136, 252, 66, 225, 243, 197, 139, - 64, 112, 190, 80, 246, 60, 72, 72, 172, 86, - 227, 150, 23, 94, 182, 179, 29, 169, 46, 125, - 139, 70, 160, 41, 136, 114, 154, 148, 235, 241, - 112, 104, 46, 4, 220, 161, 234, 165, 76, 60, - 160, 205, 66, 178, 159, 110, 166, 170, 234, 227, - 254, 146, 221, 87, 132, 143, 15, 166, 23, 234, - 53, 29, 103, 19, 33, 104, 81, 220, 20, 46, - 234, 41, 78, 24, 9, 42, 213, 136, 35, 66, - 226, 252, 86, 76, 75, 46, 94, 33, 112, 180, - 199, 12, 133, 142, 224, 234, 239, 175, 123, 111, - 113, 65, 136, 238, 243, 51, 61, 238, 178, 236, - 124, 198, 136, 179, 89, 97, 166, 177, 48, 112, - 106, 0, 73, 35, 111, 236, 206, 116, 60, 24, - 173, 147, 29, 252, 201, 117, 200, 10, 61, 188, - 45, 131, 177, 234, 201, 239, 230, 170, 172, 104, - 19, 173, 154, 176, 126, 155, 251, 58, 147, 49, - 37, 137, 80, 201, 74, 115, 231, 147, 60, 0, - 91, 130, 178, 50, 103, 25, 183, 101, 211, 2, - 208, 47, 212, 22, 83, 11, 36, 23, 159, 8, - 72, 46, 253, 192, 122, 4, 9, 171, 75, 135, - 234, 236, 79, 100, 11, 68, 109, 107, 120, 33, - 144, 99, 3, 177, 237, 222, 40, 150, 45, 104, - 6, 190, 154, 184, 227, 76, 114, 73, 87, 143, - 231, 32, 210, 240, 86, 21, 191, 16, 180, 242, - 252, 1, 48, 110, 54, 222, 230, 13, 139, 105, - 204, 100, 225, 155, 80, 30, 178, 245, 133, 113, - 136, 236, 43, 221, 113, 200, 89, 224, 77, 100, - 200, 21, 102, 239, 247, 176, 212, 108, 111, 150, - 147, 231, 105, 49, 81, 135, 172, 64, 77, 172, - 77, 81, 31, 200, 186, 86, 116, 106, 57, 203, - 12, 239, 203, 101, 187, 126, 170, 187, 155, 242, - 183, 75, 204, 151, 131, 81, 142, 92, 163, 110, - 40, 184, 201, 132, 109, 89, 227, 206, 194, 121, - 159, 240, 36, 26, 167, 224, 115, 161, 26, 49, - 57, 109, 215, 115, 133, 148, 11, 109, 242, 46, - 178, 186, 109, 211, 111, 116, 239, 74, 128, 168, - 200, 210, 26, 64, 242, 12, 130, 204, 239, 154, - 134, 172, 52, 33, 92, 68, 69, 108, 112, 17, - 157, 100, 251, 99, 222, 4, 79, 196, 91, 86, - 113, 111, 186, 59, 93, 230, 35, 253, 37, 181, - 176, 139, 19, 81, 158, 233, 237, 158, 32, 26, - 110, 79, 160, 176, 55, 108, 16, 62, 139, 125, - 29, 244, 123, 70, 153, 124, 204, 23, 164, 54, - 185, 25, 99, 95, 0, 101, 138, 203, 54, 160, - 14, 92, 188, 5, 207, 38, 60, 35, 198, 125, - 181, 113, 238, 7, 167, 126, 209, 135, 8, 57, - 194, 90, 185, 159, 46, 198, 127, 253, 205, 189, - 90, 234, 247, 141, 175, 8, 147, 77, 119, 255, - 118, 80, 128, 196, 195, 229, 177, 65, 7, 145, - 253, 89, 54, 104, 226, 156, 219, 105, 110, 99, - 112, 5, 70, 250, 138, 96, 13, 132, 150, 122, - 215, 85, 68, 135, 227, 79, 167, 90, 209, 202, - 19, 5, 116, 52, 213, 14, 177, 181, 148, 161, - 5, 222, 158, 214, 58, 227, 146, 194, 4, 5, - 95, 184, 18, 82, 241, 82, 201, 0, 17, 124, - 29, 137, 77, 120, 200, 36, 97, 223, 164, 111, - 49, 220, 180, 132, 34, 144, 72, 165, 189, 113, - 230, 191, 134, 208, 13, 123, 103, 105, 62, 182, - 80, 168, 107, 167, 79, 30, 205, 15, 27, 54, - 27, 21, 31, 28, 189, 80, 171, 224, 133, 72, - 37, 40, 124, 182, 86, 64, 231, 69, 87, 171, - 192, 3, 161, 161, 67, 58, 11, 88, 158, 232, - 241, 84, 115, 109, 189, 155, 251, 159, 164, 255, - 6, 35, 181, 154, 34, 155, 18, 177, 23, 27, - 76, 112, 219, 62, 200, 40, 192, 77, 20, 3, - 1, 134, 213, 172, 159, 177, 239, 243, 44, 210, - 76, 216, 98, 194, 241, 40, 137, 30, 235, 35, - 83, 0, 227, 111, 43, 182, 105, 211, 167, 71, - 53, 63, 226, 237, 64, 160, 233, 22, 193, 213, - 253, 141, 209, 58, 51, 35, 253, 117, 212, 190, - 92, 76, 176, 45, 171, 228, 206, 127, 173, 73, - 17, 4, 163, 1, 180, 192, 51, 82, 34, 153, - 230, 31, 174, 150, 57, 182, 50, 7, 152, 21, - 5, 153, 136, 184, 170, 109, 209, 165, 88, 79, - 0, 148, 197, 184, 54, 223, 25, 220, 74, 35, - 21, 222, 127, 95, 142, 157, 117, 152, 136, 239, - 60, 250, 107, 252, 113, 80, 81, 235, 202, 104, - 254, 223, 119, 231, 105, 95, 165, 18, 20, 235, - 100, 62, 220, 100, 188, 212, 42, 65, 242, 203, - 140, 192, 103, 52, 38, 193, 50, 254, 45, 106, - 203, 226, 209, 158, 233, 43, 188, 165, 88, 41, - 223, 54, 135, 232, 33, 49, 224, 22, 101, 152, - 207, 203, 83, 181, 43, 241, 9, 76, 82, 30, - 53, 56, 11, 64, 217, 88, 199, 228, 227, 85, - 6, 173, 247, 124, 100, 148, 66, 224, 181, 190, - 142, 116, 52, 200, 156, 217, 121, 170, 201, 69, - 214, 248, 10, 110, 174, 168, 199, 148, 170, 8, - 171, 132, 58, 101, 230, 144, 94, 132, 155, 144, - 249, 128, 171, 50, 35, 243, 112, 141, 5, 227, - 135, 204, 81, 31, 191, 99, 175, 55, 72, 161, - 234, 95, 91, 128, 231, 217, 11, 20, 218, 102, - 182, 88, 73, 236, 158, 189, 67, 231, 91, 181, - 197, 43, 188, 189, 72, 187, 140, 10, 72, 222, - 179, 119, 6, 71, 61, 255, 110, 31, 177, 240, - 233, 126, 63, 177, 64, 86, 38, 12, 84, 102, - 120, 170, 80, 66, 174, 71, 64, 135, 197, 69, - 129, 67, 183, 193, 197, 190, 238, 189, 104, 200, - 104, 214, 94, 224, 104, 95, 4, 3, 58, 166, - 184, 99, 238, 43, 110, 13, 219, 22, 247, 123, - 239, 128, 56, 92, 149, 235, 194, 9, 185, 140, - 15, 236, 119, 103, 217, 120, 207, 24, 41, 68, - 69, 177, 250, 94, 56, 202, 113, 125, 0, 101, - 218, 201, 174, 229, 98, 151, 55, 224, 227, 51, - 199, 207, 117, 191, 92, 128, 200, 61, 152, 84, - 81, 222, 121, 39, 165, 161, 164, 115, 131, 72, - 122, 198, 106, 213, 6, 136, 100, 206, 177, 200, - 183, 67, 85, 245, 99, 64, 239, 102, 136, 218, - 32, 253, 161, 141, 220, 73, 43, 141, 176, 79, - 151, 5, 28, 59, 114, 73, 5, 144, 4, 19, - 29, 226, 204, 180, 94, 147, 209, 205, 132, 227, - 37, 175, 167, 195, 4, 212, 73, 145, 192, 194, - 68, 80, 147, 175, 25, 38, 160, 175, 182, 241, - 159, 143, 208, 114, 244, 180, 173, 47, 145, 99, - 59, 228, 156, 134, 159, 235, 130, 136, 140, 39, - 118, 109, 75, 223, 22, 40, 80, 43, 216, 53, - 146, 141, 254, 85, 184, 186, 176, 11, 68, 254, - 26, 179, 199, 95, 40, 99, 92, 76, 74, 29, - 197, 245, 166, 124, 83, 225, 245, 149, 11, 132, - 100, 173, 20, 28, 130, 140, 120, 191, 46, 156, - 245, 76, 33, 197, 47, 235, 99, 228, 65, 116, - 201, 240, 239, 124, 39, 138, 182, 56, 33, 29, - 231, 242, 116, 192, 60, 219, 13, 242, 20, 52, - 73, 215, 212, 41, 228, 108, 70, 249, 214, 20, - 183, 102, 45, 158, 204, 129, 71, 248, 49, 8, - 57, 127, 47, 28, 146, 131, 6, 224, 26, 0, - 160, 126, 239, 38, 58, 33, 41, 121, 79, 213, - 22, 60, 98, 108, 133, 128, 41, 101, 174, 0, - 168, 154, 16, 244, 183, 17, 221, 115, 112, 151, - 59, 120, 226, 215, 64, 165, 127, 212, 184, 148, - 220, 171, 50, 97, 61, 92, 163, 230, 50, 13, - 97, 246, 203, 113, 168, 170, 188, 255, 14, 231, - 208, 20, 42, 234, 248, 1, 220, 226, 114, 111, - 167, 213, 242, 161, 213, 58, 56, 3, 197, 213, - 255, 23, 129, 178, 163, 208, 18, 122, 183, 86, - 248, 231, 57, 218, 34, 193, 64, 101, 162, 98, - 124, 50, 4, 23, 178, 46, 156, 15, 219, 143, - 37, 254, 91, 0, 239, 215, 251, 200, 60, 249, - 223, 238, 145, 214, 125, 130, 125, 179, 128, 247, - 246, 248, 224, 158, 139, 114, 245, 148, 42, 252, - 29, 53, 230, 7, 61, 26, 11, 96, 134, 183, - 66, 196, 223, 246, 232, 239, 77, 44, 42, 58, - 177, 218, 184, 4, 248, 185, 128, 107, 130, 92, - 239, 215, 3, 112, 181, 222, 108, 86, 99, 108, - 174, 171, 234, 71, 137, 132, 161, 244, 89, 119, - 255, 30, 103, 115, 50, 254, 142, 170, 227, 82, - 199, 166, 21, 90, 30, 45, 108, 143, 138, 16, - 53, 30, 7, 127, 244, 160, 236, 14, 176, 148, - 131, 34, 17, 184, 98, 213, 51, 131, 118, 98, - 89, 214, 27, 152, 121, 242, 191, 237, 95, 19, - 36, 233, 89, 74, 179, 50, 255, 18, 115, 138, - 28, 252, 25, 126, 211, 166, 58, 158, 141, 103, - 194, 231, 137, 52, 120, 135, 131, 116, 11, 161, - 75, 9, 174, 5, 101, 181, 37, 221, 221, 4, - 41, 122, 85, 255, 155, 190, 190, 1, 76, 122, - 153, 20, 11, 97, 84, 151, 55, 241, 73, 116, - 123, 36, 126, 250, 4, 148, 0, 116, 116, 19, - 214, 238, 72, 175, 80, 85, 77, 254, 239, 149, - 72, 77, 205, 175, 5, 110, 177, 226, 171, 154, - 47, 144, 159, 195, 240, 210, 116, 141, 32, 150, - 235, 225, 192, 170, 175, 227, 27, 154, 197, 34, - 22, 51, 221, 72, 226, 74, 163, 235, 187, 108, - 150, 49, 182, 186, 109, 228, 99, 104, 75, 56, - 108, 250, 14, 107, 184, 229, 104, 177, 207, 196, - 237, 234, 10, 12, 146, 180, 169, 32, 67, 63, - 78, 83, 104, 114, 100, 18, 216, 0, 81, 184, - 200, 175, 180, 184, 36, 51, 189, 66, 39, 61, - 121, 141, 67, 84, 224, 204, 24, 243, 134, 159, - 244, 254, 112, 154, 22, 99, 222, 166, 242, 225, - 201, 172, 76, 30, 20, 127, 254, 113, 229, 98, - 18, 123, 61, 106, 49, 77, 211, 21, 224, 230, - 81, 129, 45, 179, 87, 57, 98, 110, 47, 54, - 172, 8, 142, 200, 112, 125, 70, 193, 111, 21, - 56, 88, 236, 130, 122, 182, 12, 53, 167, 243, - 172, 103, 154, 64, 176, 200, 231, 125, 200, 133, - 162, 87, 248, 4, 94, 138, 71, 139, 37, 194, - 198, 30, 249, 87, 66, 33, 16, 156, 255, 252, - 149, 52, 52, 85, 95, 130, 87, 148, 191, 169, - 63, 34, 150, 52, 77, 218, 9, 210, 56, 211, - 233, 14, 149, 39, 151, 143, 110, 188, 118, 161, - 190, 113, 214, 105, 126, 188, 94, 220, 112, 232, - 69, 26, 186, 223, 121, 64, 164, 21, 23, 125, - 214, 235, 230, 129, 132, 26, 182, 222, 75, 115, - 123, 7, 56, 229, 152, 91, 188, 51, 39, 230, - 157, 100, 64, 196, 16, 191, 242, 41, 79, 204, - 78, 105, 51, 202, 73, 170, 22, 224, 241, 154, - 172, 180, 227, 240, 89, 114, 41, 241, 114, 138, - 103, 171, 184, 176, 116, 88, 247, 182, 240, 153, - 208, 63, 204, 161, 158, 214, 125, 247, 226, 73, - 85, 121, 4, 102, 65, 140, 134, 129, 99, 67, - 19, 99, 30, 219, 16, 240, 137, 176, 31, 160, - 90, 77, 245, 251, 147, 63, 203, 253, 1, 68, - 179, 190, 62, 13, 207, 74, 57, 232, 22, 197, - 238, 53, 185, 217, 196, 156, 195, 217, 180, 22, - 248, 172, 221, 47, 234, 163, 138, 49, 190, 251, - 158, 252, 223, 161, 211, 78, 65, 207, 146, 161, - 249, 41, 85, 55, 160, 251, 213, 224, 163, 236, - 221, 119, 7, 144, 95, 152, 91, 80, 228, 164, - 115, 106, 134, 128, 27, 146, 159, 167, 225, 37, - 94, 195, 231, 169, 196, 221, 93, 19, 82, 85, - 131, 95, 51, 123, 188, 213, 137, 14, 3, 104, - 120, 204, 189, 233, 206, 30, 148, 171, 23, 180, - 253, 208, 72, 42, 124, 212, 137, 104, 27, 57, - 81, 40, 42, 23, 188, 68, 24, 60, 54, 162, - 174, 207, 30, 78, 64, 64, 124, 9, 83, 245, - 162, 168, 72, 202, 109, 119, 237, 191, 84, 1, - 129, 139, 33, 223, 178, 141, 213, 212, 250, 191, - 106, 48, 23, 77, 38, 126, 194, 205, 140, 187, - 96, 198, 60, 142, 64, 165, 248, 79, 222, 58, - 211, 217, 183, 40, 21, 73, 227, 21, 223, 192, - 69, 96, 104, 156, 183, 72, 55, 2, 179, 238, - 71, 131, 186, 178, 3, 33, 213, 137, 88, 229, - 222, 72, 100, 162, 194, 216, 74, 193, 65, 21, - 24, 100, 234, 54, 32, 40, 59, 186, 100, 14, - 168, 207, 199, 22, 226, 40, 214, 139, 128, 248, - 188, 154, 224, 164, 229, 103, 23, 47, 220, 124, - 240, 207, 70, 53, 101, 133, 165, 205, 18, 97, - 135, 249, 233, 72, 22, 144, 248, 3, 44, 212, - 150, 146, 226, 131, 213, 131, 156, 131, 41, 30, - 168, 159, 56, 141, 199, 39, 184, 24, 119, 184, - 55, 93, 20, 131, 23, 226, 131, 144, 6, 52, - 8, 224, 219, 67, 165, 34, 201, 104, 252, 0, - 123, 67, 176, 209, 252, 205, 125, 147, 17, 27, - 213, 231, 214, 36, 65, 170, 204, 250, 147, 192, - 214, 9, 138, 155, 34, 188, 81, 128, 251, 13, - 95, 78, 46, 209, 216, 6, 222, 53, 140, 7, - 240, 75, 124, 171, 64, 234, 215, 210, 224, 67, - 27, 206, 226, 151, 85, 230, 188, 54, 183, 216, - 139, 90, 160, 118, 148, 113, 150, 184, 198, 98, - 71, 199, 106, 213, 140, 219, 69, 122, 230, 153, - 82, 131, 58, 246, 37, 119, 14, 220, 129, 55, - 113, 72, 104, 112, 218, 251, 20, 232, 22, 59, - 198, 135, 178, 239, 44, 135, 4, 109, 228, 201, - 76, 57, 234, 174, 77, 20, 139, 225, 171, 243, - 99, 62, 200, 220, 16, 214, 222, 229, 60, 1, - 121, 184, 145, 217, 66, 234, 143, 234, 131, 254, - 241, 5, 233, 69, 15, 247, 32, 161, 88, 247, - 77, 60, 163, 109, 21, 172, 19, 47, 30, 120, - 2, 178, 103, 191, 126, 20, 104, 65, 92, 174, - 131, 191, 105, 242, 170, 219, 202, 89, 248, 106, - 130, 215, 120, 84, 109, 92, 102, 135, 205, 0, - 50, 66, 31, 106, 90, 205, 18, 117, 91, 244, - 34, 220, 244, 244, 220, 192, 138, 245, 130, 154, - 215, 223, 212, 9, 94, 240, 116, 19, 14, 163, - 79, 40, 195, 222, 148, 11, 100, 152, 78, 74, - 151, 3, 175, 222, 124, 174, 208, 171, 56, 13, - 217, 143, 98, 207, 72, 38, 3, 99, 175, 242, - 138, 159, 162, 143, 102, 171, 227, 122, 142, 164, - 224, 169, 159, 70, 236, 150, 114, 176, 40, 202, - 254, 82, 28, 186, 18, 43, 226, 215, 204, 39, - 244, 229, 101, 234, 35, 24, 85, 65, 151, 91, - 15, 57, 100, 16, 63, 42, 154, 66, 42, 61, - 98, 9, 8, 243, 161, 71, 101, 173, 35, 212, - 17, 191, 242, 108, 210, 212, 222, 92, 107, 211, - 84, 216, 18, 132, 10, 15, 194, 112, 159, 29, - 133, 174, 226, 183, 76, 174, 34, 199, 232, 145, - 223, 224, 75, 7, 13, 177, 193, 200, 159, 61, - 7, 245, 106, 26, 235, 126, 70, 108, 240, 82, - 146, 108, 123, 246, 171, 229, 210, 225, 182, 69, - 43, 213, 202, 27, 144, 97, 99, 168, 119, 16, - 54, 40, 120, 206, 201, 25, 233, 223, 89, 187, - 165, 194, 225, 180, 136, 154, 250, 78, 137, 89, - 178, 86, 77, 117, 187, 119, 94, 14, 177, 77, - 137, 114, 160, 125, 221, 68, 4, 193, 48, 14, - 172, 48, 136, 100, 166, 138, 133, 188, 32, 34, - 84, 184, 223, 155, 75, 142, 9, 36, 50, 161, - 213, 140, 182, 134, 75, 202, 221, 24, 241, 141, - 220, 114, 238, 208, 149, 62, 64, 93, 254, 201, - 96, 158, 55, 0, 56, 31, 177, 185, 221, 251, - 94, 42, 181, 60, 248, 97, 129, 2, 101, 158, - 103, 72, 191, 144, 153, 1, 193, 15, 199, 60, - 154, 177, 28, 33, 39, 244, 144, 27, 88, 143, - 36, 87, 107, 159, 213, 46, 86, 52, 246, 75, - 243, 170, 178, 3, 195, 222, 29, 197, 39, 254, - 106, 170, 25, 198, 63, 166, 189, 248, 30, 189, - 73, 178, 134, 163, 137, 212, 31, 223, 32, 185, - 58, 35, 230, 155, 226, 32, 124, 215, 85, 43, - 253, 184, 223, 248, 11, 94, 163, 213, 41, 141, - 165, 231, 43, 31, 80, 125, 127, 113, 232, 230, - 58, 148, 118, 248, 81, 145, 142, 65, 170, 48, - 42, 142, 171, 50, 158, 76, 182, 3, 20, 16, - 46, 37, 21, 65, 130, 168, 96, 91, 42, 210, - 204, 87, 204, 209, 189, 152, 10, 227, 33, 195, - 224, 167, 166, 137, 185, 219, 245, 200, 117, 168, - 48, 61, 89, 62, 20, 218, 144, 138, 129, 126, - 25, 215, 26, 217, 104, 137, 46, 41, 107, 26, - 141, 27, 106, 63, 126, 14, 205, 221, 119, 98, - 30, 248, 213, 111, 100, 224, 87, 141, 215, 252, - 60, 16, 38, 128, 1, 180, 145, 107, 128, 70, - 235, 227, 148, 154, 171, 248, 49, 152, 181, 152, - 161, 42, 193, 9, 7, 5, 110, 25, 171, 75, - 22, 230, 0, 152, 36, 121, 117, 158, 96, 152, - 82, 14, 31, 210, 57, 125, 2, 120, 107, 64, - 235, 30, 110, 235, 41, 163, 77, 209, 107, 112, - 151, 179, 77, 197, 89, 67, 252, 43, 190, 33, - 192, 240, 188, 254, 58, 153, 229, 206, 225, 86, - 140, 165, 176, 12, 193, 4, 91, 140, 75, 190, - 65, 179, 84, 122, 233, 238, 94, 65, 9, 112, - 175, 211, 36, 125, 169, 98, 210, 242, 74, 238, - 158, 250, 245, 227, 141, 188, 143, 84, 168, 149, - 72, 1, 173, 217, 42, 117, 103, 86, 152, 248, - 54, 59, 210, 134, 2, 117, 96, 173, 253, 115, - 233, 233, 41, 185, 8, 127, 207, 146, 100, 153, - 52, 211, 201, 41, 167, 239, 35, 129, 7, 155, - 42, 38, 103, 164, 42, 173, 63, 3, 246, 61, - 253, 227, 200, 18, 138, 236, 6, 164, 197, 142, - 120, 85, 136, 26, 34, 63, 100, 184, 205, 78, - 87, 47, 95, 131, 46, 120, 127, 140, 127, 33, - 116, 171, 213, 215, 193, 65, 6, 253, 249, 2, - 173, 244, 6, 111, 160, 106, 101, 154, 116, 53, - 86, 236, 169, 47, 91, 87, 140, 194, 96, 157, - 249, 166, 10, 27, 213, 226, 125, 0, 228, 95, - 169, 221, 252, 167, 63, 150, 181, 187, 185, 117, - 50, 179, 153, 116, 21, 253, 18, 22, 242, 69, - 123, 254, 95, 20, 228, 107, 186, 199, 78, 69, - 178, 135, 40, 115, 99, 214, 162, 122, 47, 92, - 95, 26, 100, 184, 73, 89, 169, 193, 83, 160, - 10, 16, 153, 91, 184, 50, 48, 193, 141, 80, - 239, 236, 195, 188, 227, 213, 159, 173, 119, 176, - 5, 215, 50, 254, 13, 225, 159, 93, 104, 115, - 199, 245, 185, 180, 161, 74, 208, 198, 107, 15, - 159, 242, 243, 228, 4, 12, 100, 217, 79, 10, - 174, 196, 148, 144, 78, 137, 161, 57, 108, 116, - 250, 186, 251, 127, 89, 59, 239, 127, 228, 92, - 62, 185, 212, 217, 104, 62, 5, 163, 198, 13, - 150, 14, 114, 198, 146, 102, 77, 233, 149, 60, - 247, 34, 100, 246, 107, 26, 19, 241, 222, 158, - 221, 214, 207, 113, 196, 253, 153, 129, 35, 236, - 105, 187, 251, 167, 253, 116, 167, 10, 121, 106, - 56, 93, 49, 18, 187, 244, 40, 189, 197, 29, - 116, 198, 167, 83, 70, 27, 18, 235, 30, 187, - 158, 28, 244, 242, 189, 114, 5, 46, 14, 180, - 42, 42, 234, 196, 55, 38, 196, 7, 4, 125, - 133, 93, 204, 194, 101, 192, 184, 90, 159, 24, - 243, 187, 44, 182, 9, 57, 238, 82, 121, 117, - 180, 228, 116, 77, 179, 121, 232, 163, 87, 159, - 164, 127, 210, 134, 39, 120, 38, 82, 61, 13, - 139, 236, 193, 87, 48, 244, 148, 32, 23, 201, - 2, 245, 17, 15, 80, 10, 62, 74, 113, 163, - 165, 113, 144, 194, 205, 178, 18, 41, 40, 2, - 117, 244, 163, 202, 38, 161, 236, 53, 39, 179, - 103, 177, 19, 26, 217, 83, 3, 29, 56, 96, - 194, 244, 112, 97, 15, 25, 245, 201, 184, 125, - 118, 242, 53, 246, 137, 48, 170, 71, 62, 120, - 12, 202, 109, 32, 233, 221, 108, 9, 22, 149, - 70, 56, 1, 170, 236, 13, 199, 122, 232, 89, - 174, 51, 70, 220, 33, 96, 62, 83, 174, 50, - 213, 180, 216, 16, 247, 31, 217, 187, 160, 21, - 51, 50, 103, 156, 171, 11, 108, 200, 209, 184, - 203, 114, 96, 158, 132, 160, 172, 57, 103, 28, - 12, 227, 79, 23, 153, 191, 72, 138, 128, 248, - 181, 120, 166, 133, 227, 239, 129, 146, 100, 126, - 137, 31, 191, 138, 124, 243, 34, 33, 195, 100, - 16, 153, 53, 28, 86, 244, 50, 125, 15, 12, - 17, 218, 113, 27, 158, 5, 16, 214, 126, 130, - 237, 5, 214, 29, 88, 6, 242, 10, 148, 189, - 132, 190, 97, 106, 159, 208, 48, 160, 99, 66, - 225, 250, 102, 175, 26, 101, 224, 35, 41, 199, - 122, 65, 85, 49, 204, 170, 68, 52, 200, 49, - 177, 17, 147, 108, 21, 211, 39, 160, 13, 225, - 149, 84, 184, 5, 19, 71, 180, 52, 26, 238, - 105, 128, 244, 146, 97, 107, 244, 26, 49, 142, - 135, 22, 75, 112, 243, 178, 153, 13, 14, 50, - 238, 88, 32, 178, 133, 212, 232, 245, 123, 93, - 3, 221, 104, 101, 124, 47, 127, 157, 24, 19, - 38, 246, 140, 22, 120, 244, 54, 9, 94, 226, - 184, 173, 28, 255, 169, 34, 58, 241, 161, 239, - 160, 238, 133, 213, 217, 181, 71, 31, 227, 166, - 227, 164, 183, 165, 57, 53, 15, 187, 208, 122, - 87, 150, 222, 1, 186, 238, 150, 203, 48, 131, - 192, 159, 186, 134, 189, 254, 235, 66, 52, 168, - 192, 114, 38, 159, 127, 167, 202, 159, 232, 14, - 208, 87, 193, 74, 72, 86, 217, 113, 93, 83, - 21, 19, 92, 168, 202, 4, 71, 239, 120, 162, - 94, 179, 89, 250, 217, 11, 136, 116, 27, 185, - 221, 152, 100, 39, 27, 79, 93, 222, 67, 162, - 99, 41, 36, 169, 231, 124, 102, 182, 203, 126, - 47, 251, 136, 70, 2, 95, 230, 144, 152, 35, - 189, 12, 89, 107, 73, 246, 22, 96, 3, 178, - 70, 37, 67, 132, 149, 20, 203, 170, 176, 158, - 229, 74, 193, 58, 19, 130, 32, 67, 196, 249, - 195, 70, 240, 71, 161, 199, 63, 197, 16, 218, - 8, 208, 24, 39, 154, 152, 4, 8, 145, 253, - 93, 237, 179, 238, 44, 81, 76, 161, 144, 191, - 11, 65, 179, 240, 223, 207, 138, 255, 3, 0, - 170, 4, 57, 4, 247, 14, 44, 141, 205, 124, - 193, 133, 69, 51, 129, 111, 119, 136, 42, 47, - 214, 61, 240, 4, 234, 62, 26, 134, 180, 230, - 78, 41, 79, 244, 165, 97, 2, 99, 148, 228, - 66, 78, 218, 58, 14, 0, 184, 249, 74, 101, - 170, 249, 85, 122, 53, 33, 219, 18, 252, 54, - 9, 204, 77, 119, 182, 97, 135, 77, 154, 146, - 226, 135, 167, 223, 244, 71, 23, 91, 3, 96, - 116, 126, 175, 92, 13, 113, 191, 154, 176, 140, - 125, 203, 57, 162, 57, 16, 167, 175, 217, 61, - 87, 202, 148, 227, 215, 30, 42, 69, 39, 233, - 162, 210, 230, 20, 228, 184, 128, 115, 70, 169, - 208, 130, 228, 83, 254, 111, 19, 140, 64, 18, - 125, 0, 126, 87, 12, 247, 212, 55, 78, 133, - 59, 27, 126, 125, 75, 191, 90, 22, 4, 153, - 209, 254, 204, 146, 64, 246, 213, 76, 134, 25, - 83, 90, 230, 169, 61, 62, 23, 192, 167, 41, - 84, 218, 186, 249, 144, 226, 124, 52, 147, 102, - 49, 58, 87, 34, 88, 80, 219, 98, 86, 241, - 92, 137, 99, 153, 33, 169, 108, 40, 191, 225, - 178, 183, 230, 244, 77, 0, 247, 96, 227, 151, - 229, 200, 121, 178, 238, 107, 73, 61, 154, 136, - 8, 255, 7, 113, 175, 176, 148, 52, 164, 252, - 251, 226, 202, 122, 242, 114, 43, 243, 216, 238, - 245, 49, 5, 58, 134, 195, 215, 134, 70, 224, - 131, 101, 156, 189, 155, 154, 95, 80, 166, 75, - 29, 217, 87, 150, 140, 36, 213, 109, 195, 93, - 217, 20, 147, 146, 236, 145, 63, 40, 81, 241, - 211, 38, 35, 224, 210, 46, 104, 113, 53, 218, - 50, 251, 204, 213, 155, 120, 135, 67, 205, 227, - 108, 211, 137, 76, 166, 183, 118, 248, 155, 133, - 176, 195, 42, 43, 133, 198, 72, 73, 243, 86, - 179, 134, 147, 98, 147, 201, 23, 100, 69, 192, - 52, 129, 253, 189, 114, 222, 26, 165, 102, 120, - 116, 46, 4, 43, 27, 135, 165, 51, 27, 101, - 229, 220, 195, 86, 109, 62, 90, 77, 100, 133, - 164, 23, 182, 139, 43, 192, 159, 234, 4, 248, - 164, 165, 29, 7, 242, 40, 117, 204, 168, 249, - 215, 132, 7, 105, 230, 211, 69, 108, 235, 58, - 113, 86, 48, 226, 177, 15, 232, 149, 81, 95, - 155, 71, 179, 244, 212, 225, 211, 59, 123, 13, - 206, 75, 135, 218, 234, 113, 9, 229, 182, 224, - 146, 215, 182, 137, 158, 152, 194, 232, 69, 58, - 107, 109, 41, 218, 179, 65, 26, 112, 93, 10, - 65, 124, 0, 57, 114, 24, 154, 92, 52, 17, - 90, 221, 241, 126, 137, 56, 59, 146, 130, 250, - 176, 49, 213, 16, 31, 110, 200, 199, 136, 93, - 119, 32, 181, 81, 29, 22, 56, 220, 26, 121, - 82, 200, 41, 193, 179, 49, 187, 42, 236, 56, - 22, 204, 229, 191, 167, 5, 208, 44, 141, 117, - 145, 121, 211, 190, 137, 192, 110, 8, 110, 39, - 236, 137, 34, 67, 187, 116, 75, 143, 36, 117, - 98, 46, 18, 163, 165, 27, 97, 98, 204, 245, - 126, 96, 179, 168, 25, 122, 24, 235, 112, 30, - 56, 61, 16, 93, 156, 239, 110, 69, 208, 17, - 87, 80, 226, 89, 100, 139, 247, 38, 67, 219, - 146, 133, 3, 37, 38, 239, 214, 83, 158, 174, - 224, 163, 124, 73, 38, 5, 88, 37, 77, 15, - 139, 48, 50, 156, 9, 176, 234, 201, 190, 214, - 159, 101, 123, 235, 16, 114, 16, 1, 220, 162, - 244, 15, 163, 169, 34, 232, 205, 252, 131, 199, - 89, 92, 242, 150, 119, 252, 189, 53, 63, 204, - 48, 101, 1, 23, 252, 222, 213, 170, 117, 213, - 57, 13, 151, 235, 248, 8, 54, 9, 175, 105, - 48, 110, 122, 34, 203, 75, 107, 74, 71, 196, - 236, 218, 100, 218, 34, 80, 115, 60, 78, 54, - 65, 240, 153, 208, 198, 92, 93, 242, 116, 97, - 226, 171, 160, 9, 225, 186, 44, 1, 248, 231, - 101, 24, 174, 217, 222, 71, 123, 104, 43, 177, - 30, 177, 214, 120, 106, 113, 203, 207, 35, 32, - 195, 167, 67, 185, 64, 144, 201, 42, 219, 8, - 241, 38, 240, 224, 239, 189, 133, 137, 1, 222, - 243, 97, 30, 244, 68, 250, 221, 27, 41, 102, - 117, 8, 97, 9, 32, 149, 148, 249, 178, 51, - 109, 111, 201, 73, 14, 149, 39, 164, 143, 171, - 6, 89, 129, 175, 85, 223, 51, 135, 151, 205, - 100, 211, 222, 66, 196, 204, 113, 142, 241, 205, - 199, 71, 144, 230, 247, 158, 128, 28, 70, 209, - 113, 213, 80, 45, 222, 214, 204, 85, 225, 161, - 43, 44, 13, 95, 81, 211, 32, 240, 95, 79, - 19, 110, 197, 121, 225, 146, 63, 144, 66, 186, - 57, 65, 116, 81, 47, 239, 45, 154, 30, 227, - 1, 242, 189, 242, 106, 141, 124, 102, 14, 147, - 94, 77, 122, 152, 230, 115, 48, 90, 73, 103, - 227, 128, 8, 128, 72, 85, 223, 36, 178, 46, - 230, 34, 227, 40, 8, 107, 26, 245, 35, 139, - 127, 8, 236, 190, 97, 47, 8, 109, 249, 238, - 28, 7, 191, 228, 255, 109, 118, 111, 110, 100, - 78, 71, 3, 154, 43, 110, 67, 221, 137, 14, - 157, 175, 73, 249, 64, 20, 43, 229, 249, 213, - 46, 224, 2, 80, 45, 165, 197, 84, 209, 224, - 113, 207, 238, 99, 191, 156, 222, 11, 216, 254, - 159, 217, 173, 201, 153, 183, 79, 30, 34, 114, - 206, 233, 150, 240, 204, 146, 188, 178, 97, 90, - 134, 86, 27, 25, 95, 13, 92, 12, 242, 215, - 155, 11, 81, 198, 176, 254, 10, 41, 206, 206, - 105, 127, 3, 201, 112, 250, 193, 253, 121, 70, - 249, 78, 45, 31, 33, 212, 195, 172, 239, 21, - 6, 190, 118, 75, 116, 156, 80, 204, 227, 107, - 181, 157, 41, 16, 38, 41, 113, 178, 204, 158, - 6, 231, 121, 218, 42, 19, 6, 126, 192, 95, - 206, 155, 241, 245, 43, 59, 248, 93, 102, 138, - 80, 56, 33, 123, 157, 60, 4, 44, 216, 50, - 41, 21, 64, 245, 44, 100, 202, 225, 220, 189, - 232, 234, 111, 67, 47, 82, 208, 56, 154, 61, - 210, 27, 97, 110, 178, 149, 126, 65, 111, 245, - 172, 227, 31, 9, 96, 166, 71, 108, 176, 196, - 126, 43, 7, 34, 158, 146, 191, 19, 149, 59, - 69, 212, 123, 53, 17, 20, 51, 115, 220, 195, - 111, 194, 125, 7, 223, 113, 109, 249, 126, 156, - 34, 247, 124, 92, 90, 188, 108, 124, 73, 127, - 246, 243, 52, 235, 172, 140, 76, 218, 50, 244, - 98, 43, 20, 206, 30, 84, 95, 7, 79, 40, - 171, 143, 223, 103, 83, 238, 248, 135, 58, 227, - 146, 182, 253, 52, 92, 131, 70, 100, 248, 158, - 86, 118, 87, 212, 215, 182, 137, 252, 43, 74, - 212, 168, 22, 121, 143, 121, 168, 39, 37, 168, - 86, 110, 144, 203, 74, 20, 131, 124, 60, 140, - 125, 177, 242, 220, 40, 97, 30, 217, 176, 102, - 249, 176, 30, 112, 44, 129, 39, 224, 206, 21, - 211, 214, 167, 210, 126, 56, 141, 113, 240, 129, - 26, 141, 53, 169, 91, 136, 130, 38, 186, 127, - 224, 60, 243, 93, 35, 190, 176, 215, 61, 82, - 227, 224, 173, 58, 91, 71, 135, 244, 53, 178, - 94, 159, 0, 58, 91, 144, 97, 191, 120, 254, - 15, 196, 135, 192, 60, 209, 191, 55, 186, 140, - 211, 208, 238, 223, 170, 180, 74, 213, 165, 90, - 166, 167, 48, 224, 59, 178, 177, 66, 29, 194, - 21, 247, 109, 221, 235, 162, 71, 22, 104, 48, - 95, 35, 187, 147, 58, 156, 169, 248, 225, 148, - 32, 156, 61, 184, 102, 177, 250, 217, 47, 82, - 121, 135, 22, 43, 99, 159, 39, 126, 111, 164, - 241, 75, 225, 165, 27, 54, 186, 91, 65, 253, - 3, 209, 45, 242, 186, 9, 158, 44, 109, 249, - 214, 175, 90, 230, 167, 146, 115, 159, 226, 19, - 124, 190, 193, 56, 30, 182, 42, 92, 173, 245, - 199, 130, 7, 67, 250, 27, 218, 195, 134, 106, - 142, 13, 78, 20, 75, 148, 61, 22, 1, 247, - 42, 73, 99, 67, 167, 66, 8, 229, 234, 22, - 3, 76, 233, 249, 35, 251, 239, 205, 33, 36, - 111, 15, 173, 160, 190, 145, 222, 78, 25, 117, - 5, 227, 9, 11, 140, 102, 205, 234, 73, 226, - 80, 197, 228, 44, 243, 18, 45, 247, 5, 251, - 208, 190, 16, 171, 147, 196, 90, 127, 66, 29, - 65, 91, 19, 102, 26, 233, 191, 26, 115, 189, - 65, 251, 14, 120, 61, 211, 115, 201, 49, 152, - 176, 183, 74, 65, 191, 77, 103, 81, 69, 174, - 253, 38, 235, 158, 87, 199, 195, 129, 218, 13, - 81, 238, 169, 246, 175, 147, 79, 162, 244, 117, - 119, 228, 133, 16, 208, 104, 115, 38, 207, 151, - 210, 90, 190, 37, 120, 241, 122, 122, 199, 96, - 70, 125, 131, 95, 38, 115, 100, 60, 149, 70, - 81, 133, 214, 0, 172, 202, 10, 153, 183, 6, - 7, 164, 188, 222, 78, 191, 60, 238, 62, 67, - 67, 62, 224, 155, 194, 82, 5, 216, 157, 104, - 246, 212, 69, 171, 193, 107, 43, 242, 41, 69, - 204, 91, 127, 121, 191, 64, 58, 227, 120, 47, - 83, 78, 233, 95, 38, 198, 12, 65, 111, 250, - 15, 188, 126, 170, 189, 208, 208, 74, 187, 64, - 70, 42, 212, 229, 11, 113, 127, 105, 7, 192, - 168, 64, 134, 8, 26, 17, 155, 39, 48, 102, - 19, 64, 248, 252, 212, 79, 20, 69, 18, 131, - 247, 181, 85, 94, 222, 43, 185, 139, 44, 53, - 92, 237, 53, 4, 37, 238, 134, 184, 162, 149, - 9, 251, 53, 201, 193, 159, 179, 190, 194, 217, - 17, 253, 123, 182, 151, 233, 41, 0, 46, 81, - 139, 204, 250, 122, 94, 155, 123, 249, 60, 13, - 200, 42, 218, 92, 173, 86, 149, 106, 132, 231, - 8, 43, 122, 112, 157, 236, 255, 166, 148, 46, - 164, 171, 54, 90, 229, 204, 213, 161, 216, 203, - 226, 32, 145, 62, 1, 161, 201, 180, 103, 85, - 179, 25, 238, 83, 230, 32, 60, 128, 26, 234, - 1, 130, 113, 251, 254, 201, 3, 67, 138, 138, - 63, 125, 47, 4, 197, 69, 0, 24, 175, 226, - 20, 1, 93, 47, 18, 102, 152, 254, 89, 43, - 157, 95, 148, 55, 191, 179, 4, 27, 11, 6, - 38, 188, 93, 237, 101, 45, 135, 23, 77, 251, - 213, 89, 166, 43, 226, 93, 117, 186, 33, 20, - 89, 227, 55, 6, 39, 47, 111, 95, 150, 62, - 233, 222, 194, 28, 37, 104, 115, 185, 50, 19, - 52, 168, 112, 164, 188, 14, 51, 194, 177, 246, - 7, 67, 9, 207, 210, 159, 32, 228, 68, 187, - 168, 148, 89, 249, 102, 157, 180, 52, 149, 15, - 154, 15, 131, 242, 44, 12, 27, 62, 140, 135, - 23, 198, 76, 216, 21, 233, 236, 95, 186, 9, - 146, 26, 4, 26, 152, 52, 137, 22, 169, 251, - 94, 58, 59, 17, 107, 225, 24, 65, 227, 131, - 61, 220, 49, 81, 173, 31, 63, 23, 214, 110, - 156, 224, 34, 250, 229, 219, 235, 102, 120, 16, - 159, 23, 206, 40, 149, 121, 61, 247, 113, 29, - 37, 220, 21, 181, 84, 160, 74, 50, 164, 144, - 191, 73, 132, 238, 52, 127, 23, 234, 213, 104, - 143, 88, 135, 58, 117, 193, 212, 226, 140, 90, - 119, 81, 121, 237, 98, 87, 251, 10, 106, 223, - 116, 67, 252, 33, 92, 77, 209, 183, 17, 96, - 113, 115, 66, 174, 252, 88, 219, 170, 32, 63, - 146, 177, 235, 78, 178, 189, 164, 72, 117, 76, - 13, 76, 86, 123, 254, 62, 122, 91, 94, 249, - 96, 1, 125, 106, 192, 47, 193, 36, 248, 200, - 163, 88, 37, 67, 59, 204, 191, 128, 171, 230, - 162, 254, 50, 6, 255, 195, 141, 93, 143, 25, - 102, 73, 27, 137, 174, 165, 205, 170, 135, 37, - 147, 62, 28, 1, 225, 179, 132, 27, 13, 2, - 231, 178, 65, 81, 193, 211, 45, 118, 229, 185, - 195, 168, 168, 217, 238, 67, 226, 31, 205, 203, - 209, 254, 97, 229, 26, 234, 38, 18, 128, 47, - 51, 216, 223, 107, 111, 64, 100, 113, 109, 150, - 217, 165, 230, 28, 80, 85, 206, 12, 164, 70, - 175, 9, 34, 120, 225, 125, 7, 217, 25, 76, - 81, 19, 205, 166, 223, 176, 157, 153, 34, 223, - 53, 153, 124, 0, 125, 161, 236, 154, 85, 254, - 55, 139, 210, 182, 92, 218, 4, 42, 114, 178, - 34, 6, 73, 184, 182, 187, 71, 125, 2, 150, - 248, 9, 230, 115, 120, 27, 59, 175, 60, 24, - 231, 183, 241, 175, 47, 169, 50, 118, 248, 49, - 216, 222, 26, 169, 42, 92, 225, 230, 2, 38, - 89, 207, 162, 97, 200, 236, 97, 85, 29, 61, - 40, 11, 159, 102, 131, 92, 67, 112, 222, 73, - 216, 97, 234, 128, 87, 133, 80, 159, 51, 211, - 42, 160, 71, 84, 129, 31, 205, 212, 197, 39, - 48, 139, 101, 102, 185, 10, 172, 144, 225, 20, - 57, 147, 127, 15, 17, 241, 114, 115, 153, 113, - 59, 113, 50, 73, 15, 193, 100, 23, 144, 219, - 198, 114, 201, 41, 31, 193, 44, 55, 101, 199, - 249, 246, 22, 171, 22, 59, 10, 222, 70, 122, - 26, 200, 91, 199, 133, 93, 213, 5, 10, 146, - 239, 41, 239, 226, 93, 52, 2, 128, 223, 2, - 23, 239, 198, 79, 90, 72, 54, 188, 12, 249, - 21, 243, 108, 24, 99, 88, 85, 68, 249, 130, - 50, 232, 158, 253, 205, 173, 0, 92, 121, 35, - 6, 200, 2, 254, 202, 53, 113, 60, 125, 57, - 24, 1, 69, 85, 175, 118, 249, 146, 98, 189, - 70, 122, 204, 113, 180, 35, 241, 77, 221, 135, - 127, 123, 125, 159, 71, 138, 22, 151, 23, 78, - 110, 125, 245, 194, 99, 168, 67, 134, 159, 219, - 227, 51, 133, 61, 124, 145, 158, 9, 158, 14, - 78, 178, 87, 59, 123, 225, 161, 192, 41, 124, - 196, 14, 189, 125, 74, 219, 207, 144, 139, 248, - 170, 205, 154, 60, 246, 218, 77, 204, 37, 236, - 103, 14, 138, 10, 33, 235, 228, 192, 22, 200, - 179, 102, 231, 45, 168, 39, 6, 108, 105, 114, - 60, 189, 39, 37, 219, 159, 39, 213, 106, 177, - 39, 244, 48, 150, 188, 186, 251, 196, 184, 180, - 35, 44, 60, 69, 119, 86, 165, 192, 216, 235, - 204, 244, 102, 100, 118, 28, 120, 192, 215, 207, - 154, 75, 208, 115, 161, 225, 177, 204, 120, 255, - 165, 95, 96, 44, 232, 123, 98, 85, 10, 247, - 30, 198, 120, 144, 16, 111, 8, 125, 96, 176, - 24, 56, 165, 40, 51, 72, 6, 246, 88, 219, - 129, 228, 217, 35, 166, 9, 167, 249, 251, 14, - 242, 87, 152, 157, 72, 169, 100, 181, 193, 233, - 129, 244, 161, 88, 114, 5, 197, 104, 189, 38, - 245, 91, 203, 164, 135, 138, 130, 120, 185, 113, - 248, 86, 202, 228, 138, 163, 195, 56, 217, 237, - 22, 206, 53, 222, 64, 39, 100, 101, 179, 181, - 61, 215, 62, 144, 207, 170, 222, 41, 152, 29, - 234, 105, 246, 60, 75, 137, 1, 241, 195, 94, - 14, 36, 99, 107, 33, 192, 49, 164, 121, 159, - 201, 142, 126, 171, 70, 192, 63, 238, 12, 200, - 37, 21, 168, 132, 163, 61, 250, 140, 48, 61, - 29, 38, 121, 175, 85, 229, 230, 196, 244, 236, - 28, 109, 30, 65, 180, 97, 47, 129, 19, 219, - 153, 8, 223, 211, 148, 127, 38, 92, 16, 245, - 0, 81, 149, 68, 34, 89, 76, 41, 102, 56, - 58, 36, 217, 21, 62, 194, 62, 108, 251, 118, - 206, 119, 204, 60, 87, 7, 189, 123, 134, 147, - 17, 127, 138, 51, 53, 3, 165, 215, 106, 115, - 58, 95, 64, 27, 153, 101, 43, 111, 26, 98, - 72, 22, 96, 98, 22, 86, 98, 95, 37, 25, - 177, 96, 135, 94, 243, 198, 141, 162, 85, 69, - 196, 67, 215, 231, 58, 44, 139, 31, 129, 32, - 9, 224, 152, 25, 70, 226, 148, 55, 195, 1, - 240, 30, 191, 221, 17, 80, 194, 143, 59, 128, - 134, 255, 143, 87, 32, 134, 109, 176, 24, 66, - 85, 170, 32, 50, 218, 47, 41, 33, 57, 175, - 120, 96, 238, 248, 25, 62, 124, 26, 53, 223, - 223, 92, 137, 216, 14, 111, 69, 221, 64, 139, - 190, 29, 204, 170, 209, 103, 234, 228, 209, 32, - 142, 25, 108, 67, 99, 9, 193, 134, 65, 201, - 108, 121, 73, 219, 58, 43, 37, 62, 166, 125, - 253, 32, 127, 71, 228, 251, 240, 159, 180, 164, - 19, 115, 186, 4, 184, 36, 168, 49, 128, 155, - 193, 204, 118, 216, 67, 154, 94, 166, 110, 208, - 93, 246, 147, 187, 4, 33, 203, 88, 126, 32, - 94, 210, 100, 92, 66, 14, 93, 156, 170, 125, - 142, 27, 126, 98, 216, 99, 65, 217, 158, 202, - 40, 243, 181, 192, 78, 38, 107, 58, 6, 42, - 117, 141, 125, 68, 210, 59, 43, 79, 153, 38, - 212, 68, 231, 140, 73, 20, 29, 228, 56, 0, - 95, 165, 28, 190, 77, 40, 252, 59, 205, 177, - 75, 253, 153, 213, 99, 248, 32, 177, 84, 153, - 7, 149, 11, 26, 176, 254, 137, 84, 241, 242, - 252, 37, 70, 155, 14, 170, 77, 164, 123, 66, - 136, 53, 75, 93, 161, 169, 45, 68, 220, 203, - 194, 45, 9, 90, 152, 242, 116, 24, 109, 197, - 55, 188, 180, 109, 249, 181, 31, 89, 150, 138, - 129, 184, 25, 190, 185, 8, 72, 172, 45, 81, - 118, 163, 119, 179, 9, 114, 33, 105, 147, 130, - 225, 54, 168, 50, 169, 181, 240, 202, 41, 117, - 196, 124, 58, 122, 57, 124, 97, 154, 119, 197, - 88, 1, 112, 98, 60, 2, 37, 34, 53, 35, - 144, 85, 204, 223, 47, 104, 102, 66, 239, 68, - 169, 97, 162, 254, 92, 125, 5, 240, 61, 183, - 144, 53, 180, 185, 72, 174, 17, 101, 149, 132, - 203, 68, 79, 237, 129, 183, 163, 112, 214, 70, - 201, 43, 80, 69, 192, 42, 12, 215, 144, 70, - 42, 207, 119, 233, 247, 228, 119, 47, 105, 117, - 56, 216, 174, 38, 56, 34, 127, 107, 30, 0, - 150, 132, 192, 157, 11, 107, 82, 30, 123, 137, - 126, 234, 18, 71, 71, 243, 194, 199, 179, 106, - 25, 35, 12, 2, 136, 255, 6, 31, 113, 36, - 80, 200, 191, 23, 138, 62, 9, 198, 158, 30, - 8, 155, 148, 251, 237, 204, 45, 234, 114, 109, - 17, 4, 72, 236, 153, 196, 210, 230, 86, 102, - 212, 64, 206, 38, 224, 133, 29, 63, 226, 55, - 201, 163, 241, 56, 84, 214, 153, 94, 248, 19, - 225, 26, 228, 173, 112, 21, 185, 66, 143, 154, - 116, 116, 21, 65, 103, 0, 4, 118, 92, 172, - 205, 102, 148, 97, 21, 85, 132, 121, 80, 12, - 246, 212, 213, 75, 250, 91, 215, 166, 165, 1, - 57, 158, 171, 1, 122, 190, 242, 132, 217, 117, - 98, 53, 249, 14, 51, 164, 175, 149, 5, 138, - 31, 248, 29, 143, 249, 80, 14, 160, 153, 48, - 121, 203, 130, 33, 64, 191, 146, 143, 87, 132, - 147, 255, 184, 24, 244, 210, 99, 17, 161, 119, - 23, 95, 74, 214, 5, 191, 225, 26, 254, 204, - 144, 107, 151, 208, 227, 251, 35, 107, 198, 220, - 170, 4, 23, 215, 14, 50, 248, 253, 93, 70, - 71, 9, 239, 55, 10, 203, 231, 114, 161, 44, - 143, 78, 53, 64, 231, 102, 138, 122, 185, 198, - 206, 204, 173, 161, 28, 176, 158, 180, 82, 206, - 220, 161, 34, 52, 23, 104, 21, 97, 194, 158, - 245, 163, 4, 72, 123, 179, 146, 24, 252, 221, - 49, 179, 92, 254, 105, 171, 12, 28, 66, 148, - 109, 82, 204, 60, 41, 100, 130, 125, 74, 33, - 179, 142, 237, 16, 38, 49, 7, 159, 147, 237, - 199, 161, 73, 233, 255, 89, 197, 72, 229, 33, - 210, 186, 231, 72, 199, 7, 108, 126, 31, 109, - 153, 134, 4, 12, 204, 48, 107, 206, 0, 123, - 255, 149, 13, 182, 242, 176, 162, 16, 3, 121, - 118, 15, 170, 46, 89, 21, 248, 183, 130, 48, - 149, 4, 37, 221, 202, 125, 164, 100, 112, 194, - 167, 226, 49, 171, 192, 92, 105, 206, 87, 177, - 61, 91, 135, 1, 69, 186, 230, 241, 123, 149, - 178, 99, 106, 187, 97, 65, 63, 38, 115, 195, - 108, 245, 176, 29, 13, 99, 28, 147, 218, 82, - 67, 228, 153, 68, 62, 180, 134, 126, 177, 137, - 251, 135, 82, 19, 13, 151, 60, 130, 219, 195, - 49, 19, 145, 35, 148, 115, 5, 163, 146, 74, - 228, 217, 99, 84, 251, 4, 92, 76, 82, 229, - 157, 239, 10, 153, 247, 110, 225, 85, 29, 142, - 150, 48, 220, 147, 15, 68, 97, 23, 214, 67, - 220, 139, 7, 18, 229, 100, 246, 166, 214, 111, - 10, 185, 232, 180, 144, 28, 67, 219, 157, 148, - 100, 121, 252, 159, 20, 52, 95, 26, 99, 112, - 1, 93, 9, 188, 117, 6, 252, 4, 84, 100, - 191, 194, 138, 76, 178, 254, 95, 130, 81, 165, - 67, 152, 151, 127, 167, 198, 171, 47, 41, 3, - 168, 12, 131, 235, 50, 227, 21, 193, 217, 56, - 206, 122, 103, 30, 140, 134, 225, 155, 117, 62, - 188, 135, 59, 59, 213, 234, 152, 96, 135, 63, - 187, 163, 245, 4, 102, 109, 117, 172, 146, 124, - 30, 56, 250, 255, 44, 105, 75, 60, 127, 15, - 86, 117, 100, 206, 21, 74, 143, 14, 18, 229, - 83, 219, 173, 77, 201, 164, 195, 48, 102, 185, - 7, 98, 218, 92, 185, 32, 202, 99, 114, 155, - 212, 122, 22, 97, 124, 91, 202, 107, 104, 246, - 173, 148, 230, 245, 79, 211, 122, 245, 64, 116, - 198, 241, 125, 179, 117, 165, 13, 95, 22, 53, - 111, 202, 144, 49, 122, 188, 209, 141, 18, 41, - 74, 9, 71, 172, 196, 62, 148, 125, 145, 144, - 19, 28, 120, 89, 12, 72, 49, 104, 243, 180, - 17, 103, 103, 210, 116, 115, 97, 85, 250, 250, - 46, 120, 85, 211, 149, 209, 15, 111, 172, 11, - 7, 4, 210, 33, 234, 60, 132, 154, 139, 73, - 179, 209, 72, 152, 182, 100, 73, 238, 7, 19, - 64, 215, 157, 123, 94, 13, 44, 22, 51, 157, - 198, 28, 214, 244, 64, 123, 159, 205, 89, 43, - 40, 246, 218, 155, 148, 118, 101, 65, 83, 149, - 222, 213, 242, 78, 93, 87, 36, 252, 96, 157, - 121, 0, 59, 213, 133, 228, 64, 117, 146, 22, - 200, 172, 104, 133, 151, 85, 174, 164, 241, 80, - 104, 225, 12, 170, 165, 152, 92, 196, 227, 146, - 136, 37, 247, 61, 11, 22, 24, 184, 197, 122, - 180, 122, 9, 241, 106, 139, 71, 215, 223, 68, - 17, 247, 88, 161, 186, 131, 211, 112, 140, 110, - 120, 207, 188, 146, 147, 70, 38, 242, 80, 151, - 70, 124, 245, 85, 104, 246, 148, 161, 70, 64, - 139, 69, 41, 202, 206, 173, 19, 111, 142, 251, - 5, 215, 242, 172, 193, 190, 67, 88, 242, 60, - 19, 113, 189, 186, 220, 160, 79, 19, 225, 1, - 162, 175, 182, 140, 190, 23, 252, 166, 153, 65, - 187, 232, 99, 101, 227, 17, 79, 83, 203, 45, - 225, 250, 213, 199, 68, 252, 110, 89, 228, 248, - 208, 171, 165, 162, 123, 113, 82, 84, 196, 153, - 56, 5, 134, 1, 124, 51, 196, 245, 57, 173, - 53, 7, 104, 2, 195, 254, 98, 227, 232, 12, - 102, 137, 181, 188, 210, 182, 8, 90, 94, 85, - 170, 179, 197, 59, 189, 81, 245, 231, 104, 8, - 149, 5, 115, 213, 31, 99, 22, 18, 128, 152, - 24, 83, 6, 163, 81, 15, 100, 192, 30, 235, - 228, 20, 1, 219, 69, 113, 153, 19, 97, 57, - 71, 198, 171, 227, 86, 237, 199, 230, 137, 67, - 102, 225, 100, 47, 109, 56, 100, 98, 232, 242, - 170, 33, 152, 83, 241, 168, 229, 105, 26, 236, - 253, 192, 231, 231, 237, 74, 233, 89, 69, 227, - 77, 143, 240, 112, 116, 169, 177, 190, 36, 173, - 46, 142, 37, 63, 46, 115, 107, 194, 90, 159, - 130, 204, 87, 166, 205, 56, 189, 9, 152, 133, - 174, 214, 198, 151, 164, 146, 25, 182, 25, 254, - 231, 206, 235, 222, 217, 53, 106, 220, 1, 123, - 44, 18, 21, 235, 31, 246, 204, 7, 92, 165, - 2, 86, 40, 92, 106, 216, 123, 207, 238, 81, - 65, 134, 62, 155, 125, 60, 15, 48, 61, 35, - 80, 90, 20, 46, 193, 76, 11, 65, 211, 165, - 141, 107, 112, 160, 159, 1, 235, 182, 197, 229, - 231, 224, 178, 9, 30, 146, 228, 172, 195, 9, - 84, 22, 68, 140, 236, 68, 103, 85, 83, 105, - 25, 248, 40, 254, 33, 122, 202, 24, 188, 8, - 208, 144, 244, 65, 241, 138, 189, 68, 81, 38, - 193, 67, 64, 154, 222, 1, 22, 167, 45, 15, - 57, 39, 34, 192, 185, 237, 6, 126, 93, 97, - 168, 218, 184, 191, 44, 187, 210, 231, 238, 144, - 48, 219, 98, 148, 108, 238, 168, 33, 32, 245, - 28, 89, 176, 199, 42, 110, 119, 171, 61, 11, - 101, 184, 198, 188, 180, 139, 65, 153, 224, 141, - 175, 147, 146, 7, 27, 67, 123, 155, 219, 27, - 113, 37, 114, 232, 101, 196, 195, 97, 90, 94, - 134, 227, 133, 91, 28, 188, 42, 179, 151, 146, - 125, 7, 191, 140, 133, 196, 119, 78, 203, 41, - 45, 254, 125, 63, 16, 224, 75, 246, 34, 64, - 163, 136, 139, 243, 44, 29, 168, 13, 206, 129, - 227, 133, 12, 0, 18, 163, 81, 176, 14, 152, - 95, 38, 97, 250, 146, 68, 196, 213, 190, 127, - 159, 233, 234, 54, 30, 48, 92, 45, 72, 129, - 57, 233, 14, 148, 110, 181, 21, 181, 61, 193, - 202, 34, 78, 230, 109, 218, 128, 189, 175, 40, - 28, 3, 134, 110, 139, 136, 130, 18, 28, 82, - 40, 46, 88, 177, 98, 7, 209, 30, 114, 108, - 59, 36, 34, 221, 8, 109, 151, 56, 246, 231, - 254, 128, 8, 165, 150, 63, 114, 116, 198, 110, - 29, 75, 125, 232, 79, 210, 82, 123, 204, 32, - 33, 97, 251, 242, 198, 194, 126, 234, 157, 36, - 118, 190, 35, 45, 14, 95, 40, 188, 56, 228, - 191, 94, 118, 42, 101, 247, 157, 12, 226, 247, - 102, 65, 232, 47, 139, 103, 23, 213, 25, 15, - 11, 35, 99, 82, 44, 212, 64, 98, 251, 62, - 205, 245, 254, 64, 72, 88, 40, 84, 62, 119, - 222, 254, 226, 53, 135, 87, 120, 11, 173, 132, - 229, 150, 175, 116, 237, 99, 155, 203, 80, 29, - 187, 207, 190, 189, 53, 226, 118, 170, 205, 186, - 196, 35, 197, 77, 49, 96, 185, 87, 253, 249, - 28, 106, 94, 116, 129, 199, 150, 74, 121, 182, - 103, 147, 73, 96, 203, 190, 88, 139, 29, 1, - 57, 58, 108, 195, 59, 129, 95, 116, 134, 84, - 143, 176, 7, 244, 64, 33, 250, 240, 235, 253, - 33, 230, 37, 79, 227, 96, 62, 124, 4, 76, - 196, 152, 192, 193, 170, 24, 6, 40, 180, 173, - 139, 192, 182, 62, 159, 103, 127, 28, 229, 23, - 214, 115, 87, 8, 106, 162, 255, 197, 148, 242, - 216, 96, 238, 0, 192, 107, 5, 140, 185, 182, - 158, 131, 170, 8, 9, 234, 246, 121, 49, 141, - 126, 226, 235, 246, 140, 188, 193, 211, 22, 12, - 220, 32, 19, 79, 40, 199, 236, 15, 193, 60, - 210, 183, 78, 97, 241, 85, 220, 66, 1, 96, - 61, 14, 47, 0, 14, 57, 238, 170, 109, 211, - 53, 173, 116, 23, 92, 99, 170, 147, 208, 60, - 3, 98, 212, 196, 226, 73, 76, 71, 72, 192, - 134, 46, 67, 117, 144, 35, 12, 198, 113, 185, - 160, 152, 80, 166, 102, 42, 106, 24, 37, 140, - 189, 63, 12, 219, 51, 222, 165, 29, 42, 151, - 30, 14, 103, 210, 106, 141, 239, 192, 63, 103, - 235, 28, 76, 62, 146, 66, 235, 197, 34, 108, - 183, 8, 239, 45, 231, 130, 223, 157, 181, 243, - 34, 231, 217, 98, 130, 157, 246, 175, 250, 169, - 124, 126, 177, 236, 209, 94, 71, 21, 97, 235, - 50, 245, 208, 15, 151, 188, 21, 48, 6, 63, - 95, 142, 194, 31, 147, 48, 22, 168, 118, 31, - 114, 137, 32, 4, 113, 245, 34, 134, 217, 194, - 46, 181, 171, 245, 0, 142, 176, 144, 20, 218, - 84, 8, 95, 37, 39, 91, 49, 216, 129, 213, - 129, 149, 206, 182, 236, 236, 23, 54, 32, 127, - 219, 125, 44, 187, 29, 142, 170, 5, 168, 87, - 0, 152, 31, 176, 229, 63, 249, 205, 60, 137, - 116, 216, 89, 247, 82, 64, 70, 105, 21, 184, - 240, 99, 48, 35, 5, 254, 31, 254, 211, 108, - 85, 5, 142, 226, 85, 98, 241, 27, 187, 221, - 186, 95, 11, 249, 163, 252, 52, 13, 105, 43, - 255, 210, 206, 112, 29, 10, 253, 195, 7, 24, - 161, 132, 74, 112, 58, 31, 102, 153, 112, 78, - 86, 48, 165, 82, 254, 48, 94, 157, 75, 161, - 171, 19, 39, 27, 123, 36, 126, 113, 16, 212, - 75, 207, 175, 234, 42, 135, 218, 72, 161, 203, - 76, 39, 247, 143, 79, 119, 192, 187, 190, 43, - 220, 161, 174, 201, 156, 248, 122, 179, 151, 252, - 237, 49, 197, 248, 167, 101, 72, 157, 16, 198, - 237, 91, 168, 54, 197, 225, 251, 127, 249, 72, - 25, 197, 233, 187, 75, 181, 168, 191, 82, 13, - 224, 74, 77, 224, 38, 247, 44, 55, 222, 31, - 75, 51, 48, 77, 191, 201, 180, 13, 227, 107, - 48, 47, 84, 137, 172, 206, 161, 244, 82, 88, - 177, 139, 29, 17, 45, 212, 226, 96, 110, 12, - 38, 138, 80, 53, 178, 76, 136, 79, 98, 65, - 185, 47, 116, 208, 99, 210, 121, 14, 182, 35, - 19, 176, 196, 215, 177, 254, 134, 221, 231, 1, - 235, 163, 255, 48, 153, 173, 58, 92, 53, 92, - 54, 56, 217, 126, 75, 214, 50, 238, 222, 53, - 171, 33, 32, 85, 78, 196, 26, 116, 212, 58, - 216, 63, 178, 189, 23, 141, 169, 130, 160, 228, - 150, 121, 41, 89, 111, 197, 127, 73, 75, 23, - 255, 144, 168, 34, 136, 239, 175, 35, 175, 92, - 178, 27, 82, 246, 88, 133, 29, 95, 195, 65, - 135, 11, 40, 47, 64, 253, 149, 160, 196, 201, - 176, 220, 219, 124, 106, 130, 98, 71, 80, 236, - 99, 200, 7, 67, 8, 37, 40, 20, 138, 180, - 195, 100, 170, 215, 178, 32, 104, 222, 218, 199, - 117, 67, 33, 110, 148, 197, 30, 40, 20, 139, - 217, 204, 104, 192, 196, 93, 104, 245, 126, 62, - 132, 47, 21, 170, 174, 26, 165, 243, 128, 48, - 181, 192, 119, 163, 4, 195, 58, 1, 169, 83, - 121, 242, 182, 13, 93, 87, 55, 200, 113, 164, - 177, 10, 195, 108, 230, 96, 55, 225, 51, 182, - 166, 158, 131, 1, 125, 28, 209, 158, 204, 3, - 68, 185, 37, 139, 93, 176, 77, 155, 120, 187, - 228, 249, 58, 133, 236, 113, 142, 215, 168, 251, - 91, 220, 198, 146, 148, 238, 185, 60, 77, 23, - 58, 229, 121, 157, 170, 33, 127, 180, 207, 6, - 12, 141, 208, 58, 233, 243, 12, 37, 212, 178, - 176, 127, 111, 101, 178, 200, 7, 83, 56, 66, - 184, 18, 254, 17, 56, 29, 232, 232, 203, 221, - 210, 60, 205, 2, 205, 54, 56, 43, 64, 200, - 104, 251, 178, 82, 201, 117, 23, 121, 221, 227, - 11, 175, 235, 226, 154, 7, 57, 82, 160, 72, - 34, 69, 245, 239, 140, 191, 87, 238, 172, 121, - 105, 61, 215, 67, 145, 16, 143, 193, 142, 130, - 125, 83, 108, 19, 252, 51, 137, 109, 36, 25, - 84, 28, 26, 9, 83, 180, 24, 165, 86, 225, - 139, 100, 197, 248, 150, 30, 255, 56, 158, 67, - 52, 243, 206, 80, 134, 80, 91, 82, 224, 116, - 238, 246, 46, 9, 161, 221, 217, 91, 244, 119, - 250, 92, 65, 214, 216, 123, 87, 31, 183, 3, - 236, 173, 189, 232, 64, 44, 176, 158, 123, 156, - 62, 66, 24, 247, 164, 76, 227, 40, 119, 69, - 62, 145, 53, 205, 252, 206, 36, 225, 38, 42, - 126, 119, 110, 73, 109, 143, 111, 169, 185, 47, - 26, 130, 3, 126, 177, 221, 107, 123, 234, 175, - 228, 225, 141, 62, 137, 57, 151, 104, 218, 38, - 17, 43, 64, 246, 1, 241, 42, 251, 114, 78, - 128, 13, 198, 130, 52, 122, 24, 224, 131, 147, - 209, 208, 68, 47, 206, 227, 73, 102, 56, 248, - 191, 78, 201, 171, 177, 155, 197, 48, 13, 42, - 19, 35, 107, 230, 15, 14, 211, 134, 215, 239, - 186, 85, 82, 223, 184, 241, 12, 128, 105, 118, - 31, 37, 46, 247, 135, 110, 19, 42, 29, 54, - 28, 199, 226, 207, 224, 36, 58, 57, 149, 245, - 96, 118, 163, 93, 132, 242, 90, 1, 1, 125, - 60, 56, 91, 156, 175, 162, 123, 159, 117, 243, - 78, 141, 66, 50, 96, 252, 161, 169, 198, 146, - 109, 64, 205, 240, 200, 114, 153, 222, 20, 69, - 47, 255, 221, 73, 23, 183, 23, 146, 74, 2, - 163, 135, 154, 166, 197, 250, 47, 177, 222, 31, - 118, 3, 219, 156, 74, 97, 236, 44, 22, 5, - 164, 38, 185, 86, 207, 35, 197, 179, 167, 230, - 95, 163, 242, 127, 8, 136, 23, 218, 93, 253, - 70, 28, 107, 127, 6, 94, 84, 102, 143, 101, - 224, 78, 101, 10, 70, 160, 96, 136, 37, 239, - 103, 81, 14, 247, 167, 1, 82, 179, 171, 140, - 228, 24, 159, 159, 202, 57, 100, 25, 232, 17, - 109, 77, 139, 192, 50, 23, 176, 120, 48, 71, - 150, 189, 220, 183, 15, 7, 72, 74, 88, 54, - 132, 149, 177, 88, 176, 114, 97, 196, 9, 22, - 236, 80, 92, 176, 133, 171, 186, 67, 11, 146, - 231, 237, 106, 191, 131, 82, 208, 27, 147, 32, - 139, 244, 10, 129, 118, 200, 173, 40, 126, 168, - 187, 240, 108, 212, 13, 58, 86, 143, 16, 72, - 251, 128, 167, 211, 185, 222, 48, 161, 210, 59, - 207, 187, 74, 159, 119, 128, 167, 38, 110, 93, - 53, 146, 23, 219, 249, 74, 54, 137, 250, 223, - 234, 98, 250, 88, 5, 98, 184, 52, 208, 43, - 18, 237, 113, 20, 145, 101, 235, 103, 174, 43, - 141, 183, 138, 184, 155, 206, 61, 110, 3, 254, - 103, 36, 91, 249, 16, 73, 135, 24, 195, 55, - 15, 210, 31, 45, 70, 132, 166, 13, 16, 115, - 243, 126, 47, 74, 35, 52, 101, 105, 110, 212, - 222, 112, 77, 64, 164, 6, 104, 204, 129, 156, - 245, 165, 67, 125, 123, 114, 198, 28, 251, 72, - 169, 45, 166, 38, 234, 125, 107, 74, 66, 161, - 173, 117, 183, 50, 12, 41, 160, 82, 24, 232, - 192, 167, 138, 108, 241, 5, 10, 255, 110, 26, - 228, 219, 93, 194, 130, 156, 144, 90, 145, 22, - 59, 87, 104, 136, 210, 64, 172, 17, 108, 199, - 73, 52, 189, 145, 49, 109, 181, 175, 186, 252, - 141, 97, 13, 220, 248, 146, 33, 223, 186, 144, - 36, 249, 143, 134, 146, 26, 249, 110, 100, 133, - 131, 76, 120, 82, 6, 79, 21, 12, 111, 142, - 179, 146, 130, 239, 65, 216, 9, 222, 53, 39, - 197, 220, 121, 148, 76, 57, 103, 117, 98, 123, - 119, 220, 165, 123, 40, 177, 103, 37, 205, 87, - 137, 70, 194, 74, 76, 242, 0, 252, 68, 108, - 29, 97, 122, 65, 87, 70, 81, 77, 37, 207, - 13, 39, 251, 201, 137, 146, 36, 215, 117, 0, - 8, 183, 60, 211, 244, 158, 215, 85, 5, 228, - 103, 109, 96, 167, 16, 174, 139, 199, 183, 2, - 229, 203, 244, 160, 54, 150, 115, 5, 38, 76, - 182, 120, 177, 43, 34, 49, 150, 250, 172, 246, - 133, 214, 38, 114, 54, 177, 59, 46, 250, 224, - 248, 41, 203, 245, 106, 58, 138, 136, 96, 207, - 14, 142, 180, 144, 225, 90, 24, 206, 63, 149, - 96, 168, 141, 130, 145, 174, 160, 44, 191, 63, - 89, 169, 236, 69, 223, 80, 193, 227, 150, 110, - 43, 250, 155, 48, 79, 44, 60, 156, 232, 139, - 220, 104, 160, 78, 212, 187, 30, 178, 158, 146, - 56, 130, 218, 111, 176, 166, 250, 122, 112, 89, - 131, 34, 189, 170, 219, 141, 78, 3, 248, 17, - 38, 90, 107, 240, 26, 155, 36, 115, 147, 221, - 120, 250, 14, 1, 29, 248, 120, 199, 183, 120, - 164, 79, 197, 253, 72, 197, 61, 125, 56, 77, - 28, 170, 107, 152, 112, 100, 153, 9, 37, 125, - 108, 148, 114, 23, 122, 128, 178, 233, 217, 44, - 48, 52, 241, 157, 58, 90, 218, 163, 34, 16, - 100, 168, 182, 225, 136, 69, 217, 115, 172, 182, - 216, 92, 242, 241, 73, 66, 112, 34, 154, 196, - 157, 11, 196, 1, 154, 136, 87, 195, 74, 214, - 15, 235, 223, 136, 237, 213, 47, 219, 34, 37, - 28, 234, 194, 253, 28, 48, 129, 31, 154, 84, - 192, 215, 150, 202, 222, 35, 170, 205, 161, 170, - 169, 162, 61, 200, 60, 0, 165, 205, 175, 150, - 27, 226, 232, 142, 105, 42, 120, 124, 251, 148, - 71, 92, 76, 162, 112, 78, 129, 244, 55, 26, - 78, 146, 10, 32, 92, 178, 252, 7, 172, 84, - 80, 74, 19, 56, 203, 224, 95, 157, 177, 238, - 2, 60, 110, 5, 36, 169, 152, 4, 240, 216, - 9, 158, 181, 128, 67, 161, 79, 83, 167, 63, - 176, 8, 152, 145, 56, 100, 145, 235, 76, 128, - 97, 154, 119, 171, 183, 222, 107, 93, 157, 112, - 133, 201, 85, 11, 167, 104, 71, 15, 85, 170, - 232, 11, 5, 175, 65, 63, 35, 126, 204, 48, - 81, 126, 188, 249, 250, 241, 29, 233, 54, 33, - 108, 136, 126, 158, 49, 165, 189, 208, 130, 213, - 18, 100, 99, 237, 87, 207, 106, 190, 108, 212, - 202, 222, 46, 20, 187, 127, 46, 219, 253, 14, - 52, 227, 88, 244, 114, 184, 253, 244, 89, 28, - 118, 198, 148, 47, 123, 213, 158, 67, 181, 203, - 14, 11, 40, 169, 42, 190, 147, 84, 171, 82, - 186, 235, 217, 206, 101, 219, 230, 173, 246, 12, - 187, 236, 10, 208, 202, 248, 169, 0, 47, 107, - 20, 71, 165, 212, 70, 116, 205, 3, 234, 217, - 111, 167, 151, 70, 243, 51, 60, 74, 38, 223, - 10, 32, 216, 206, 60, 72, 106, 3, 158, 177, - 216, 34, 37, 56, 48, 209, 96, 107, 105, 209, - 83, 73, 184, 173, 79, 75, 139, 34, 49, 171, - 232, 170, 77, 182, 32, 65, 114, 90, 201, 106, - 183, 145, 189, 107, 227, 53, 156, 201, 82, 188, - 75, 86, 248, 169, 114, 59, 70, 175, 64, 180, - 197, 251, 46, 225, 215, 111, 109, 136, 205, 220, - 213, 116, 95, 93, 149, 104, 61, 52, 53, 104, - 160, 232, 76, 186, 142, 97, 33, 151, 233, 35, - 208, 54, 219, 226, 95, 123, 155, 206, 33, 46, - 196, 211, 222, 67, 93, 244, 159, 195, 248, 149, - 196, 27, 185, 147, 158, 55, 224, 171, 58, 238, - 147, 206, 105, 220, 196, 6, 92, 138, 192, 91, - 192, 23, 25, 30, 22, 37, 14, 92, 86, 158, - 195, 63, 90, 175, 239, 6, 94, 80, 169, 213, - 85, 202, 38, 75, 146, 205, 155, 108, 12, 111, - 221, 180, 70, 105, 92, 245, 24, 12, 83, 15, - 144, 104, 142, 11, 221, 154, 102, 81, 125, 203, - 185, 119, 48, 109, 111, 45, 254, 77, 255, 248, - 9, 169, 238, 139, 156, 16, 240, 11, 73, 169, - 62, 26, 29, 252, 72, 31, 0, 195, 38, 84, - 115, 85, 168, 86, 147, 181, 54, 108, 96, 55, - 150, 236, 155, 193, 25, 78, 151, 30, 68, 185, - 208, 221, 198, 141, 70, 165, 222, 134, 234, 1, - 72, 19, 59, 227, 103, 14, 202, 161, 49, 202, - 161, 81, 31, 119, 202, 160, 127, 38, 50, 80, - 217, 223, 126, 39, 151, 98, 103, 21, 52, 221, - 51, 112, 193, 52, 36, 178, 75, 30, 42, 201, - 218, 204, 223, 35, 13, 149, 60, 143, 28, 167, - 47, 208, 149, 221, 59, 178, 60, 159, 168, 83, - 5, 43, 7, 239, 192, 6, 42, 98, 194, 2, - 114, 188, 152, 223, 226, 105, 156, 172, 221, 31, - 56, 248, 52, 91, 226, 211, 232, 66, 236, 40, - 36, 204, 50, 25, 18, 201, 121, 80, 80, 31, - 103, 133, 188, 146, 213, 12, 43, 105, 157, 42, - 206, 224, 181, 70, 239, 92, 179, 255, 238, 196, - 116, 226, 11, 253, 29, 13, 179, 98, 250, 200, - 252, 203, 204, 239, 170, 246, 25, 195, 148, 27, - 63, 111, 185, 230, 173, 229, 32, 125, 106, 129, - 159, 11, 112, 198, 77, 48, 203, 155, 44, 98, - 36, 46, 236, 113, 89, 101, 47, 122, 69, 132, - 69, 94, 8, 78, 196, 73, 92, 78, 35, 81, - 67, 142, 125, 38, 33, 116, 45, 7, 251, 78, - 65, 203, 88, 215, 112, 225, 36, 254, 51, 15, - 145, 246, 226, 166, 171, 93, 111, 150, 18, 182, - 38, 76, 237, 96, 37, 150, 0, 148, 117, 142, - 155, 243, 198, 52, 159, 52, 165, 168, 85, 250, - 113, 158, 88, 199, 74, 249, 153, 227, 243, 95, - 113, 205, 91, 246, 32, 116, 100, 250, 80, 28, - 36, 117, 35, 75, 91, 239, 114, 14, 83, 128, - 183, 31, 102, 235, 57, 54, 146, 79, 245, 122, - 15, 189, 2, 81, 19, 142, 42, 56, 203, 60, - 191, 26, 133, 159, 0, 62, 29, 230, 72, 246, - 80, 228, 151, 231, 241, 227, 75, 125, 178, 213, - 212, 162, 122, 181, 118, 207, 142, 101, 177, 193, - 150, 69, 67, 158, 85, 228, 166, 64, 226, 234, - 91, 80, 106, 184, 201, 166, 70, 175, 195, 198, - 213, 37, 89, 213, 234, 64, 230, 64, 70, 31, - 27, 15, 212, 1, 219, 69, 80, 172, 237, 30, - 121, 197, 183, 74, 26, 164, 192, 89, 215, 120, - 32, 120, 85, 225, 164, 229, 63, 54, 171, 66, - 98, 112, 127, 61, 186, 238, 223, 66, 138, 223, - 151, 184, 17, 158, 46, 25, 194, 47, 95, 133, - 47, 2, 31, 94, 244, 92, 207, 102, 168, 171, - 213, 210, 56, 185, 210, 189, 140, 128, 47, 145, - 192, 50, 214, 15, 190, 63, 122, 255, 122, 207, - 99, 83, 9, 133, 65, 0, 46, 68, 244, 17, - 188, 212, 5, 64, 51, 117, 95, 234, 90, 88, - 208, 226, 7, 112, 97, 58, 9, 165, 193, 187, - 140, 43, 196, 46, 127, 3, 158, 185, 207, 110, - 102, 132, 185, 22, 207, 157, 188, 160, 232, 183, - 253, 244, 22, 55, 234, 175, 44, 220, 50, 121, - 28, 42, 240, 239, 154, 205, 131, 202, 40, 78, - 201, 114, 205, 100, 152, 139, 170, 242, 219, 37, - 22, 79, 6, 127, 244, 33, 98, 176, 149, 54, - 35, 92, 31, 143, 110, 162, 89, 246, 252, 37, - 32, 181, 131, 217, 41, 226, 192, 89, 183, 249, - 123, 20, 115, 170, 13, 98, 216, 83, 240, 237, - 43, 19, 181, 224, 220, 88, 199, 168, 35, 149, - 86, 153, 12, 216, 194, 71, 106, 117, 162, 45, - 190, 166, 93, 195, 229, 55, 204, 174, 65, 170, - 203, 88, 54, 23, 51, 5, 155, 62, 204, 224, - 107, 120, 82, 80, 100, 15, 214, 70, 92, 108, - 237, 184, 240, 214, 95, 102, 62, 110, 228, 208, - 87, 231, 196, 116, 164, 87, 173, 33, 185, 32, - 191, 210, 148, 0, 233, 0, 71, 58, 12, 148, - 202, 205, 4, 115, 81, 229, 73, 242, 43, 120, - 92, 61, 1, 62, 105, 177, 233, 241, 3, 51, - 83, 41, 219, 90, 255, 221, 133, 78, 36, 103, - 136, 191, 96, 151, 8, 26, 15, 3, 15, 67, - 67, 2, 37, 20, 178, 210, 166, 40, 135, 50, - 114, 204, 103, 67, 5, 103, 41, 79, 218, 197, - 213, 222, 13, 239, 78, 118, 198, 129, 245, 102, - 134, 61, 68, 82, 154, 226, 56, 158, 112, 80, - 136, 47, 36, 204, 117, 118, 122, 151, 236, 233, - 106, 179, 247, 86, 1, 90, 73, 184, 71, 222, - 144, 111, 25, 30, 84, 195, 95, 91, 209, 183, - 88, 75, 213, 66, 106, 110, 169, 241, 162, 3, - 206, 61, 178, 165, 86, 3, 109, 225, 70, 209, - 164, 40, 134, 234, 64, 175, 123, 62, 105, 184, - 9, 190, 35, 45, 36, 196, 159, 107, 94, 101, - 26, 175, 144, 176, 120, 3, 219, 157, 147, 83, - 177, 41, 50, 251, 186, 73, 195, 151, 148, 238, - 212, 86, 184, 91, 165, 203, 86, 164, 247, 167, - 186, 226, 108, 127, 237, 83, 252, 114, 236, 83, - 172, 42, 245, 42, 91, 13, 208, 80, 172, 22, - 168, 32, 79, 117, 57, 89, 246, 179, 252, 215, - 103, 73, 223, 140, 147, 127, 60, 51, 74, 118, - 161, 171, 117, 50, 238, 66, 162, 249, 116, 248, - 251, 40, 98, 248, 131, 118, 147, 197, 225, 174, - 39, 195, 191, 87, 198, 207, 175, 188, 224, 191, - 231, 77, 12, 222, 181, 250, 253, 85, 219, 102, - 130, 79, 61, 106, 94, 100, 18, 110, 181, 158, - 140, 140, 147, 213, 187, 79, 89, 6, 183, 237, - 133, 47, 59, 155, 116, 224, 74, 121, 158, 9, - 34, 250, 170, 214, 112, 138, 197, 157, 254, 33, - 206, 138, 155, 228, 97, 225, 197, 243, 164, 3, - 237, 193, 210, 103, 165, 225, 41, 52, 92, 203, - 57, 213, 54, 155, 105, 227, 218, 205, 173, 26, - 126, 96, 242, 49, 175, 85, 89, 56, 164, 223, - 204, 226, 225, 172, 128, 148, 18, 152, 16, 43, - 205, 15, 103, 59, 203, 198, 152, 28, 1, 6, - 229, 50, 236, 163, 92, 78, 198, 100, 50, 229, - 131, 210, 11, 78, 174, 87, 229, 193, 231, 230, - 70, 204, 87, 89, 96, 179, 76, 247, 245, 253, - 7, 46, 63, 161, 84, 177, 255, 122, 184, 50, - 130, 153, 187, 176, 68, 173, 221, 93, 227, 19, - 73, 79, 32, 46, 4, 82, 133, 207, 35, 27, - 242, 30, 18, 114, 92, 157, 151, 228, 88, 70, - 222, 233, 23, 61, 175, 225, 201, 228, 253, 243, - 12, 47, 93, 68, 38, 159, 40, 209, 54, 13, - 196, 252, 18, 175, 92, 57, 235, 2, 93, 22, - 105, 49, 45, 102, 201, 1, 189, 202, 142, 212, - 125, 236, 153, 194, 201, 243, 24, 224, 215, 133, - 8, 195, 141, 44, 150, 218, 211, 13, 159, 213, - 177, 240, 66, 49, 65, 195, 100, 91, 178, 254, - 95, 30, 105, 94, 161, 207, 184, 235, 37, 52, - 33, 111, 68, 159, 144, 76, 111, 66, 237, 1, - 58, 103, 242, 160, 53, 157, 123, 81, 74, 254, - 210, 15, 60, 205, 58, 93, 140, 126, 197, 187, - 31, 188, 96, 58, 86, 247, 39, 144, 17, 130, - 222, 93, 41, 44, 79, 134, 3, 7, 146, 116, - 50, 230, 54, 159, 200, 176, 224, 51, 235, 66, - 54, 220, 217, 14, 127, 48, 73, 46, 235, 157, - 135, 188, 201, 18, 57, 5, 156, 210, 64, 60, - 8, 113, 173, 141, 11, 75, 232, 115, 175, 95, - 52, 31, 109, 141, 23, 191, 46, 102, 87, 174, - 251, 74, 2, 162, 135, 67, 3, 41, 11, 52, - 252, 226, 82, 154, 95, 3, 255, 90, 113, 1, - 183, 133, 22, 145, 172, 222, 233, 246, 212, 110, - 66, 185, 126, 232, 59, 132, 141, 254, 243, 49, - 180, 247, 213, 228, 200, 75, 41, 223, 135, 143, - 212, 30, 108, 164, 237, 180, 113, 42, 83, 54, - 172, 71, 69, 253, 139, 23, 111, 151, 145, 186, - 235, 48, 201, 173, 103, 140, 180, 38, 47, 182, - 213, 15, 131, 124, 113, 70, 127, 139, 155, 38, - 197, 57, 107, 208, 113, 234, 227, 105, 110, 48, - 40, 209, 243, 166, 198, 49, 226, 154, 230, 52, - 134, 39, 203, 86, 223, 87, 144, 173, 212, 14, - 49, 118, 91, 66, 113, 123, 65, 35, 69, 240, - 18, 122, 47, 237, 50, 41, 220, 52, 247, 226, - 106, 163, 254, 240, 118, 74, 209, 165, 99, 146, - 75, 219, 173, 241, 233, 60, 70, 209, 66, 179, - 140, 62, 102, 242, 27, 97, 65, 15, 36, 125, - 208, 59, 227, 38, 9, 22, 219, 209, 230, 191, - 6, 218, 135, 108, 135, 194, 170, 135, 212, 16, - 141, 228, 146, 112, 217, 142, 11, 32, 124, 223, - 223, 89, 160, 162, 44, 163, 227, 226, 247, 22, - 227, 142, 148, 161, 194, 51, 45, 40, 164, 98, - 186, 149, 60, 88, 24, 53, 148, 231, 240, 89, - 8, 137, 82, 13, 34, 77, 115, 32, 15, 119, - 64, 142, 185, 149, 73, 170, 216, 239, 98, 153, - 191, 165, 10, 107, 88, 135, 135, 124, 104, 78, - 249, 121, 209, 118, 214, 204, 47, 120, 117, 99, - 119, 68, 101, 223, 208, 239, 12, 225, 138, 132, - 220, 95, 250, 198, 147, 107, 174, 162, 53, 23, - 34, 109, 180, 78, 94, 66, 22, 237, 133, 93, - 192, 219, 250, 241, 67, 49, 71, 83, 238, 232, - 89, 73, 146, 8, 221, 124, 41, 12, 122, 123, - 246, 201, 85, 253, 85, 217, 70, 230, 3, 63, - 105, 176, 75, 250, 147, 41, 172, 46, 168, 254, - 124, 57, 57, 60, 167, 31, 168, 22, 208, 206, - 133, 134, 178, 91, 236, 109, 178, 73, 13, 103, - 167, 230, 17, 38, 226, 21, 108, 47, 31, 22, - 75, 83, 161, 79, 195, 214, 100, 164, 251, 99, - 67, 202, 0, 153, 199, 94, 201, 17, 87, 157, - 95, 188, 112, 111, 65, 111, 173, 45, 130, 83, - 183, 0, 142, 67, 166, 211, 109, 193, 169, 186, - 128, 14, 13, 219, 142, 255, 20, 233, 207, 16, - 13, 112, 92, 120, 95, 139, 190, 84, 195, 186, - 72, 119, 1, 171, 149, 115, 185, 54, 7, 62, - 41, 154, 166, 219, 111, 68, 210, 77, 157, 210, - 29, 221, 148, 31, 34, 203, 153, 126, 135, 241, - 83, 216, 188, 86, 50, 33, 39, 204, 189, 117, - 46, 212, 165, 157, 70, 103, 34, 90, 58, 145, - 1, 106, 106, 241, 113, 187, 26, 43, 63, 46, - 94, 98, 180, 45, 170, 64, 241, 161, 180, 155, - 148, 167, 168, 158, 214, 114, 123, 193, 114, 78, - 120, 15, 149, 173, 69, 144, 112, 190, 175, 90, - 149, 215, 169, 229, 110, 208, 0, 38, 141, 78, - 243, 64, 205, 131, 248, 107, 37, 205, 78, 99, - 252, 186, 58, 77, 158, 241, 30, 83, 237, 1, - 22, 207, 171, 198, 189, 10, 148, 197, 103, 90, - 63, 179, 127, 134, 5, 188, 230, 61, 171, 6, - 138, 150, 166, 166, 70, 156, 64, 130, 144, 129, - 47, 235, 105, 120, 109, 24, 186, 187, 122, 27, - 204, 38, 204, 125, 57, 104, 160, 2, 230, 199, - 89, 3, 91, 213, 175, 254, 190, 210, 204, 25, - 9, 37, 36, 102, 247, 78, 71, 2, 190, 234, - 30, 8, 9, 27, 27, 19, 80, 163, 120, 59, - 242, 141, 62, 83, 37, 117, 198, 90, 15, 138, - 25, 15, 175, 54, 91, 184, 235, 218, 30, 99, - 112, 5, 76, 234, 121, 9, 247, 126, 21, 73, - 200, 96, 95, 71, 137, 40, 3, 229, 105, 74, - 6, 62, 75, 100, 113, 164, 100, 225, 147, 226, - 139, 118, 37, 0, 149, 98, 43, 150, 47, 248, - 62, 175, 155, 193, 65, 158, 234, 251, 74, 10, - 196, 207, 87, 34, 237, 196, 180, 179, 3, 211, - 56, 19, 30, 6, 193, 96, 115, 152, 199, 98, - 233, 227, 124, 132, 198, 123, 73, 152, 158, 239, - 231, 218, 170, 184, 75, 251, 184, 139, 79, 113, - 56, 131, 140, 119, 47, 222, 243, 235, 91, 109, - 246, 254, 179, 190, 73, 96, 97, 97, 133, 159, - 137, 17, 231, 211, 116, 94, 60, 19, 54, 146, - 106, 245, 43, 234, 112, 154, 224, 142, 67, 48, - 45, 231, 93, 152, 113, 221, 239, 15, 78, 99, - 203, 18, 3, 196, 52, 30, 61, 73, 16, 50, - 204, 92, 158, 248, 242, 136, 229, 104, 150, 118, - 159, 17, 43, 122, 54, 238, 171, 156, 190, 155, - 203, 13, 227, 124, 29, 210, 64, 134, 2, 31, - 187, 5, 117, 130, 154, 112, 17, 216, 35, 9, - 253, 119, 209, 49, 225, 114, 136, 127, 14, 56, - 98, 10, 171, 180, 218, 1, 0, 142, 226, 145, - 255, 222, 251, 33, 58, 54, 87, 84, 222, 57, - 157, 156, 192, 222, 225, 250, 18, 156, 144, 224, - 113, 105, 180, 126, 133, 8, 181, 54, 1, 113, - 28, 68, 237, 59, 165, 9, 249, 182, 240, 14, - 179, 151, 188, 104, 138, 84, 37, 78, 136, 39, - 249, 25, 196, 121, 0, 44, 145, 51, 213, 53, - 113, 1, 98, 90, 36, 219, 3, 207, 56, 197, - 95, 231, 227, 62, 12, 11, 98, 166, 230, 94, - 38, 48, 240, 165, 186, 151, 95, 91, 48, 200, - 30, 16, 241, 110, 213, 49, 173, 145, 89, 184, - 220, 168, 96, 196, 149, 175, 55, 46, 47, 173, - 42, 110, 112, 134, 62, 47, 43, 4, 100, 2, - 203, 32, 41, 249, 64, 35, 221, 204, 208, 253, - 34, 102, 232, 19, 99, 40, 174, 224, 220, 209, - 254, 58, 128, 26, 62, 214, 26, 215, 174, 59, - 51, 41, 228, 201, 4, 94, 216, 255, 216, 217, - 221, 102, 103, 171, 204, 221, 229, 100, 77, 15, - 147, 28, 108, 122, 113, 130, 182, 246, 179, 167, - 228, 107, 40, 90, 64, 118, 146, 53, 32, 254, - 200, 79, 225, 140, 7, 224, 186, 89, 7, 1, - 104, 116, 195, 71, 58, 80, 197, 79, 23, 165, - 203, 85, 165, 76, 107, 167, 237, 41, 4, 6, - 207, 139, 126, 25, 56, 221, 102, 255, 250, 30, - 117, 33, 101, 176, 165, 139, 39, 44, 139, 26, - 0, 22, 89, 92, 89, 92, 180, 157, 228, 7, - 150, 162, 180, 161, 242, 65, 224, 121, 250, 239, - 134, 245, 8, 104, 167, 36, 73, 251, 219, 85, - 30, 200, 52, 222, 228, 151, 137, 220, 228, 202, - 109, 171, 11, 32, 45, 93, 18, 137, 137, 229, - 40, 179, 248, 116, 47, 68, 45, 7, 243, 18, - 20, 42, 125, 191, 119, 202, 90, 26, 145, 199, - 220, 38, 129, 179, 80, 232, 165, 72, 136, 246, - 234, 205, 134, 229, 38, 194, 53, 175, 63, 63, - 28, 152, 3, 213, 164, 52, 156, 26, 180, 140, - 248, 143, 225, 194, 177, 245, 122, 68, 104, 127, - 40, 70, 87, 154, 88, 97, 46, 31, 6, 0, - 117, 125, 50, 216, 146, 81, 153, 91, 91, 63, - 213, 135, 64, 15, 69, 53, 137, 41, 220, 91, - 61, 186, 53, 79, 157, 15, 11, 135, 130, 107, - 149, 161, 140, 86, 132, 238, 43, 123, 200, 223, - 28, 222, 143, 236, 141, 248, 215, 54, 42, 10, - 163, 35, 130, 84, 213, 230, 208, 25, 48, 73, - 26, 179, 158, 169, 31, 7, 212, 193, 153, 20, - 64, 236, 129, 23, 143, 120, 172, 167, 96, 52, - 252, 236, 30, 38, 187, 186, 1, 92, 121, 152, - 13, 157, 107, 184, 111, 48, 219, 186, 225, 212, - 93, 216, 254, 82, 190, 178, 236, 130, 215, 37, - 60, 229, 46, 107, 151, 52, 7, 219, 130, 144, - 104, 22, 34, 165, 113, 70, 60, 87, 22, 28, - 151, 90, 139, 134, 96, 209, 192, 30, 11, 242, - 120, 64, 219, 222, 48, 139, 152, 63, 197, 236, - 131, 87, 141, 141, 103, 236, 66, 249, 204, 172, - 124, 226, 244, 107, 131, 125, 142, 94, 104, 152, - 20, 164, 133, 212, 154, 158, 68, 134, 53, 68, - 173, 140, 191, 42, 194, 130, 160, 19, 16, 7, - 9, 184, 196, 60, 248, 237, 215, 65, 131, 17, - 161, 39, 237, 96, 163, 228, 105, 216, 161, 78, - 80, 35, 159, 167, 99, 10, 142, 28, 48, 56, - 89, 44, 219, 179, 167, 132, 177, 21, 131, 75, - 144, 185, 111, 191, 1, 121, 248, 198, 30, 80, - 233, 172, 247, 168, 167, 207, 17, 155, 233, 162, - 60, 235, 81, 115, 54, 19, 228, 175, 137, 191, - 251, 10, 18, 54, 238, 202, 1, 224, 66, 247, - 32, 59, 95, 185, 209, 220, 168, 172, 194, 112, - 143, 141, 134, 221, 115, 136, 83, 55, 224, 82, - 64, 67, 4, 115, 16, 191, 195, 21, 192, 161, - 14, 131, 43, 135, 36, 224, 160, 17, 19, 26, - 99, 43, 135, 114, 127, 153, 18, 203, 37, 27, - 179, 216, 5, 186, 79, 123, 243, 178, 72, 211, - 98, 102, 232, 194, 53, 18, 139, 207, 128, 25, - 242, 193, 215, 36, 16, 87, 69, 19, 183, 216, - 58, 238, 22, 208, 52, 240, 165, 16, 122, 124, - 18, 55, 49, 21, 209, 95, 111, 210, 109, 171, - 183, 30, 228, 55, 76, 198, 10, 2, 175, 220, - 146, 76, 30, 11, 206, 215, 54, 135, 120, 9, - 110, 188, 201, 59, 32, 189, 3, 47, 60, 118, - 123, 141, 166, 4, 148, 208, 191, 105, 48, 150, - 145, 158, 194, 68, 48, 65, 127, 154, 55, 3, - 116, 91, 35, 236, 212, 38, 24, 219, 91, 56, - 151, 230, 179, 39, 112, 82, 196, 23, 211, 160, - 230, 137, 72, 46, 227, 69, 210, 165, 166, 83, - 68, 2, 103, 180, 225, 181, 248, 140, 146, 31, - 34, 35, 27, 187, 117, 192, 169, 122, 117, 219, - 51, 199, 157, 13, 184, 131, 53, 211, 105, 109, - 225, 73, 153, 138, 151, 234, 219, 10, 185, 162, - 186, 71, 41, 53, 219, 158, 46, 56, 175, 15, - 121, 146, 98, 200, 146, 122, 126, 106, 223, 68, - 231, 172, 134, 3, 235, 171, 170, 180, 111, 52, - 137, 132, 124, 201, 157, 233, 219, 41, 14, 181, - 64, 236, 13, 143, 216, 77, 11, 76, 139, 16, - 174, 75, 214, 138, 1, 43, 123, 157, 137, 144, - 160, 116, 249, 29, 219, 227, 66, 106, 141, 149, - 158, 182, 70, 156, 233, 190, 17, 1, 77, 245, - 231, 234, 231, 12, 76, 178, 96, 6, 135, 80, - 182, 144, 231, 108, 201, 224, 47, 168, 42, 166, - 104, 77, 220, 155, 0, 108, 233, 20, 109, 242, - 97, 222, 209, 232, 191, 213, 228, 34, 17, 241, - 112, 147, 3, 1, 184, 211, 45, 166, 179, 53, - 205, 26, 254, 147, 213, 172, 190, 205, 98, 66, - 178, 34, 14, 144, 99, 48, 6, 95, 66, 107, - 122, 155, 136, 124, 227, 208, 75, 133, 156, 49, - 137, 93, 68, 173, 41, 67, 40, 14, 180, 52, - 47, 114, 155, 225, 82, 40, 107, 83, 203, 101, - 209, 31, 76, 21, 232, 255, 130, 217, 155, 118, - 54, 199, 137, 38, 142, 195, 1, 252, 7, 225, - 96, 78, 19, 53, 53, 47, 173, 15, 49, 47, - 87, 159, 243, 192, 248, 238, 85, 85, 50, 79, - 99, 131, 124, 54, 207, 51, 210, 179, 11, 11, - 18, 172, 35, 220, 33, 224, 144, 176, 87, 52, - 121, 214, 37, 252, 147, 217, 43, 76, 212, 200, - 199, 135, 209, 194, 130, 153, 122, 95, 77, 179, - 164, 196, 24, 20, 210, 81, 237, 251, 58, 199, - 14, 115, 236, 184, 153, 32, 137, 93, 239, 174, - 242, 244, 156, 1, 196, 72, 9, 105, 171, 154, - 239, 53, 186, 119, 171, 209, 72, 73, 226, 89, - 134, 232, 78, 90, 64, 41, 247, 11, 248, 222, - 210, 107, 163, 250, 13, 227, 189, 156, 115, 101, - 242, 128, 234, 8, 171, 210, 191, 53, 176, 31, - 7, 210, 165, 238, 167, 166, 61, 245, 191, 177, - 46, 77, 62, 59, 129, 130, 4, 51, 10, 49, - 176, 47, 38, 71, 167, 147, 56, 129, 30, 51, - 53, 252, 141, 192, 128, 215, 220, 74, 7, 6, - 177, 125, 6, 233, 123, 50, 168, 11, 91, 244, - 4, 241, 71, 175, 156, 211, 249, 128, 117, 207, - 223, 136, 115, 166, 209, 44, 141, 177, 44, 116, - 226, 235, 189, 132, 68, 26, 84, 242, 250, 167, - 58, 188, 144, 84, 120, 57, 226, 235, 110, 206, - 11, 247, 50, 106, 140, 137, 63, 187, 149, 75, - 241, 200, 85, 243, 236, 99, 155, 169, 203, 89, - 164, 173, 218, 144, 210, 169, 27, 101, 233, 141, - 229, 218, 103, 210, 61, 156, 154, 152, 145, 186, - 6, 206, 153, 207, 244, 250, 214, 70, 145, 130, - 142, 217, 50, 84, 200, 217, 217, 114, 102, 162, - 215, 56, 85, 58, 82, 107, 178, 31, 202, 174, - 15, 235, 160, 235, 144, 145, 211, 30, 64, 131, - 162, 82, 116, 253, 160, 134, 240, 136, 34, 202, - 243, 222, 112, 170, 242, 245, 192, 40, 120, 144, - 200, 31, 65, 166, 176, 196, 228, 5, 39, 102, - 205, 202, 93, 5, 159, 13, 206, 134, 158, 151, - 112, 50, 236, 254, 248, 31, 166, 202, 152, 132, - 114, 10, 97, 183, 158, 182, 35, 140, 131, 9, - 168, 123, 104, 82, 106, 127, 69, 40, 156, 249, - 180, 220, 13, 169, 223, 168, 114, 36, 17, 162, - 249, 254, 227, 138, 166, 218, 219, 53, 92, 219, - 42, 254, 188, 89, 235, 18, 208, 245, 202, 121, - 177, 47, 107, 72, 238, 99, 17, 153, 62, 77, - 93, 56, 237, 24, 57, 141, 120, 216, 26, 186, - 30, 123, 49, 192, 48, 177, 131, 129, 153, 79, - 69, 10, 11, 77, 18, 46, 32, 211, 42, 239, - 71, 238, 149, 158, 242, 49, 146, 111, 85, 65, - 8, 28, 82, 58, 115, 200, 252, 227, 99, 52, - 145, 205, 248, 101, 68, 143, 41, 156, 236, 148, - 140, 251, 75, 222, 144, 64, 66, 35, 69, 83, - 33, 146, 93, 200, 5, 167, 177, 233, 241, 37, - 7, 225, 2, 220, 222, 232, 201, 155, 52, 225, - 147, 26, 43, 248, 120, 94, 85, 225, 229, 227, - 223, 226, 255, 181, 231, 147, 176, 243, 155, 2, - 230, 191, 123, 32, 141, 44, 153, 225, 37, 11, - 209, 69, 85, 196, 150, 76, 181, 94, 20, 87, - 165, 80, 81, 212, 2, 21, 97, 245, 127, 196, - 142, 31, 117, 50, 7, 79, 195, 142, 135, 74, - 246, 115, 247, 215, 239, 5, 102, 9, 127, 157, - 16, 152, 216, 197, 210, 7, 7, 111, 196, 6, - 172, 163, 67, 47, 175, 154, 159, 186, 20, 179, - 9, 71, 44, 15, 24, 54, 127, 100, 158, 162, - 133, 88, 119, 116, 77, 195, 157, 219, 155, 18, - 0, 190, 198, 70, 98, 16, 203, 23, 238, 69, - 61, 139, 217, 138, 188, 222, 50, 25, 84, 116, - 231, 148, 224, 140, 183, 94, 126, 146, 178, 18, - 219, 93, 232, 38, 99, 31, 158, 100, 5, 196, - 73, 186, 185, 9, 19, 64, 80, 47, 162, 76, - 106, 223, 162, 231, 237, 142, 115, 58, 91, 199, - 91, 191, 95, 232, 230, 174, 164, 168, 232, 38, - 94, 83, 128, 68, 195, 154, 31, 3, 142, 214, - 215, 163, 63, 170, 12, 202, 30, 73, 158, 94, - 107, 165, 134, 35, 239, 112, 37, 199, 72, 4, - 173, 126, 138, 47, 180, 161, 58, 46, 172, 88, - 91, 14, 144, 179, 163, 78, 159, 125, 85, 23, - 99, 151, 172, 160, 129, 192, 80, 86, 191, 79, - 34, 142, 9, 73, 189, 119, 253, 231, 105, 191, - 35, 223, 3, 212, 57, 117, 7, 54, 33, 101, - 141, 110, 214, 191, 116, 200, 140, 119, 157, 88, - 16, 122, 118, 31, 105, 195, 68, 144, 200, 225, - 34, 43, 59, 173, 61, 130, 51, 51, 28, 115, - 97, 148, 211, 152, 117, 254, 143, 181, 253, 107, - 130, 78, 136, 1, 209, 249, 15, 198, 75, 216, - 65, 181, 172, 151, 251, 138, 22, 44, 239, 178, - 254, 201, 14, 233, 129, 116, 229, 210, 27, 223, - 136, 191, 193, 185, 157, 2, 144, 53, 229, 10, - 212, 123, 192, 14, 53, 139, 117, 125, 60, 206, - 145, 126, 165, 218, 22, 187, 56, 76, 157, 250, - 95, 225, 231, 191, 184, 211, 28, 139, 167, 10, - 27, 117, 145, 18, 72, 126, 92, 238, 104, 20, - 39, 18, 46, 136, 215, 19, 205, 54, 44, 142, - 87, 46, 141, 120, 1, 235, 74, 1, 250, 129, - 126, 121, 171, 188, 75, 100, 121, 237, 129, 9, - 202, 18, 199, 230, 153, 215, 210, 147, 116, 161, - 168, 125, 129, 231, 136, 234, 237, 174, 62, 101, - 241, 44, 17, 3, 57, 175, 212, 164, 30, 96, - 210, 70, 3, 70, 138, 75, 94, 167, 180, 132, - 45, 91, 226, 88, 223, 250, 93, 24, 89, 62, - 66, 25, 187, 221, 59, 5, 12, 28, 255, 113, - 240, 238, 230, 154, 170, 168, 214, 2, 39, 99, - 149, 180, 202, 173, 104, 63, 221, 255, 217, 143, - 112, 125, 203, 225, 46, 69, 152, 143, 21, 64, - 192, 97, 38, 139, 101, 166, 212, 164, 180, 53, - 213, 239, 18, 136, 193, 25, 84, 124, 14, 34, - 93, 107, 228, 26, 207, 146, 139, 4, 129, 101, - 41, 185, 96, 163, 163, 191, 56, 178, 59, 107, - 74, 73, 134, 48, 129, 3, 106, 164, 75, 3, - 164, 210, 195, 177, 73, 133, 141, 178, 55, 121, - 102, 129, 1, 10, 44, 251, 155, 14, 254, 205, - 228, 63, 3, 77, 4, 191, 193, 106, 110, 141, - 181, 158, 87, 242, 153, 197, 153, 222, 79, 249, - 3, 8, 140, 127, 211, 150, 9, 0, 45, 44, - 156, 5, 237, 41, 131, 254, 160, 11, 185, 213, - 27, 128, 16, 146, 220, 6, 81, 252, 118, 0, - 81, 67, 40, 81, 66, 17, 211, 147, 210, 80, - 36, 5, 212, 39, 7, 65, 59, 163, 191, 23, - 172, 128, 22, 128, 169, 166, 240, 175, 159, 36, - 131, 183, 203, 254, 166, 11, 84, 144, 56, 187, - 186, 106, 205, 27, 240, 167, 123, 82, 225, 81, - 68, 32, 232, 248, 102, 213, 38, 72, 136, 56, - 136, 60, 237, 206, 182, 25, 242, 108, 98, 165, - 99, 163, 95, 32, 56, 175, 200, 53, 172, 160, - 222, 162, 35, 11, 172, 15, 175, 218, 114, 188, - 138, 87, 173, 4, 216, 59, 197, 178, 154, 163, - 43, 1, 181, 143, 246, 116, 155, 171, 136, 23, - 151, 79, 7, 0, 205, 52, 175, 216, 230, 65, - 154, 189, 253, 151, 186, 57, 49, 124, 69, 135, - 71, 122, 42, 114, 124, 6, 205, 89, 226, 216, - 155, 247, 119, 217, 161, 9, 9, 134, 178, 233, - 112, 223, 58, 97, 210, 171, 196, 154, 2, 85, - 229, 118, 126, 5, 226, 182, 232, 129, 2, 155, - 249, 95, 208, 110, 254, 44, 102, 27, 118, 64, - 28, 119, 140, 15, 113, 240, 88, 185, 196, 152, - 226, 157, 76, 104, 159, 248, 254, 146, 141, 165, - 234, 4, 73, 53, 85, 141, 157, 30, 118, 123, - 2, 145, 185, 143, 244, 43, 14, 214, 44, 25, - 140, 47, 24, 21, 2, 68, 123, 106, 218, 190, - 24, 82, 120, 17, 64, 31, 31, 23, 151, 216, - 159, 87, 173, 4, 106, 8, 199, 237, 138, 94, - 141, 88, 112, 227, 72, 88, 241, 151, 231, 16, - 143, 228, 151, 36, 123, 134, 92, 37, 207, 223, - 18, 123, 177, 235, 198, 244, 55, 16, 202, 36, - 91, 204, 239, 220, 218, 41, 34, 26, 61, 81, - 179, 158, 253, 3, 220, 119, 243, 201, 4, 172, - 118, 152, 35, 21, 232, 205, 138, 21, 45, 254, - 147, 123, 97, 215, 31, 148, 234, 143, 15, 165, - 79, 205, 144, 118, 193, 41, 8, 86, 144, 158, - 76, 157, 135, 195, 138, 183, 80, 138, 17, 100, - 107, 169, 154, 240, 54, 187, 175, 167, 193, 90, - 136, 83, 128, 255, 177, 52, 166, 188, 7, 80, - 143, 60, 240, 155, 151, 2, 110, 1, 107, 227, - 171, 39, 45, 27, 184, 30, 214, 192, 169, 26, - 3, 13, 45, 155, 208, 100, 34, 85, 205, 191, - 186, 67, 68, 139, 92, 0, 227, 49, 188, 46, - 157, 232, 144, 153, 245, 29, 220, 186, 215, 11, - 81, 199, 49, 107, 84, 185, 13, 87, 220, 254, - 26, 140, 172, 127, 252, 169, 230, 164, 147, 166, - 184, 107, 38, 88, 223, 17, 126, 152, 27, 52, - 122, 72, 211, 95, 55, 57, 33, 0, 196, 197, - 210, 146, 187, 65, 33, 130, 74, 212, 64, 255, - 186, 241, 80, 105, 62, 131, 153, 199, 84, 228, - 145, 218, 70, 115, 237, 195, 32, 67, 13, 137, - 124, 106, 129, 255, 161, 229, 220, 97, 86, 102, - 154, 20, 93, 123, 85, 193, 234, 48, 209, 15, - 37, 2, 57, 103, 90, 191, 158, 63, 212, 220, - 226, 133, 129, 82, 185, 190, 90, 29, 213, 197, - 222, 175, 232, 108, 245, 144, 146, 51, 143, 191, - 215, 179, 100, 90, 242, 196, 162, 124, 227, 166, - 9, 110, 63, 93, 169, 83, 168, 88, 85, 136, - 94, 187, 218, 234, 115, 61, 245, 61, 177, 115, - 183, 230, 26, 159, 119, 14, 117, 201, 13, 94, - 112, 37, 92, 57, 68, 117, 248, 213, 45, 156, - 135, 250, 41, 2, 135, 26, 76, 42, 77, 146, - 187, 135, 63, 131, 251, 65, 196, 192, 193, 148, - 90, 216, 28, 54, 39, 170, 160, 253, 195, 42, - 140, 184, 117, 125, 253, 176, 1, 151, 124, 235, - 65, 33, 86, 152, 80, 237, 180, 37, 124, 234, - 250, 178, 33, 7, 43, 16, 106, 23, 203, 138, - 94, 219, 45, 34, 183, 41, 90, 63, 28, 222, - 241, 41, 2, 145, 254, 155, 156, 114, 132, 54, - 180, 128, 184, 0, 165, 112, 109, 96, 244, 148, - 6, 130, 83, 57, 68, 10, 21, 154, 240, 3, - 137, 28, 148, 19, 137, 214, 69, 25, 60, 248, - 56, 228, 34, 224, 47, 99, 65, 128, 181, 141, - 114, 4, 232, 42, 169, 242, 191, 240, 71, 58, - 158, 119, 23, 142, 212, 237, 142, 29, 115, 142, - 51, 241, 61, 106, 252, 29, 166, 191, 198, 176, - 221, 164, 163, 221, 99, 35, 141, 57, 158, 150, - 117, 146, 189, 54, 173, 3, 177, 60, 2, 199, - 26, 67, 216, 124, 165, 112, 20, 208, 210, 185, - 79, 23, 111, 147, 73, 78, 198, 234, 162, 154, - 66, 163, 152, 167, 54, 249, 66, 184, 216, 17, - 217, 180, 22, 114, 38, 53, 192, 208, 25, 115, - 205, 169, 191, 95, 239, 186, 224, 40, 102, 218, - 197, 82, 81, 55, 216, 223, 184, 93, 31, 181, - 123, 41, 113, 23, 228, 36, 99, 82, 49, 185, - 96, 220, 99, 116, 146, 115, 220, 206, 231, 172, - 127, 83, 95, 209, 198, 197, 188, 43, 248, 254, - 37, 53, 239, 68, 97, 150, 238, 177, 33, 162, - 71, 105, 86, 254, 213, 6, 54, 144, 26, 241, - 171, 58, 186, 138, 151, 176, 79, 168, 207, 233, - 206, 196, 133, 167, 49, 141, 116, 37, 189, 132, - 69, 129, 189, 79, 254, 234, 22, 20, 208, 222, - 34, 225, 199, 243, 234, 98, 192, 179, 114, 12, - 239, 13, 219, 195, 27, 166, 141, 36, 223, 159, - 252, 246, 70, 81, 65, 102, 43, 251, 179, 177, - 83, 162, 172, 154, 254, 113, 145, 17, 169, 123, - 211, 113, 152, 30, 178, 130, 106, 91, 123, 232, - 71, 209, 152, 114, 146, 231, 249, 38, 95, 116, - 181, 134, 229, 50, 121, 2, 179, 177, 62, 11, - 195, 81, 159, 138, 238, 102, 90, 88, 104, 127, - 15, 160, 78, 180, 223, 251, 144, 181, 54, 102, - 173, 1, 249, 218, 231, 224, 191, 34, 105, 153, - 148, 57, 49, 63, 67, 246, 72, 240, 132, 185, - 139, 226, 243, 63, 199, 148, 211, 98, 128, 233, - 68, 105, 249, 157, 86, 231, 230, 201, 37, 116, - 143, 190, 28, 248, 141, 201, 37, 32, 199, 83, - 29, 34, 244, 92, 189, 136, 117, 180, 150, 135, - 32, 78, 108, 76, 87, 2, 40, 115, 58, 157, - 85, 105, 48, 212, 162, 241, 184, 3, 105, 161, - 177, 93, 158, 72, 91, 54, 12, 17, 156, 235, - 189, 1, 140, 93, 76, 194, 76, 65, 239, 3, - 109, 44, 69, 109, 164, 191, 171, 57, 34, 219, - 6, 74, 172, 172, 65, 74, 179, 181, 163, 137, - 102, 216, 255, 137, 28, 135, 45, 21, 56, 62, - 170, 205, 124, 92, 190, 32, 191, 82, 126, 143, - 146, 43, 118, 169, 28, 165, 89, 87, 181, 195, - 14, 208, 225, 94, 216, 164, 157, 39, 234, 7, - 66, 231, 37, 79, 128, 126, 175, 66, 54, 247, - 97, 24, 142, 218, 26, 200, 27, 132, 236, 128, - 19, 5, 32, 51, 106, 184, 123, 22, 90, 118, - 24, 53, 55, 99, 27, 215, 107, 126, 90, 49, - 81, 38, 144, 157, 46, 251, 104, 128, 215, 138, - 83, 26, 99, 135, 166, 20, 81, 232, 183, 155, - 225, 63, 50, 44, 210, 75, 177, 173, 58, 181, - 115, 52, 65, 38, 74, 173, 103, 156, 167, 1, - 180, 8, 18, 84, 50, 94, 97, 50, 16, 226, - 243, 59, 67, 84, 103, 52, 111, 6, 25, 36, - 251, 131, 9, 79, 92, 19, 63, 250, 145, 51, - 49, 231, 98, 31, 194, 214, 182, 87, 173, 165, - 156, 127, 1, 144, 176, 73, 162, 110, 231, 244, - 151, 61, 181, 238, 4, 97, 255, 204, 164, 233, - 185, 98, 209, 70, 39, 127, 126, 220, 55, 156, - 242, 183, 5, 46, 174, 135, 68, 38, 81, 26, - 73, 43, 45, 192, 227, 242, 251, 203, 11, 22, - 188, 209, 242, 252, 239, 149, 96, 76, 251, 20, - 107, 133, 29, 186, 166, 18, 186, 174, 6, 84, - 180, 87, 5, 62, 141, 31, 54, 112, 67, 178, - 165, 34, 224, 15, 219, 13, 179, 163, 157, 77, - 4, 117, 159, 37, 215, 138, 104, 186, 210, 168, - 178, 17, 29, 32, 71, 73, 60, 153, 242, 142, - 51, 190, 150, 64, 242, 31, 7, 209, 50, 190, - 128, 12, 54, 11, 202, 78, 112, 249, 215, 32, - 27, 141, 76, 1, 202, 124, 127, 118, 11, 240, - 149, 59, 124, 24, 210, 127, 134, 71, 75, 230, - 244, 189, 174, 52, 18, 146, 118, 222, 185, 54, - 218, 177, 169, 201, 181, 109, 177, 83, 70, 219, - 116, 121, 238, 207, 12, 228, 254, 17, 189, 36, - 207, 215, 34, 118, 150, 215, 56, 112, 138, 190, - 140, 12, 30, 176, 6, 139, 100, 104, 140, 58, - 238, 24, 140, 69, 5, 40, 105, 189, 174, 13, - 231, 109, 176, 137, 60, 105, 62, 132, 212, 140, - 5, 252, 156, 138, 197, 170, 131, 36, 17, 179, - 207, 239, 5, 85, 64, 50, 154, 162, 107, 171, - 206, 15, 112, 63, 228, 70, 191, 229, 131, 22, - 18, 101, 44, 200, 152, 73, 147, 212, 135, 133, - 40, 235, 68, 205, 95, 189, 64, 199, 139, 60, - 128, 179, 131, 71, 95, 241, 35, 187, 151, 163, - 149, 235, 88, 21, 23, 30, 83, 58, 53, 188, - 95, 115, 6, 68, 22, 32, 126, 37, 121, 126, - 92, 20, 220, 214, 237, 238, 175, 130, 86, 24, - 132, 205, 9, 91, 242, 18, 82, 109, 124, 44, - 138, 4, 218, 30, 155, 79, 49, 8, 191, 139, - 114, 94, 92, 220, 32, 73, 18, 50, 44, 18, - 28, 120, 37, 85, 8, 171, 20, 107, 236, 52, - 11, 196, 134, 212, 183, 77, 98, 200, 16, 94, - 69, 109, 244, 106, 214, 75, 225, 60, 94, 200, - 55, 49, 118, 59, 64, 156, 99, 153, 123, 212, - 26, 233, 246, 110, 185, 126, 0, 128, 99, 243, - 118, 106, 129, 48, 122, 59, 222, 129, 8, 122, - 40, 47, 182, 102, 209, 95, 177, 33, 94, 178, - 59, 83, 158, 224, 30, 200, 102, 227, 48, 204, - 11, 191, 195, 25, 249, 214, 157, 249, 251, 143, - 229, 55, 1, 77, 58, 215, 148, 126, 208, 104, - 103, 35, 18, 119, 241, 205, 80, 151, 132, 200, - 105, 114, 154, 228, 108, 91, 241, 194, 178, 230, - 6, 50, 126, 62, 211, 161, 90, 88, 11, 249, - 59, 137, 109, 149, 153, 122, 86, 54, 221, 95, - 39, 79, 162, 252, 217, 116, 97, 163, 54, 133, - 78, 79, 228, 90, 251, 39, 19, 235, 48, 179, - 26, 11, 37, 62, 209, 13, 83, 147, 58, 230, - 241, 192, 214, 243, 84, 208, 85, 222, 217, 168, - 212, 91, 223, 219, 235, 55, 190, 141, 26, 157, - 57, 205, 100, 55, 48, 224, 247, 157, 238, 131, - 192, 64, 166, 245, 25, 70, 138, 236, 137, 134, - 210, 183, 115, 103, 83, 195, 54, 135, 235, 246, - 168, 254, 91, 228, 91, 188, 144, 215, 45, 151, - 155, 190, 226, 112, 2, 192, 44, 153, 191, 168, - 231, 126, 194, 187, 14, 248, 8, 115, 134, 119, - 166, 183, 163, 128, 238, 189, 89, 141, 90, 46, - 150, 198, 9, 5, 151, 18, 53, 82, 189, 78, - 113, 184, 198, 57, 96, 69, 194, 108, 177, 229, - 37, 212, 180, 31, 209, 155, 109, 115, 2, 55, - 183, 179, 236, 84, 250, 243, 188, 184, 208, 246, - 125, 251, 197, 141, 133, 65, 174, 217, 50, 90, - 135, 179, 146, 20, 81, 72, 84, 159, 149, 39, - 199, 40, 2, 192, 29, 232, 245, 249, 110, 233, - 104, 80, 39, 62, 144, 109, 242, 116, 193, 242, - 23, 248, 223, 178, 56, 161, 153, 23, 90, 233, - 3, 61, 55, 176, 78, 156, 37, 41, 194, 133, - 189, 71, 108, 171, 0, 34, 157, 139, 153, 61, - 62, 144, 232, 187, 80, 159, 75, 112, 57, 49, - 56, 83, 58, 238, 13, 75, 8, 146, 11, 156, - 8, 26, 138, 181, 183, 232, 254, 126, 215, 22, - 50, 195, 18, 210, 20, 235, 243, 247, 27, 179, - 179, 213, 0, 144, 18, 125, 70, 235, 193, 195, - 238, 181, 175, 44, 67, 63, 40, 0, 110, 87, - 126, 151, 138, 127, 222, 75, 192, 11, 173, 6, - 94, 225, 174, 129, 174, 87, 194, 119, 143, 226, - 40, 92, 2, 144, 245, 82, 16, 32, 148, 199, - 76, 202, 46, 210, 4, 122, 222, 237, 169, 246, - 179, 83, 65, 65, 186, 175, 16, 149, 37, 199, - 242, 38, 192, 61, 245, 242, 141, 15, 176, 152, - 239, 55, 43, 244, 194, 99, 12, 108, 22, 40, - 207, 246, 163, 120, 84, 174, 132, 82, 134, 129, - 100, 145, 63, 87, 226, 138, 147, 69, 233, 22, - 158, 55, 240, 136, 137, 30, 178, 4, 105, 49, - 80, 96, 68, 195, 107, 121, 255, 31, 146, 245, - 217, 215, 245, 233, 175, 145, 201, 166, 166, 182, - 159, 25, 70, 58, 84, 165, 7, 159, 97, 117, - 209, 46, 213, 60, 124, 14, 122, 102, 208, 43, - 98, 62, 19, 45, 197, 206, 97, 238, 116, 68, - 149, 154, 3, 78, 245, 48, 243, 75, 96, 219, - 59, 228, 23, 102, 207, 62, 40, 161, 191, 191, - 206, 119, 204, 216, 28, 135, 30, 139, 243, 111, - 241, 1, 112, 152, 242, 234, 132, 203, 199, 13, - 194, 37, 100, 155, 40, 66, 255, 175, 174, 56, - 152, 122, 146, 132, 66, 55, 84, 75, 180, 176, - 207, 15, 225, 237, 146, 246, 182, 250, 148, 47, - 137, 224, 189, 28, 182, 145, 27, 103, 242, 98, - 83, 43, 172, 66, 191, 129, 214, 186, 235, 22, - 110, 196, 33, 19, 236, 68, 91, 90, 50, 180, - 36, 4, 115, 219, 2, 43, 252, 18, 22, 128, - 206, 158, 196, 183, 187, 76, 254, 132, 120, 65, - 131, 115, 181, 79, 33, 243, 218, 165, 173, 96, - 176, 229, 190, 151, 220, 110, 168, 77, 27, 229, - 47, 14, 64, 192, 66, 36, 239, 130, 51, 178, - 187, 190, 121, 230, 3, 19, 42, 156, 70, 171, - 127, 14, 127, 169, 98, 122, 20, 47, 227, 204, - 191, 65, 18, 66, 1, 174, 121, 196, 14, 56, - 69, 56, 212, 221, 1, 141, 237, 49, 5, 247, - 49, 49, 244, 27, 80, 134, 191, 8, 109, 240, - 180, 33, 127, 125, 149, 253, 79, 156, 82, 228, - 148, 204, 70, 243, 56, 102, 66, 157, 171, 33, - 190, 12, 133, 92, 226, 155, 234, 39, 161, 212, - 136, 50, 196, 26, 117, 139, 117, 191, 68, 132, - 92, 105, 161, 110, 41, 214, 243, 3, 155, 204, - 224, 29, 110, 109, 10, 102, 168, 236, 253, 195, - 106, 51, 197, 69, 135, 147, 26, 11, 172, 116, - 208, 66, 207, 180, 23, 141, 144, 93, 6, 208, - 74, 93, 184, 66, 154, 156, 127, 112, 54, 163, - 145, 164, 204, 71, 41, 163, 47, 211, 128, 186, - 98, 100, 38, 130, 56, 14, 65, 80, 12, 199, - 224, 85, 177, 151, 19, 92, 138, 233, 152, 107, - 139, 110, 29, 112, 69, 162, 213, 232, 148, 142, - 175, 24, 14, 64, 22, 76, 35, 196, 253, 219, - 229, 156, 238, 255, 250, 75, 104, 217, 221, 87, - 101, 188, 188, 238, 108, 112, 181, 49, 150, 245, - 232, 64, 221, 173, 234, 17, 240, 206, 194, 244, - 81, 13, 66, 145, 41, 171, 54, 111, 104, 194, - 134, 141, 42, 196, 239, 201, 160, 92, 130, 197, - 174, 68, 38, 195, 233, 202, 40, 234, 250, 208, - 220, 2, 212, 39, 162, 58, 129, 118, 117, 105, - 163, 190, 215, 199, 122, 8, 21, 199, 108, 139, - 237, 181, 211, 181, 115, 96, 134, 156, 149, 54, - 201, 107, 130, 125, 127, 240, 71, 50, 218, 146, - 80, 151, 172, 53, 206, 142, 36, 181, 184, 83, - 103, 31, 104, 133, 177, 145, 111, 119, 182, 149, - 119, 232, 80, 17, 119, 110, 126, 160, 101, 104, - 233, 237, 203, 81, 120, 50, 216, 241, 220, 88, - 189, 93, 235, 105, 119, 185, 40, 7, 209, 122, - 181, 86, 174, 200, 54, 42, 101, 145, 143, 227, - 123, 54, 100, 44, 199, 173, 216, 176, 113, 176, - 100, 124, 103, 17, 37, 117, 123, 203, 63, 115, - 20, 199, 128, 136, 39, 7, 237, 132, 86, 30, - 21, 106, 61, 182, 206, 182, 229, 253, 126, 127, - 233, 89, 229, 62, 84, 151, 148, 47, 86, 133, - 214, 182, 243, 16, 84, 79, 233, 76, 158, 63, - 132, 245, 225, 229, 173, 95, 202, 80, 38, 245, - 243, 13, 22, 48, 23, 66, 238, 138, 73, 231, - 104, 67, 70, 73, 130, 255, 158, 94, 97, 89, - 246, 89, 223, 37, 190, 56, 186, 69, 71, 177, - 242, 244, 28, 204, 111, 166, 180, 12, 202, 139, - 80, 195, 14, 119, 206, 135, 180, 227, 10, 162, - 197, 186, 235, 247, 158, 165, 89, 103, 133, 245, - 75, 129, 53, 72, 116, 241, 8, 78, 106, 99, - 54, 56, 187, 253, 103, 2, 176, 127, 196, 86, - 59, 199, 0, 40, 12, 208, 73, 164, 202, 73, - 60, 141, 253, 114, 42, 120, 14, 61, 133, 195, - 107, 161, 72, 201, 222, 21, 225, 101, 93, 5, - 32, 229, 137, 68, 184, 143, 71, 240, 248, 6, - 249, 152, 85, 212, 115, 111, 63, 26, 79, 14, - 11, 200, 248, 208, 215, 83, 49, 153, 79, 148, - 156, 144, 49, 1, 137, 198, 244, 244, 60, 67, - 220, 151, 43, 44, 155, 71, 70, 209, 87, 131, - 74, 193, 102, 1, 158, 241, 22, 116, 202, 37, - 122, 122, 54, 134, 186, 169, 112, 110, 172, 202, - 227, 20, 12, 175, 182, 107, 83, 20, 238, 171, - 215, 210, 56, 177, 96, 187, 189, 45, 51, 252, - 151, 220, 64, 134, 217, 122, 52, 148, 141, 222, - 1, 108, 211, 30, 141, 135, 194, 31, 240, 76, - 154, 230, 211, 251, 51, 199, 253, 49, 22, 86, - 99, 134, 69, 90, 109, 26, 44, 218, 96, 127, - 119, 22, 236, 144, 145, 55, 11, 136, 21, 37, - 91, 240, 117, 180, 188, 191, 78, 60, 173, 153, - 209, 25, 158, 198, 49, 186, 182, 87, 30, 176, - 139, 236, 245, 62, 5, 197, 182, 94, 199, 117, - 249, 52, 55, 170, 174, 235, 229, 212, 224, 176, - 50, 152, 40, 80, 59, 19, 242, 213, 217, 239, - 157, 231, 196, 59, 97, 56, 166, 108, 102, 163, - 245, 202, 83, 235, 99, 174, 187, 244, 187, 150, - 81, 175, 51, 75, 44, 99, 150, 63, 94, 42, - 30, 16, 141, 149, 172, 75, 41, 120, 189, 254, - 208, 248, 29, 143, 149, 85, 239, 254, 30, 33, - 182, 195, 55, 2, 26, 34, 34, 162, 57, 190, - 128, 94, 35, 217, 86, 189, 252, 38, 137, 101, - 147, 25, 58, 211, 180, 37, 242, 225, 198, 117, - 248, 252, 244, 124, 198, 211, 198, 173, 21, 210, - 68, 213, 63, 106, 7, 22, 18, 190, 165, 81, - 197, 123, 42, 180, 14, 39, 74, 64, 74, 41, - 133, 252, 77, 173, 0, 252, 239, 93, 123, 12, - 12, 22, 66, 201, 59, 129, 220, 61, 44, 202, - 32, 177, 249, 67, 211, 36, 31, 205, 209, 126, - 109, 216, 146, 209, 244, 199, 113, 226, 163, 54, - 49, 185, 0, 225, 32, 226, 107, 144, 197, 162, - 11, 217, 6, 47, 217, 3, 117, 64, 63, 40, - 31, 225, 15, 224, 60, 228, 32, 200, 128, 41, - 174, 196, 159, 205, 132, 250, 195, 4, 239, 92, - 36, 251, 52, 71, 242, 162, 196, 74, 137, 44, - 145, 114, 57, 17, 72, 191, 182, 243, 207, 74, - 26, 88, 170, 70, 121, 184, 31, 225, 33, 159, - 87, 84, 244, 74, 127, 163, 226, 77, 231, 182, - 182, 253, 59, 35, 4, 15, 136, 138, 234, 162, - 34, 214, 66, 160, 196, 175, 176, 103, 141, 124, - 144, 100, 21, 7, 204, 243, 160, 153, 175, 172, - 232, 175, 9, 190, 39, 35, 27, 203, 31, 94, - 200, 96, 148, 23, 207, 130, 96, 131, 213, 134, - 118, 235, 152, 144, 71, 216, 153, 18, 0, 70, - 207, 139, 44, 227, 78, 96, 175, 252, 206, 73, - 135, 221, 190, 74, 113, 42, 192, 230, 118, 100, - 209, 112, 235, 17, 186, 66, 71, 198, 224, 137, - 108, 226, 183, 245, 131, 141, 57, 161, 219, 97, - 35, 60, 165, 246, 196, 159, 94, 101, 56, 46, - 65, 129, 203, 160, 223, 217, 147, 61, 24, 32, - 43, 254, 64, 37, 166, 147, 96, 254, 227, 187, - 185, 134, 119, 207, 126, 163, 240, 73, 109, 17, - 176, 192, 223, 40, 116, 134, 67, 241, 112, 205, - 16, 43, 176, 118, 92, 14, 196, 148, 111, 88, - 83, 53, 13, 124, 216, 210, 196, 61, 173, 233, - 247, 33, 3, 161, 82, 147, 39, 108, 26, 171, - 11, 219, 162, 48, 64, 95, 80, 47, 102, 12, - 75, 25, 112, 143, 231, 60, 179, 76, 197, 215, - 30, 222, 218, 126, 36, 92, 184, 166, 231, 36, - 83, 131, 89, 69, 144, 225, 96, 59, 61, 139, - 113, 124, 39, 35, 244, 155, 243, 29, 10, 130, - 46, 90, 115, 250, 62, 21, 29, 33, 131, 11, - 55, 27, 66, 35, 129, 254, 30, 231, 164, 251, - 171, 123, 186, 53, 21, 67, 37, 182, 217, 73, - 40, 208, 203, 121, 60, 173, 117, 202, 235, 92, - 113, 62, 68, 173, 55, 88, 55, 37, 107, 81, - 160, 56, 160, 212, 226, 215, 202, 208, 147, 94, - 6, 102, 157, 249, 122, 197, 233, 101, 203, 199, - 144, 30, 125, 125, 125, 147, 75, 252, 238, 99, - 89, 80, 70, 166, 53, 66, 119, 200, 110, 62, - 145, 182, 111, 148, 6, 18, 27, 120, 136, 237, - 79, 78, 212, 79, 129, 184, 5, 105, 151, 120, - 95, 147, 164, 119, 23, 85, 243, 168, 205, 73, - 166, 12, 36, 241, 90, 224, 187, 24, 48, 171, - 250, 37, 155, 83, 84, 143, 220, 57, 106, 185, - 67, 175, 177, 21, 232, 90, 0, 58, 167, 53, - 222, 234, 163, 172, 204, 216, 7, 107, 64, 243, - 110, 43, 10, 129, 236, 19, 248, 57, 175, 103, - 158, 129, 244, 78, 80, 77, 231, 233, 117, 178, - 254, 183, 220, 249, 14, 5, 173, 88, 102, 130, - 179, 85, 201, 20, 153, 41, 212, 130, 55, 104, - 250, 147, 150, 83, 140, 27, 132, 26, 135, 102, - 69, 168, 134, 156, 182, 140, 3, 252, 43, 112, - 109, 86, 159, 60, 74, 157, 188, 37, 106, 95, - 156, 102, 12, 77, 102, 188, 63, 171, 173, 78, - 24, 251, 0, 234, 40, 239, 123, 62, 251, 60, - 44, 238, 98, 189, 159, 197, 9, 171, 180, 133, - 15, 47, 70, 179, 37, 219, 162, 0, 161, 147, - 98, 5, 65, 134, 4, 30, 250, 58, 209, 125, - 234, 143, 224, 171, 33, 92, 201, 35, 112, 127, - 254, 183, 67, 229, 111, 235, 43, 105, 247, 154, - 75, 164, 208, 222, 253, 143, 148, 204, 60, 115, - 154, 144, 1, 215, 235, 126, 61, 222, 13, 79, - 20, 150, 237, 33, 149, 104, 211, 248, 249, 163, - 83, 41, 197, 233, 51, 178, 249, 190, 123, 215, - 21, 183, 60, 171, 118, 166, 98, 160, 227, 161, - 78, 174, 176, 112, 109, 91, 126, 69, 183, 69, - 180, 148, 104, 53, 28, 31, 54, 162, 239, 210, - 197, 23, 207, 27, 18, 124, 112, 167, 184, 82, - 74, 165, 31, 157, 135, 157, 8, 39, 154, 247, - 240, 6, 117, 156, 75, 245, 90, 183, 89, 47, - 210, 190, 138, 148, 146, 66, 211, 203, 232, 204, - 131, 12, 104, 199, 46, 155, 49, 189, 212, 98, - 181, 246, 38, 5, 119, 15, 241, 227, 12, 17, - 80, 18, 123, 253, 149, 212, 106, 72, 23, 209, - 70, 189, 34, 206, 123, 240, 11, 142, 39, 129, - 254, 143, 211, 204, 224, 0, 240, 44, 66, 53, - 37, 74, 78, 195, 167, 162, 110, 118, 20, 116, - 243, 105, 50, 13, 162, 90, 144, 234, 137, 75, - 74, 211, 241, 207, 52, 119, 78, 158, 75, 135, - 14, 197, 97, 190, 240, 106, 64, 181, 240, 6, - 202, 13, 128, 43, 2, 232, 19, 180, 134, 52, - 197, 6, 239, 213, 231, 46, 123, 27, 86, 52, - 179, 18, 5, 192, 28, 14, 188, 223, 200, 50, - 86, 88, 142, 24, 157, 39, 113, 192, 117, 199, - 156, 97, 67, 184, 213, 10, 10, 96, 28, 122, - 49, 23, 242, 7, 167, 241, 159, 106, 12, 164, - 95, 120, 132, 34, 103, 104, 53, 227, 122, 210, - 129, 124, 76, 93, 162, 178, 116, 197, 131, 239, - 59, 7, 74, 8, 207, 38, 26, 222, 3, 160, - 151, 77, 219, 29, 50, 151, 203, 225, 83, 189, - 52, 33, 70, 36, 16, 67, 204, 130, 181, 138, - 117, 234, 21, 238, 209, 132, 223, 156, 206, 63, - 61, 251, 47, 0, 78, 133, 240, 12, 108, 116, - 54, 200, 141, 236, 150, 93, 207, 101, 39, 140, - 52, 9, 202, 175, 62, 74, 249, 131, 253, 31, - 111, 255, 85, 154, 132, 207, 54, 145, 112, 84, - 239, 161, 135, 254, 39, 92, 193, 173, 181, 125, - 75, 38, 26, 254, 90, 85, 196, 95, 187, 121, - 45, 90, 115, 210, 60, 18, 230, 245, 107, 19, - 104, 80, 183, 52, 45, 130, 222, 112, 195, 206, - 228, 137, 143, 38, 209, 141, 153, 121, 184, 145, - 138, 147, 11, 118, 134, 163, 120, 113, 114, 172, - 170, 138, 82, 128, 168, 168, 90, 218, 245, 102, - 254, 27, 204, 74, 49, 112, 107, 216, 163, 35, - 133, 79, 123, 128, 19, 173, 119, 203, 39, 118, - 16, 171, 54, 46, 32, 50, 73, 98, 171, 201, - 193, 231, 25, 24, 6, 35, 194, 61, 65, 208, - 77, 11, 95, 56, 202, 25, 16, 234, 231, 222, - 134, 212, 163, 132, 51, 105, 222, 207, 221, 206, - 45, 216, 104, 110, 134, 208, 22, 90, 136, 91, - 203, 187, 10, 2, 30, 120, 231, 0, 239, 66, - 178, 142, 173, 114, 177, 7, 207, 174, 188, 86, - 246, 96, 43, 240, 198, 100, 143, 19, 139, 103, - 189, 241, 193, 237, 43, 213, 234, 99, 144, 131, - 111, 136, 205, 166, 29, 153, 89, 85, 93, 15, - 249, 171, 212, 144, 14, 140, 138, 33, 147, 3, - 115, 105, 160, 55, 120, 157, 225, 6, 150, 190, - 137, 225, 253, 112, 170, 141, 47, 155, 185, 143, - 99, 23, 62, 238, 33, 204, 162, 160, 60, 146, - 162, 63, 51, 111, 56, 178, 245, 221, 165, 134, - 41, 39, 89, 77, 52, 180, 73, 4, 73, 7, - 46, 92, 247, 137, 243, 56, 214, 81, 125, 143, - 208, 132, 88, 50, 22, 77, 98, 184, 113, 175, - 150, 132, 97, 225, 115, 209, 127, 22, 128, 47, - 196, 195, 69, 35, 112, 254, 199, 68, 8, 24, - 9, 132, 116, 181, 220, 225, 188, 145, 65, 195, - 84, 207, 233, 36, 10, 42, 223, 85, 65, 144, - 122, 157, 48, 166, 100, 182, 41, 77, 213, 104, - 190, 17, 139, 125, 35, 35, 239, 214, 218, 25, - 48, 171, 142, 243, 254, 97, 132, 19, 116, 15, - 122, 165, 130, 43, 227, 251, 231, 145, 161, 239, - 227, 58, 68, 59, 89, 112, 219, 74, 217, 64, - 157, 57, 88, 58, 110, 105, 44, 66, 239, 108, - 170, 120, 121, 43, 82, 239, 236, 164, 177, 45, - 125, 31, 161, 25, 156, 163, 91, 179, 25, 224, - 202, 190, 110, 110, 242, 25, 117, 66, 30, 251, - 55, 218, 208, 26, 207, 190, 60, 15, 115, 213, - 38, 24, 246, 124, 41, 32, 195, 49, 234, 127, - 230, 8, 209, 160, 27, 158, 216, 219, 150, 39, - 117, 170, 9, 252, 74, 229, 39, 132, 129, 161, - 16, 109, 230, 95, 40, 174, 252, 110, 233, 186, - 145, 226, 159, 195, 60, 37, 102, 123, 236, 254, - 54, 178, 137, 83, 84, 164, 132, 75, 119, 118, - 242, 70, 102, 186, 27, 45, 190, 203, 158, 162, - 231, 224, 235, 238, 199, 67, 204, 106, 43, 137, - 200, 236, 105, 221, 81, 162, 251, 184, 222, 96, - 92, 89, 244, 85, 184, 37, 225, 12, 164, 7, - 185, 136, 117, 230, 255, 20, 191, 55, 117, 16, - 64, 26, 213, 249, 190, 21, 119, 14, 23, 110, - 141, 49, 153, 61, 60, 59, 155, 221, 167, 43, - 184, 71, 160, 69, 25, 91, 147, 96, 84, 37, - 243, 117, 191, 40, 196, 61, 81, 42, 214, 181, - 185, 101, 53, 78, 111, 159, 133, 221, 63, 56, - 21, 128, 240, 189, 13, 164, 78, 235, 137, 120, - 199, 239, 108, 109, 54, 159, 198, 208, 81, 97, - 144, 56, 219, 0, 129, 231, 151, 167, 155, 47, - 45, 192, 187, 198, 36, 98, 56, 198, 7, 85, - 32, 234, 160, 113, 223, 212, 195, 230, 40, 217, - 29, 28, 199, 87, 135, 38, 63, 140, 8, 147, - 133, 194, 176, 90, 191, 103, 9, 68, 174, 28, - 125, 251, 8, 235, 147, 93, 251, 175, 38, 197, - 244, 34, 10, 183, 145, 192, 18, 41, 198, 84, - 25, 181, 9, 116, 222, 200, 49, 60, 250, 124, - 78, 240, 122, 184, 54, 157, 191, 208, 5, 191, - 50, 238, 197, 248, 22, 251, 91, 95, 248, 54, - 54, 145, 1, 103, 10, 249, 115, 163, 84, 180, - 121, 200, 41, 59, 63, 82, 181, 167, 210, 44, - 16, 149, 112, 9, 22, 124, 73, 251, 128, 254, - 163, 105, 6, 32, 24, 105, 96, 140, 135, 127, - 242, 48, 160, 159, 162, 230, 255, 81, 221, 141, - 133, 183, 114, 63, 0, 109, 107, 16, 183, 208, - 107, 72, 1, 56, 94, 168, 97, 99, 204, 177, - 42, 211, 201, 63, 170, 87, 141, 176, 38, 59, - 215, 66, 205, 6, 157, 246, 134, 145, 190, 8, - 238, 241, 74, 137, 107, 127, 199, 236, 208, 193, - 189, 208, 102, 86, 20, 249, 210, 173, 227, 126, - 11, 53, 8, 231, 161, 189, 105, 191, 175, 38, - 100, 144, 127, 213, 201, 9, 220, 83, 243, 62, - 45, 51, 15, 62, 136, 182, 95, 110, 41, 111, - 218, 184, 24, 25, 47, 100, 140, 55, 220, 23, - 69, 70, 160, 70, 204, 97, 113, 93, 5, 5, - 137, 194, 31, 100, 80, 49, 140, 140, 164, 42, - 49, 183, 239, 208, 83, 246, 147, 64, 47, 101, - 12, 97, 80, 46, 142, 119, 197, 212, 111, 132, - 107, 163, 138, 226, 209, 62, 252, 3, 173, 58, - 219, 205, 103, 160, 210, 165, 2, 80, 244, 241, - 203, 242, 139, 41, 125, 195, 232, 48, 136, 155, - 16, 33, 209, 194, 103, 43, 39, 86, 99, 105, - 28, 16, 106, 154, 167, 197, 141, 194, 74, 98, - 27, 19, 163, 32, 217, 223, 50, 81, 238, 118, - 204, 41, 49, 154, 222, 210, 30, 244, 58, 84, - 192, 73, 129, 61, 54, 214, 10, 155, 31, 167, - 74, 167, 191, 144, 74, 106, 236, 83, 213, 215, - 19, 98, 172, 212, 141, 20, 104, 223, 157, 175, - 118, 170, 144, 7, 92, 194, 239, 197, 148, 118, - 46, 162, 151, 210, 120, 130, 170, 103, 115, 123, - 21, 84, 68, 33, 40, 21, 98, 22, 209, 141, - 203, 37, 28, 79, 251, 103, 7, 214, 72, 35, - 12, 154, 68, 111, 3, 216, 52, 60, 147, 178, - 191, 195, 181, 64, 217, 233, 158, 106, 55, 48, - 254, 39, 15, 220, 228, 42, 190, 173, 153, 50, - 10, 67, 71, 151, 142, 152, 49, 134, 171, 222, - 184, 155, 124, 68, 179, 89, 164, 132, 113, 192, - 59, 37, 103, 112, 122, 165, 7, 112, 116, 160, - 108, 92, 30, 88, 243, 239, 69, 10, 123, 3, - 100, 185, 155, 82, 155, 79, 96, 33, 106, 89, - 132, 160, 231, 171, 128, 145, 129, 197, 182, 186, - 233, 17, 44, 8, 29, 210, 167, 47, 135, 221, - 12, 72, 228, 249, 147, 9, 237, 144, 113, 17, - 145, 55, 94, 33, 91, 65, 4, 104, 72, 30, - 245, 161, 148, 148, 75, 118, 156, 244, 104, 99, - 38, 154, 76, 159, 176, 78, 24, 56, 32, 213, - 107, 186, 129, 0, 4, 73, 236, 124, 117, 98, - 196, 163, 152, 77, 186, 220, 114, 26, 206, 18, - 129, 169, 189, 243, 241, 184, 70, 22, 27, 104, - 221, 45, 248, 131, 62, 203, 18, 94, 183, 60, - 203, 232, 185, 49, 248, 85, 74, 207, 72, 94, - 116, 133, 128, 48, 42, 103, 77, 77, 248, 94, - 79, 0, 205, 167, 58, 223, 127, 143, 96, 14, - 238, 84, 111, 127, 73, 22, 161, 185, 63, 88, - 20, 9, 191, 102, 43, 228, 131, 217, 215, 22, - 40, 203, 138, 254, 204, 191, 74, 5, 111, 162, - 95, 238, 235, 124, 193, 193, 122, 72, 144, 211, - 110, 55, 105, 60, 112, 105, 172, 138, 59, 73, - 127, 163, 255, 113, 253, 208, 114, 94, 244, 38, - 160, 197, 74, 132, 4, 40, 18, 120, 19, 25, - 117, 221, 239, 2, 114, 95, 74, 63, 242, 241, - 155, 237, 167, 165, 41, 56, 58, 162, 117, 174, - 208, 44, 38, 102, 146, 97, 66, 203, 199, 141, - 169, 128, 124, 165, 119, 43, 222, 129, 107, 199, - 94, 234, 16, 128, 118, 98, 44, 3, 184, 116, - 220, 66, 39, 182, 237, 233, 134, 163, 74, 224, - 210, 247, 124, 122, 0, 206, 93, 141, 108, 120, - 171, 2, 221, 161, 5, 176, 116, 71, 186, 251, - 73, 158, 18, 148, 35, 206, 141, 79, 158, 215, - 250, 55, 155, 64, 8, 108, 162, 175, 139, 81, - 94, 42, 49, 167, 126, 26, 188, 110, 234, 125, - 82, 22, 232, 246, 102, 133, 156, 48, 82, 113, - 135, 195, 98, 64, 194, 35, 25, 211, 190, 205, - 90, 66, 188, 189, 151, 129, 53, 108, 241, 4, - 49, 72, 222, 111, 39, 34, 251, 229, 53, 43, - 182, 72, 81, 220, 38, 219, 45, 156, 87, 4, - 79, 49, 0, 174, 12, 51, 42, 146, 47, 66, - 46, 203, 179, 198, 119, 176, 143, 89, 246, 99, - 180, 149, 57, 254, 153, 79, 40, 166, 90, 159, - 107, 73, 236, 248, 83, 245, 171, 128, 61, 84, - 143, 122, 208, 217, 215, 220, 228, 61, 145, 8, - 76, 181, 177, 2, 186, 143, 17, 239, 6, 172, - 187, 0, 171, 9, 154, 17, 146, 38, 244, 0, - 9, 79, 129, 215, 216, 153, 8, 201, 168, 239, - 160, 32, 12, 152, 17, 247, 127, 73, 217, 253, - 206, 77, 130, 225, 70, 72, 48, 172, 197, 244, - 52, 155, 162, 223, 96, 46, 116, 227, 165, 163, - 114, 205, 197, 191, 255, 151, 168, 219, 71, 221, - 238, 160, 229, 235, 36, 193, 48, 122, 76, 165, - 144, 245, 7, 241, 208, 40, 103, 68, 180, 24, - 180, 101, 159, 148, 71, 48, 116, 138, 234, 107, - 42, 196, 88, 89, 218, 82, 214, 123, 235, 133, - 37, 137, 174, 49, 74, 124, 10, 86, 124, 14, - 217, 140, 52, 29, 190, 75, 54, 4, 78, 210, - 92, 243, 158, 88, 40, 252, 178, 241, 181, 209, - 10, 40, 172, 193, 91, 104, 47, 85, 0, 224, - 61, 131, 64, 74, 165, 138, 14, 106, 146, 99, - 34, 53, 155, 123, 232, 191, 131, 38, 72, 181, - 30, 150, 105, 113, 55, 216, 240, 50, 147, 149, - 38, 220, 77, 112, 224, 54, 26, 206, 145, 244, - 251, 141, 156, 55, 209, 113, 29, 239, 147, 171, - 83, 83, 151, 107, 208, 249, 231, 163, 113, 191, - 77, 147, 39, 38, 227, 57, 194, 140, 1, 160, - 125, 21, 39, 210, 184, 154, 31, 60, 193, 203, - 237, 238, 90, 86, 76, 182, 160, 198, 4, 70, - 143, 176, 86, 58, 176, 130, 90, 180, 174, 195, - 174, 97, 134, 61, 141, 40, 8, 244, 142, 0, - 246, 244, 145, 202, 92, 218, 51, 136, 8, 68, - 158, 94, 97, 9, 53, 105, 231, 47, 229, 182, - 47, 241, 134, 36, 219, 106, 26, 68, 94, 233, - 132, 39, 57, 22, 96, 227, 157, 63, 44, 118, - 149, 69, 185, 253, 153, 98, 51, 103, 231, 27, - 131, 104, 218, 146, 168, 155, 243, 59, 166, 115, - 27, 7, 62, 202, 234, 176, 187, 79, 51, 217, - 123, 212, 115, 236, 237, 252, 180, 158, 133, 220, - 66, 91, 73, 245, 224, 241, 182, 204, 148, 201, - 161, 118, 0, 50, 74, 21, 195, 148, 245, 22, - 79, 239, 212, 85, 180, 49, 219, 20, 102, 7, - 181, 88, 231, 169, 166, 151, 212, 254, 64, 169, - 43, 5, 88, 86, 149, 33, 152, 222, 171, 169, - 170, 92, 249, 220, 110, 15, 6, 91, 176, 90, - 236, 43, 1, 139, 254, 245, 244, 205, 66, 232, - 31, 138, 152, 168, 174, 251, 57, 100, 107, 122, - 141, 192, 228, 191, 77, 134, 119, 176, 0, 230, - 188, 55, 108, 59, 2, 129, 108, 5, 12, 8, - 157, 193, 160, 55, 224, 76, 224, 220, 4, 28, - 235, 244, 47, 184, 1, 142, 179, 204, 81, 117, - 59, 16, 194, 0, 239, 234, 40, 225, 161, 245, - 125, 201, 221, 178, 81, 74, 113, 148, 216, 251, - 136, 181, 5, 27, 35, 110, 200, 199, 4, 17, - 237, 107, 220, 196, 247, 80, 198, 165, 151, 24, - 96, 34, 243, 42, 121, 171, 115, 52, 17, 110, - 226, 244, 44, 8, 174, 156, 110, 254, 176, 114, - 249, 24, 204, 120, 188, 213, 136, 194, 85, 92, - 11, 218, 230, 39, 131, 164, 76, 49, 174, 66, - 233, 148, 43, 107, 46, 72, 178, 171, 219, 220, - 26, 38, 113, 140, 79, 45, 141, 160, 250, 56, - 193, 229, 183, 218, 212, 237, 213, 102, 37, 37, - 222, 63, 235, 4, 234, 12, 203, 110, 198, 79, - 82, 161, 126, 232, 132, 222, 4, 144, 102, 209, - 68, 222, 83, 4, 146, 159, 184, 178, 157, 28, - 138, 195, 152, 248, 92, 40, 247, 209, 25, 210, - 146, 168, 187, 140, 239, 103, 117, 178, 223, 210, - 217, 146, 187, 120, 42, 206, 87, 56, 151, 17, - 26, 131, 187, 117, 59, 62, 53, 248, 127, 16, - 249, 124, 231, 53, 194, 88, 93, 20, 53, 215, - 248, 101, 144, 81, 5, 30, 39, 61, 29, 45, - 225, 114, 43, 10, 127, 170, 69, 147, 83, 12, - 31, 95, 77, 116, 249, 71, 95, 113, 17, 207, - 226, 203, 232, 160, 202, 172, 250, 253, 1, 56, - 85, 208, 218, 28, 85, 229, 143, 173, 3, 194, - 18, 23, 215, 26, 58, 218, 12, 229, 85, 13, - 35, 199, 65, 79, 219, 141, 146, 138, 64, 13, - 221, 172, 43, 4, 0, 80, 208, 166, 83, 206, - 21, 107, 253, 150, 232, 104, 205, 48, 51, 220, - 87, 92, 164, 231, 187, 213, 161, 71, 1, 207, - 37, 98, 73, 162, 87, 242, 233, 171, 190, 62, - 255, 88, 124, 73, 10, 179, 66, 100, 70, 83, - 64, 195, 225, 210, 150, 47, 92, 251, 218, 173, - 9, 186, 208, 20, 144, 86, 167, 175, 13, 48, - 71, 80, 187, 154, 188, 78, 146, 13, 191, 23, - 181, 18, 75, 205, 45, 159, 27, 206, 52, 124, - 90, 44, 10, 102, 125, 104, 203, 117, 213, 255, - 177, 208, 90, 56, 84, 251, 4, 113, 92, 73, - 189, 22, 179, 204, 122, 136, 15, 237, 157, 241, - 95, 161, 197, 224, 110, 30, 6, 8, 104, 195, - 162, 247, 186, 30, 78, 22, 87, 98, 26, 31, - 145, 91, 53, 214, 0, 255, 248, 103, 246, 81, - 243, 110, 115, 157, 67, 97, 245, 140, 79, 107, - 157, 38, 38, 11, 168, 67, 121, 166, 232, 156, - 34, 236, 143, 144, 149, 116, 238, 222, 240, 12, - 166, 251, 231, 14, 47, 247, 58, 196, 78, 106, - 165, 111, 45, 238, 125, 66, 123, 156, 56, 223, - 187, 30, 75, 18, 1, 85, 50, 92, 134, 191, - 37, 108, 240, 12, 170, 20, 145, 58, 24, 178, - 125, 140, 181, 13, 84, 107, 171, 33, 160, 35, - 229, 210, 237, 8, 239, 24, 146, 65, 28, 195, - 111, 148, 86, 116, 253, 29, 103, 111, 236, 223, - 90, 164, 11, 175, 223, 27, 207, 237, 177, 209, - 154, 103, 224, 230, 254, 131, 214, 53, 74, 58, - 62, 96, 218, 88, 19, 42, 96, 10, 136, 87, - 234, 200, 110, 240, 191, 171, 248, 124, 109, 147, - 235, 6, 70, 150, 72, 91, 133, 55, 170, 107, - 157, 164, 134, 151, 211, 90, 169, 163, 144, 173, - 248, 139, 220, 174, 233, 41, 55, 137, 5, 153, - 63, 139, 229, 102, 55, 250, 211, 115, 107, 140, - 15, 46, 32, 3, 9, 166, 61, 21, 168, 129, - 124, 84, 210, 198, 165, 147, 250, 55, 30, 96, - 238, 221, 28, 255, 0, 228, 78, 112, 27, 174, - 42, 3, 34, 246, 168, 146, 52, 223, 142, 132, - 5, 126, 97, 218, 174, 67, 223, 213, 115, 68, - 49, 231, 65, 53, 191, 111, 151, 210, 47, 59, - 197, 227, 91, 205, 81, 213, 198, 35, 228, 0, - 22, 77, 112, 39, 113, 201, 17, 163, 18, 154, - 223, 243, 28, 231, 65, 53, 6, 22, 36, 14, - 241, 220, 171, 186, 63, 61, 163, 2, 232, 210, - 7, 1, 129, 127, 156, 181, 54, 39, 113, 31, - 165, 37, 181, 24, 203, 52, 129, 66, 249, 132, - 97, 83, 87, 153, 144, 132, 139, 88, 69, 103, - 171, 105, 214, 96, 2, 166, 143, 167, 82, 250, - 185, 168, 160, 108, 96, 83, 0, 2, 142, 157, - 246, 28, 61, 19, 98, 39, 74, 232, 110, 104, - 171, 105, 90, 208, 197, 137, 42, 146, 251, 148, - 171, 234, 48, 99, 99, 120, 52, 146, 112, 136, - 139, 255, 202, 243, 203, 188, 141, 221, 41, 155, - 119, 142, 126, 146, 187, 189, 20, 89, 30, 160, - 189, 121, 8, 105, 28, 143, 72, 239, 96, 158, - 242, 208, 108, 177, 144, 158, 107, 42, 39, 196, - 137, 65, 249, 102, 156, 117, 139, 205, 102, 154, - 88, 198, 121, 253, 18, 49, 133, 111, 21, 203, - 171, 222, 46, 71, 96, 113, 107, 106, 21, 67, - 194, 164, 68, 249, 65, 74, 181, 14, 20, 163, - 141, 33, 247, 185, 23, 121, 120, 111, 197, 79, - 92, 122, 101, 3, 33, 71, 120, 213, 172, 147, - 120, 15, 110, 204, 157, 30, 215, 239, 118, 228, - 125, 174, 66, 245, 161, 54, 113, 209, 221, 50, - 204, 97, 208, 145, 163, 161, 87, 92, 134, 229, - 20, 192, 150, 181, 206, 195, 235, 8, 244, 34, - 71, 160, 56, 166, 91, 104, 242, 110, 134, 222, - 89, 1, 4, 37, 188, 18, 140, 218, 40, 143, - 228, 236, 0, 139, 15, 243, 176, 175, 172, 202, - 116, 19, 5, 254, 201, 173, 155, 135, 81, 67, - 198, 224, 55, 247, 138, 164, 138, 166, 40, 244, - 23, 134, 61, 236, 137, 232, 98, 241, 251, 156, - 34, 174, 21, 159, 30, 212, 174, 71, 162, 34, - 133, 47, 219, 100, 10, 149, 245, 237, 145, 248, - 203, 112, 218, 44, 106, 141, 130, 175, 113, 140, - 140, 210, 219, 137, 11, 240, 195, 247, 181, 39, - 211, 67, 243, 123, 149, 126, 1, 199, 67, 220, - 19, 180, 108, 128, 223, 84, 46, 202, 109, 141, - 28, 246, 74, 235, 67, 220, 220, 238, 31, 223, - 162, 226, 16, 218, 197, 132, 230, 118, 27, 101, - 27, 111, 89, 221, 182, 183, 43, 215, 170, 129, - 211, 208, 50, 90, 246, 117, 95, 153, 41, 221, - 184, 241, 131, 144, 251, 141, 2, 72, 231, 240, - 165, 158, 138, 170, 21, 63, 106, 67, 83, 149, - 159, 114, 172, 75, 6, 56, 77, 70, 174, 122, - 200, 106, 154, 12, 86, 82, 92, 20, 196, 9, - 205, 170, 75, 120, 42, 4, 57, 66, 40, 215, - 115, 234, 229, 103, 65, 48, 78, 161, 98, 155, - 84, 197, 211, 143, 148, 83, 80, 136, 58, 212, - 90, 35, 216, 155, 124, 10, 221, 154, 143, 151, - 160, 20, 144, 58, 89, 244, 148, 255, 63, 55, - 146, 68, 200, 13, 227, 138, 105, 207, 127, 117, - 87, 133, 204, 132, 17, 30, 157, 96, 155, 94, - 101, 92, 189, 63, 231, 177, 12, 196, 181, 52, - 15, 204, 144, 253, 233, 168, 142, 98, 69, 123, - 179, 48, 195, 124, 122, 228, 203, 255, 228, 127, - 129, 57, 173, 54, 237, 120, 119, 42, 68, 174, - 244, 13, 154, 17, 131, 245, 65, 46, 109, 205, - 235, 156, 13, 115, 60, 144, 121, 233, 173, 138, - 53, 129, 41, 45, 225, 106, 135, 195, 112, 75, - 79, 153, 214, 119, 67, 19, 129, 56, 245, 23, - 99, 218, 80, 221, 9, 180, 43, 197, 16, 188, - 158, 121, 25, 248, 117, 13, 161, 227, 68, 203, - 60, 144, 205, 58, 36, 93, 165, 180, 13, 44, - 101, 88, 115, 144, 113, 139, 210, 176, 244, 219, - 199, 160, 19, 245, 254, 23, 93, 215, 215, 136, - 3, 10, 134, 78, 11, 144, 90, 235, 89, 8, - 138, 62, 147, 117, 77, 69, 117, 49, 76, 190, - 230, 188, 92, 180, 85, 171, 29, 176, 144, 249, - 165, 108, 177, 196, 165, 220, 16, 227, 93, 157, - 213, 126, 110, 71, 17, 101, 54, 115, 158, 178, - 137, 234, 23, 222, 220, 18, 64, 41, 85, 59, - 235, 13, 19, 34, 98, 103, 67, 102, 165, 112, - 100, 138, 180, 249, 140, 213, 10, 81, 144, 225, - 247, 210, 150, 213, 215, 236, 210, 212, 226, 59, - 195, 164, 14, 143, 27, 218, 190, 182, 242, 244, - 15, 72, 23, 23, 198, 177, 172, 111, 107, 226, - 171, 114, 196, 237, 8, 250, 202, 135, 117, 38, - 64, 29, 12, 117, 150, 38, 28, 97, 17, 200, - 18, 218, 88, 53, 55, 147, 31, 236, 202, 209, - 3, 162, 217, 110, 175, 169, 94, 3, 236, 224, - 83, 13, 118, 173, 235, 135, 25, 172, 184, 2, - 196, 115, 87, 165, 36, 172, 40, 231, 135, 197, - 233, 109, 237, 51, 185, 136, 93, 194, 205, 159, - 192, 115, 208, 127, 180, 26, 154, 22, 73, 128, - 41, 42, 84, 102, 169, 79, 150, 78, 198, 211, - 187, 87, 80, 127, 53, 142, 74, 34, 123, 186, - 39, 63, 205, 198, 218, 51, 135, 39, 29, 3, - 74, 187, 8, 63, 19, 73, 114, 18, 61, 207, - 21, 62, 27, 49, 101, 88, 107, 191, 11, 144, - 80, 34, 61, 108, 160, 192, 229, 52, 38, 198, - 42, 147, 80, 59, 101, 213, 106, 131, 244, 24, - 40, 9, 154, 84, 57, 86, 195, 36, 184, 73, - 161, 198, 133, 206, 25, 224, 65, 25, 176, 197, - 149, 224, 31, 63, 73, 178, 19, 78, 96, 191, - 214, 174, 71, 26, 239, 104, 154, 149, 99, 166, - 22, 62, 39, 9, 72, 246, 168, 231, 213, 124, - 60, 90, 213, 155, 24, 162, 227, 149, 182, 254, - 28, 81, 136, 167, 228, 103, 35, 52, 247, 31, - 187, 117, 134, 73, 184, 148, 171, 255, 156, 53, - 119, 229, 27, 221, 232, 89, 12, 150, 27, 16, - 106, 221, 233, 171, 5, 194, 7, 24, 247, 70, - 146, 39, 63, 212, 149, 71, 97, 223, 162, 155, - 35, 37, 220, 149, 217, 116, 117, 218, 24, 124, - 166, 225, 50, 92, 149, 25, 137, 164, 122, 234, - 12, 178, 33, 32, 203, 170, 79, 128, 160, 137, - 184, 51, 228, 170, 5, 86, 91, 216, 222, 29, - 180, 122, 246, 8, 26, 214, 146, 14, 3, 214, - 164, 25, 88, 158, 154, 30, 32, 194, 177, 141, - 241, 53, 190, 118, 239, 216, 91, 58, 200, 241, - 171, 176, 94, 147, 93, 188, 225, 226, 208, 212, - 189, 132, 206, 106, 235, 84, 15, 96, 53, 71, - 238, 30, 216, 42, 107, 208, 133, 199, 80, 89, - 220, 146, 130, 140, 182, 180, 123, 192, 21, 151, - 206, 171, 47, 98, 62, 102, 126, 61, 78, 15, - 130, 234, 196, 55, 59, 126, 233, 206, 239, 70, - 0, 144, 238, 244, 39, 230, 91, 189, 215, 227, - 212, 239, 253, 227, 55, 51, 181, 32, 166, 171, - 75, 241, 116, 84, 224, 177, 134, 152, 234, 227, - 254, 235, 56, 95, 239, 175, 212, 106, 230, 24, - 85, 158, 6, 193, 84, 107, 12, 63, 112, 121, - 73, 238, 210, 180, 248, 149, 70, 180, 63, 101, - 243, 227, 64, 191, 205, 49, 66, 101, 54, 150, - 249, 14, 182, 234, 127, 156, 55, 110, 44, 138, - 81, 244, 98, 133, 134, 0, 25, 234, 45, 26, - 156, 36, 61, 44, 199, 208, 197, 9, 80, 37, - 96, 195, 31, 119, 162, 15, 32, 69, 165, 156, - 93, 167, 89, 146, 166, 148, 36, 95, 184, 181, - 58, 12, 142, 169, 13, 172, 242, 39, 27, 141, - 230, 100, 89, 106, 41, 178, 57, 116, 198, 199, - 158, 225, 175, 29, 41, 71, 91, 18, 166, 144, - 23, 246, 160, 9, 205, 212, 135, 140, 160, 203, - 158, 252, 119, 202, 17, 179, 99, 241, 119, 126, - 190, 131, 124, 86, 234, 185, 13, 81, 251, 151, - 45, 220, 43, 50, 143, 214, 156, 96, 30, 34, - 121, 96, 231, 17, 82, 44, 242, 153, 82, 101, - 70, 21, 101, 151, 29, 245, 25, 33, 119, 114, - 140, 255, 188, 26, 113, 180, 161, 105, 189, 73, - 18, 58, 187, 11, 21, 238, 70, 27, 23, 176, - 4, 81, 237, 235, 52, 133, 191, 188, 161, 200, - 81, 156, 45, 92, 150, 255, 212, 111, 104, 121, - 47, 223, 161, 205, 230, 129, 43, 189, 206, 213, - 247, 59, 125, 81, 19, 48, 195, 74, 13, 176, - 44, 162, 53, 14, 249, 154, 235, 105, 246, 175, - 224, 2, 213, 112, 241, 52, 11, 230, 42, 16, - 191, 251, 216, 207, 221, 0, 59, 27, 103, 54, - 55, 114, 128, 121, 53, 170, 42, 142, 175, 154, - 30, 98, 222, 63, 12, 12, 234, 75, 65, 78, - 253, 102, 1, 148, 172, 5, 185, 126, 214, 19, - 182, 28, 241, 233, 240, 212, 188, 216, 14, 156, - 185, 121, 98, 181, 109, 96, 128, 158, 85, 100, - 149, 176, 105, 51, 7, 32, 137, 204, 61, 205, - 213, 143, 236, 171, 12, 199, 60, 29, 41, 70, - 253, 115, 212, 236, 177, 31, 198, 224, 173, 0, - 143, 219, 164, 188, 138, 152, 242, 188, 60, 130, - 119, 219, 199, 168, 180, 201, 170, 126, 171, 127, - 43, 134, 145, 225, 103, 68, 251, 59, 184, 38, - 123, 238, 216, 198, 223, 198, 216, 242, 95, 65, - 5, 123, 23, 79, 205, 158, 13, 144, 245, 252, - 91, 62, 67, 127, 184, 136, 190, 65, 26, 38, - 50, 173, 213, 204, 73, 230, 31, 158, 46, 242, - 216, 106, 47, 74, 190, 109, 248, 102, 129, 66, - 168, 201, 27, 80, 12, 186, 142, 204, 164, 236, - 249, 213, 136, 90, 108, 226, 157, 0, 232, 139, - 64, 236, 120, 79, 64, 36, 160, 81, 63, 98, - 53, 233, 236, 74, 194, 230, 29, 179, 82, 233, - 220, 234, 163, 185, 72, 17, 205, 22, 135, 174, - 65, 185, 36, 95, 150, 133, 196, 105, 56, 84, - 150, 232, 89, 238, 222, 46, 81, 71, 93, 8, - 236, 54, 211, 158, 247, 216, 182, 44, 169, 49, - 195, 235, 90, 174, 41, 60, 106, 213, 55, 8, - 133, 229, 151, 35, 107, 175, 19, 74, 113, 52, - 208, 32, 99, 5, 253, 53, 122, 230, 64, 38, - 95, 170, 121, 164, 152, 151, 210, 57, 177, 56, - 250, 141, 226, 10, 31, 133, 5, 221, 28, 61, - 56, 227, 159, 178, 57, 222, 183, 47, 189, 123, - 16, 221, 73, 30, 196, 252, 169, 92, 124, 131, - 240, 1, 113, 199, 44, 176, 122, 56, 210, 11, - 231, 186, 205, 125, 94, 184, 255, 155, 219, 126, - 124, 99, 62, 202, 37, 66, 188, 120, 52, 93, - 192, 96, 148, 121, 197, 66, 3, 194, 167, 195, - 81, 224, 181, 209, 65, 200, 176, 219, 251, 222, - 231, 191, 252, 14, 244, 226, 194, 59, 214, 172, - 16, 101, 79, 17, 10, 13, 121, 38, 191, 158, - 137, 115, 255, 95, 170, 69, 138, 15, 107, 3, - 232, 100, 113, 142, 181, 76, 232, 101, 237, 177, - 230, 19, 130, 90, 120, 244, 212, 116, 31, 120, - 204, 93, 1, 189, 202, 242, 148, 188, 126, 168, - 37, 17, 48, 61, 48, 147, 44, 180, 92, 45, - 246, 116, 251, 1, 44, 178, 2, 11, 40, 248, - 87, 217, 61, 91, 33, 73, 223, 24, 181, 20, - 203, 102, 224, 164, 138, 17, 39, 59, 157, 216, - 101, 69, 153, 34, 215, 5, 191, 161, 135, 86, - 29, 80, 115, 66, 141, 53, 131, 3, 92, 123, - 216, 94, 92, 171, 156, 254, 141, 10, 218, 76, - 15, 32, 71, 153, 87, 185, 248, 173, 183, 55, - 74, 205, 147, 31, 241, 75, 142, 113, 100, 8, - 213, 165, 1, 252, 84, 123, 40, 167, 56, 86, - 5, 5, 123, 166, 100, 86, 61, 221, 254, 8, - 95, 5, 189, 183, 208, 155, 102, 139, 90, 158, - 213, 109, 151, 230, 104, 98, 14, 14, 246, 104, - 71, 111, 186, 168, 131, 38, 22, 90, 135, 155, - 228, 24, 64, 84, 68, 65, 58, 111, 118, 217, - 44, 211, 123, 89, 10, 35, 13, 140, 79, 148, - 198, 84, 36, 73, 222, 182, 217, 111, 132, 154, - 8, 43, 255, 71, 92, 190, 37, 29, 19, 170, - 10, 200, 207, 165, 246, 214, 38, 225, 19, 195, - 133, 250, 48, 206, 131, 101, 227, 115, 178, 188, - 219, 202, 201, 92, 210, 181, 187, 61, 193, 215, - 152, 243, 189, 254, 155, 198, 7, 146, 216, 243, - 237, 248, 177, 183, 175, 83, 225, 243, 136, 223, - 179, 53, 242, 225, 185, 112, 23, 169, 86, 165, - 216, 194, 184, 124, 61, 207, 144, 88, 220, 236, - 56, 86, 184, 187, 93, 15, 245, 31, 93, 180, - 28, 5, 217, 129, 140, 209, 218, 180, 225, 69, - 93, 44, 194, 70, 143, 27, 17, 247, 193, 243, - 201, 186, 170, 184, 38, 217, 239, 52, 170, 47, - 49, 241, 104, 113, 247, 74, 146, 252, 24, 223, - 148, 41, 203, 171, 207, 198, 92, 164, 221, 53, - 114, 177, 184, 3, 5, 251, 40, 86, 152, 180, - 18, 68, 103, 244, 241, 202, 101, 55, 56, 16, - 112, 165, 252, 140, 27, 248, 227, 34, 149, 60, - 8, 221, 131, 144, 237, 5, 8, 34, 93, 152, - 171, 135, 96, 75, 87, 230, 108, 169, 46, 112, - 74, 228, 14, 230, 164, 61, 196, 183, 213, 151, - 248, 51, 198, 70, 130, 236, 102, 174, 158, 97, - 131, 85, 227, 90, 54, 33, 62, 157, 19, 226, - 207, 250, 129, 200, 94, 181, 81, 212, 33, 210, - 178, 253, 31, 88, 120, 157, 168, 23, 21, 118, - 65, 72, 132, 139, 10, 234, 175, 89, 147, 217, - 112, 9, 85, 236, 75, 165, 108, 140, 165, 144, - 149, 194, 194, 242, 86, 89, 253, 163, 25, 148, - 104, 164, 222, 79, 44, 20, 143, 237, 122, 240, - 21, 188, 173, 161, 110, 194, 92, 252, 33, 131, - 52, 190, 78, 95, 217, 37, 2, 93, 251, 105, - 88, 249, 49, 234, 114, 49, 226, 218, 132, 237, - 36, 49, 154, 205, 98, 179, 131, 242, 145, 170, - 218, 254, 206, 93, 200, 119, 243, 129, 11, 34, - 93, 51, 150, 75, 129, 188, 135, 255, 142, 103, - 216, 255, 98, 118, 164, 7, 54, 107, 172, 201, - 129, 23, 168, 87, 174, 12, 40, 101, 124, 214, - 132, 48, 112, 76, 55, 86, 227, 34, 162, 181, - 95, 134, 12, 140, 136, 233, 120, 16, 243, 153, - 159, 94, 127, 128, 104, 23, 50, 157, 158, 114, - 107, 163, 253, 35, 244, 140, 7, 192, 29, 161, - 26, 48, 153, 136, 186, 132, 163, 113, 203, 189, - 50, 135, 181, 91, 71, 49, 60, 127, 53, 11, - 205, 56, 19, 71, 20, 188, 97, 39, 133, 191, - 200, 216, 231, 38, 120, 39, 12, 202, 32, 103, - 87, 113, 0, 26, 62, 172, 250, 18, 186, 161, - 84, 46, 70, 232, 60, 80, 45, 35, 121, 131, - 102, 14, 26, 250, 235, 84, 224, 41, 122, 11, - 47, 205, 153, 106, 188, 110, 76, 208, 243, 65, - 80, 214, 10, 33, 206, 187, 248, 145, 193, 31, - 89, 155, 102, 185, 69, 41, 164, 207, 180, 83, - 195, 248, 151, 30, 84, 147, 14, 236, 241, 20, - 31, 133, 205, 1, 226, 230, 143, 6, 196, 239, - 202, 37, 60, 212, 34, 251, 191, 220, 51, 134, - 185, 148, 142, 103, 191, 222, 104, 13, 211, 108, - 150, 137, 12, 42, 175, 188, 26, 180, 12, 139, - 251, 72, 227, 23, 89, 14, 34, 235, 159, 167, - 163, 138, 227, 72, 95, 37, 121, 157, 68, 219, - 138, 218, 47, 73, 7, 38, 177, 103, 152, 172, - 163, 134, 227, 94, 109, 13, 242, 100, 253, 153, - 130, 95, 96, 54, 121, 92, 37, 46, 225, 79, - 252, 35, 193, 154, 95, 60, 69, 177, 243, 206, - 212, 102, 100, 4, 204, 89, 184, 59, 167, 127, - 20, 239, 62, 57, 15, 216, 70, 60, 86, 214, - 16, 184, 179, 145, 40, 71, 115, 152, 192, 60, - 186, 235, 202, 139, 25, 148, 90, 2, 174, 11, - 124, 61, 119, 55, 159, 222, 251, 243, 152, 81, - 141, 98, 69, 169, 224, 122, 51, 36, 215, 255, - 88, 211, 74, 29, 239, 39, 206, 53, 215, 134, - 124, 92, 118, 156, 41, 37, 10, 198, 18, 42, - 121, 86, 55, 9, 149, 71, 100, 146, 43, 26, - 77, 225, 136, 11, 175, 29, 45, 205, 26, 183, - 220, 239, 254, 252, 179, 39, 6, 169, 132, 32, - 67, 54, 124, 202, 128, 69, 22, 95, 54, 106, - 236, 56, 179, 183, 55, 225, 195, 67, 103, 47, - 217, 67, 235, 226, 93, 200, 7, 213, 18, 155, - 21, 182, 147, 154, 93, 163, 85, 213, 236, 105, - 53, 231, 5, 28, 137, 57, 181, 219, 161, 57, - 86, 11, 199, 230, 219, 110, 137, 185, 167, 17, - 245, 46, 209, 196, 105, 46, 120, 215, 67, 160, - 4, 170, 115, 253, 200, 16, 98, 6, 56, 47, - 45, 215, 208, 88, 219, 105, 149, 139, 59, 43, - 21, 209, 133, 167, 145, 176, 23, 64, 92, 121, - 249, 97, 83, 226, 234, 90, 254, 53, 105, 134, - 139, 140, 96, 76, 100, 65, 92, 8, 25, 112, - 104, 50, 13, 29, 156, 239, 116, 203, 71, 209, - 221, 207, 207, 68, 191, 212, 106, 144, 87, 57, - 65, 153, 98, 107, 71, 247, 1, 226, 155, 244, - 223, 244, 132, 118, 149, 85, 88, 115, 15, 188, - 1, 100, 2, 239, 148, 6, 56, 160, 78, 236, - 7, 174, 105, 196, 90, 163, 102, 206, 59, 45, - 108, 169, 73, 67, 224, 165, 234, 243, 68, 94, - 82, 15, 131, 245, 46, 238, 71, 31, 248, 99, - 224, 19, 139, 100, 224, 123, 213, 113, 104, 180, - 56, 168, 128, 238, 53, 71, 58, 97, 253, 134, - 162, 213, 137, 229, 202, 150, 157, 56, 23, 202, - 159, 12, 80, 132, 94, 228, 219, 232, 120, 188, - 22, 224, 165, 228, 30, 105, 251, 96, 156, 3, - 135, 229, 163, 111, 54, 236, 37, 159, 180, 168, - 0, 253, 162, 177, 10, 221, 192, 67, 207, 62, - 108, 153, 149, 71, 224, 22, 243, 167, 31, 79, - 16, 81, 48, 143, 124, 111, 96, 142, 46, 73, - 254, 55, 224, 150, 102, 219, 247, 210, 175, 241, - 226, 132, 62, 167, 223, 7, 173, 164, 76, 28, - 179, 173, 181, 218, 9, 53, 242, 244, 107, 22, - 41, 232, 254, 37, 77, 28, 14, 4, 113, 218, - 78, 247, 191, 92, 244, 152, 71, 45, 168, 220, - 117, 49, 181, 133, 114, 238, 66, 54, 46, 19, - 131, 69, 38, 149, 1, 63, 218, 28, 16, 204, - 14, 68, 76, 80, 46, 56, 66, 15, 232, 4, - 220, 5, 206, 86, 99, 107, 163, 27, 70, 170, - 126, 1, 41, 40, 90, 167, 157, 53, 210, 44, - 199, 238, 97, 254, 142, 173, 180, 182, 190, 151, - 134, 60, 204, 165, 196, 19, 199, 161, 112, 99, - 102, 175, 245, 0, 141, 222, 150, 50, 36, 200, - 56, 183, 243, 123, 38, 195, 130, 219, 76, 85, - 78, 207, 80, 8, 141, 125, 87, 30, 42, 177, - 227, 79, 59, 219, 106, 136, 145, 160, 96, 191, - 189, 83, 250, 231, 84, 200, 167, 13, 9, 224, - 72, 121, 167, 166, 67, 150, 134, 212, 43, 44, - 184, 155, 148, 38, 68, 60, 130, 202, 229, 88, - 64, 169, 35, 251, 221, 79, 27, 37, 105, 147, - 118, 66, 189, 33, 26, 212, 67, 219, 109, 145, - 151, 51, 50, 234, 162, 126, 107, 200, 73, 194, - 80, 59, 99, 37, 90, 135, 159, 64, 104, 212, - 36, 186, 13, 201, 28, 0, 202, 129, 227, 234, - 36, 225, 76, 69, 186, 127, 143, 79, 99, 206, - 31, 68, 15, 125, 51, 125, 68, 100, 253, 192, - 230, 39, 103, 17, 11, 32, 123, 20, 136, 131, - 85, 15, 199, 153, 26, 77, 226, 206, 193, 121, - 77, 41, 206, 195, 95, 4, 43, 121, 124, 22, - 85, 10, 122, 250, 245, 160, 99, 194, 28, 224, - 86, 167, 157, 193, 59, 152, 77, 192, 113, 62, - 26, 188, 205, 53, 231, 176, 114, 203, 21, 32, - 11, 36, 19, 164, 45, 158, 35, 57, 127, 29, - 60, 142, 221, 178, 190, 64, 36, 154, 32, 200, - 115, 157, 176, 76, 160, 141, 210, 201, 56, 30, - 204, 210, 22, 65, 37, 185, 189, 202, 254, 166, - 74, 101, 208, 27, 20, 245, 154, 98, 85, 32, - 192, 239, 210, 161, 168, 43, 233, 8, 47, 179, - 81, 189, 194, 90, 231, 213, 221, 224, 23, 48, - 12, 253, 252, 208, 94, 128, 255, 246, 61, 28, - 72, 227, 203, 165, 53, 39, 157, 31, 171, 102, - 30, 133, 242, 197, 81, 92, 243, 36, 213, 9, - 250, 85, 131, 222, 207, 171, 36, 239, 13, 220, - 188, 51, 136, 132, 141, 215, 55, 104, 191, 109, - 151, 104, 139, 165, 211, 16, 245, 236, 181, 108, - 229, 124, 91, 67, 241, 63, 211, 202, 251, 166, - 139, 215, 198, 185, 12, 176, 222, 10, 235, 102, - 5, 6, 156, 41, 196, 90, 109, 221, 134, 119, - 10, 45, 254, 10, 169, 91, 161, 8, 32, 92, - 196, 205, 217, 235, 112, 225, 187, 207, 7, 233, - 171, 203, 201, 195, 187, 240, 104, 130, 225, 25, - 91, 111, 231, 170, 236, 104, 155, 213, 163, 123, - 187, 108, 252, 225, 163, 206, 3, 145, 174, 118, - 136, 19, 60, 105, 119, 203, 198, 176, 158, 55, - 106, 196, 51, 102, 10, 60, 119, 122, 9, 127, - 234, 208, 179, 42, 34, 49, 232, 102, 191, 49, - 193, 149, 74, 19, 248, 200, 9, 165, 164, 207, - 202, 111, 205, 204, 185, 96, 242, 23, 91, 75, - 59, 25, 148, 72, 201, 16, 129, 175, 1, 63, - 36, 116, 98, 49, 84, 5, 94, 30, 68, 216, - 3, 11, 153, 253, 174, 166, 156, 84, 55, 40, - 43, 191, 20, 114, 176, 20, 238, 164, 64, 154, - 42, 60, 51, 120, 19, 209, 11, 46, 99, 102, - 168, 95, 19, 174, 86, 226, 195, 200, 158, 30, - 191, 159, 165, 20, 25, 124, 141, 83, 6, 174, - 160, 213, 228, 47, 64, 136, 151, 1, 12, 143, - 87, 153, 214, 114, 127, 61, 250, 202, 164, 243, - 62, 57, 108, 184, 34, 0, 44, 52, 55, 210, - 246, 63, 60, 208, 32, 244, 255, 161, 64, 218, - 220, 203, 191, 100, 18, 29, 249, 5, 65, 239, - 134, 201, 137, 210, 108, 45, 127, 223, 14, 2, - 42, 144, 246, 241, 226, 19, 92, 89, 95, 115, - 20, 34, 186, 36, 129, 216, 180, 183, 246, 230, - 200, 40, 104, 236, 18, 24, 92, 183, 66, 229, - 188, 167, 20, 35, 17, 11, 75, 155, 48, 97, - 31, 207, 217, 190, 23, 163, 228, 133, 188, 218, - 8, 233, 255, 100, 202, 161, 66, 95, 22, 132, - 213, 211, 89, 119, 62, 146, 180, 104, 220, 165, - 131, 234, 184, 33, 35, 246, 241, 132, 165, 165, - 52, 98, 29, 216, 61, 129, 159, 118, 102, 27, - 8, 214, 35, 139, 193, 82, 22, 7, 85, 98, - 189, 63, 188, 33, 129, 234, 93, 212, 201, 207, - 14, 87, 103, 20, 3, 167, 94, 143, 229, 209, - 93, 127, 153, 12, 199, 145, 156, 58, 130, 136, - 221, 181, 210, 76, 249, 138, 3, 230, 33, 112, - 151, 140, 70, 244, 3, 216, 172, 57, 168, 229, - 219, 28, 68, 96, 6, 29, 218, 3, 208, 134, - 148, 234, 69, 84, 176, 161, 195, 47, 1, 215, - 157, 58, 221, 26, 253, 19, 187, 147, 51, 82, - 141, 218, 146, 126, 221, 176, 228, 20, 114, 4, - 178, 143, 101, 226, 46, 157, 28, 97, 54, 172, - 182, 197, 85, 0, 210, 23, 58, 168, 82, 26, - 170, 187, 7, 132, 65, 47, 158, 201, 107, 118, - 117, 87, 165, 74, 163, 91, 108, 164, 193, 184, - 162, 59, 166, 108, 242, 113, 210, 102, 56, 140, - 67, 245, 134, 214, 85, 181, 0, 236, 51, 171, - 63, 33, 81, 162, 107, 230, 194, 37, 148, 113, - 77, 241, 174, 169, 14, 200, 76, 210, 67, 156, - 91, 101, 170, 121, 206, 225, 168, 60, 117, 232, - 35, 117, 59, 5, 246, 32, 26, 182, 226, 145, - 38, 225, 174, 80, 33, 212, 9, 190, 202, 253, - 125, 140, 127, 124, 229, 53, 178, 80, 144, 12, - 43, 48, 54, 52, 20, 136, 153, 174, 230, 200, - 150, 47, 9, 176, 235, 160, 68, 107, 149, 248, - 97, 190, 137, 149, 49, 99, 82, 45, 130, 152, - 55, 171, 139, 5, 156, 215, 203, 188, 140, 184, - 177, 235, 23, 13, 232, 185, 157, 240, 60, 169, - 79, 54, 165, 46, 105, 34, 17, 39, 43, 114, - 52, 53, 103, 81, 2, 102, 37, 101, 156, 135, - 56, 146, 225, 61, 8, 38, 10, 147, 140, 164, - 18, 211, 117, 107, 251, 20, 42, 204, 133, 253, - 93, 2, 162, 143, 60, 185, 18, 237, 112, 201, - 97, 204, 228, 194, 56, 175, 203, 19, 188, 74, - 122, 10, 139, 13, 142, 11, 75, 68, 120, 94, - 162, 236, 50, 214, 40, 53, 216, 21, 18, 20, - 169, 61, 187, 122, 245, 36, 45, 117, 63, 86, - 205, 237, 148, 4, 220, 226, 212, 158, 176, 189, - 140, 172, 38, 230, 177, 201, 0, 246, 194, 234, - 101, 251, 154, 244, 191, 189, 181, 170, 205, 214, - 170, 131, 251, 227, 67, 13, 250, 213, 158, 76, - 156, 147, 205, 172, 133, 197, 9, 101, 53, 119, - 31, 221, 54, 77, 203, 51, 67, 151, 193, 214, - 238, 14, 116, 249, 239, 44, 175, 229, 114, 221, - 32, 123, 57, 20, 102, 250, 81, 195, 60, 185, - 123, 38, 138, 24, 155, 25, 155, 91, 204, 163, - 219, 183, 124, 35, 189, 56, 244, 8, 235, 75, - 88, 37, 42, 176, 86, 71, 82, 183, 174, 226, - 124, 161, 97, 176, 232, 158, 152, 74, 217, 5, - 139, 137, 179, 235, 135, 69, 70, 27, 189, 9, - 127, 171, 40, 112, 252, 100, 125, 7, 247, 160, - 209, 201, 226, 137, 88, 3, 62, 22, 88, 246, - 111, 141, 172, 136, 105, 169, 213, 0, 207, 1, - 239, 175, 14, 40, 237, 227, 64, 56, 39, 158, - 209, 233, 182, 156, 171, 131, 108, 190, 181, 167, - 32, 144, 149, 85, 58, 130, 116, 86, 68, 133, - 65, 68, 17, 217, 254, 230, 246, 38, 227, 245, - 244, 39, 129, 144, 242, 241, 0, 110, 193, 142, - 108, 132, 139, 120, 133, 228, 243, 194, 100, 167, - 218, 2, 228, 66, 39, 254, 249, 251, 204, 161, - 162, 68, 146, 238, 34, 207, 91, 188, 181, 151, - 20, 37, 163, 89, 235, 237, 237, 93, 219, 56, - 242, 69, 228, 63, 55, 164, 171, 239, 64, 5, - 44, 145, 26, 111, 241, 113, 95, 78, 12, 30, - 168, 244, 210, 194, 145, 114, 128, 214, 74, 201, - 132, 235, 5, 210, 130, 215, 213, 10, 137, 85, - 191, 37, 110, 226, 213, 218, 104, 157, 107, 136, - 54, 207, 59, 49, 151, 171, 177, 106, 87, 39, - 242, 133, 60, 113, 248, 114, 93, 80, 227, 86, - 4, 221, 145, 197, 38, 38, 6, 56, 7, 24, - 28, 109, 149, 224, 7, 81, 104, 239, 79, 249, - 226, 4, 58, 124, 54, 88, 229, 197, 156, 155, - 119, 100, 9, 204, 18, 11, 12, 111, 113, 110, - 132, 18, 57, 131, 218, 59, 1, 187, 254, 138, - 153, 25, 101, 55, 176, 114, 117, 175, 159, 241, - 57, 147, 137, 243, 50, 81, 114, 77, 3, 221, - 111, 8, 119, 228, 108, 61, 252, 25, 8, 226, - 235, 32, 33, 129, 18, 6, 217, 210, 74, 90, - 34, 62, 15, 59, 137, 87, 72, 191, 144, 117, - 148, 174, 83, 232, 39, 31, 171, 43, 132, 141, - 41, 102, 139, 126, 85, 129, 164, 132, 72, 106, - 87, 98, 26, 85, 5, 22, 13, 47, 209, 227, - 180, 15, 146, 219, 198, 170, 174, 72, 52, 15, - 167, 8, 232, 251, 120, 126, 135, 230, 14, 28, - 118, 109, 164, 254, 78, 45, 227, 199, 236, 209, - 80, 63, 223, 117, 94, 15, 14, 127, 120, 109, - 91, 96, 86, 233, 195, 199, 170, 150, 210, 64, - 32, 81, 20, 61, 175, 141, 84, 27, 104, 53, - 52, 226, 248, 8, 137, 54, 65, 248, 79, 249, - 191, 127, 141, 63, 36, 144, 188, 208, 2, 172, - 24, 103, 189, 11, 229, 57, 2, 173, 48, 120, - 190, 247, 34, 122, 150, 66, 232, 254, 99, 244, - 2, 58, 203, 58, 117, 3, 14, 243, 191, 57, - 73, 30, 95, 217, 208, 32, 209, 160, 73, 208, - 238, 23, 90, 205, 28, 85, 172, 223, 232, 229, - 141, 88, 100, 29, 84, 251, 52, 255, 183, 224, - 90, 90, 228, 51, 5, 38, 139, 60, 61, 64, - 182, 104, 59, 230, 147, 103, 109, 69, 190, 202, - 28, 255, 231, 187, 6, 195, 227, 67, 88, 117, - 132, 62, 20, 207, 154, 215, 170, 54, 121, 189, - 91, 116, 95, 46, 239, 49, 226, 178, 79, 3, - 53, 168, 58, 227, 124, 18, 219, 73, 49, 237, - 163, 78, 35, 36, 252, 248, 107, 154, 70, 169, - 175, 123, 207, 120, 51, 176, 112, 143, 171, 6, - 150, 211, 145, 219, 189, 104, 223, 198, 171, 169, - 225, 217, 172, 90, 31, 122, 7, 226, 206, 174, - 79, 195, 179, 46, 111, 75, 140, 156, 2, 215, - 196, 166, 136, 187, 176, 89, 194, 27, 147, 217, - 46, 118, 151, 196, 76, 202, 18, 48, 7, 118, - 19, 53, 190, 37, 2, 17, 34, 162, 105, 53, - 188, 130, 164, 11, 201, 175, 136, 12, 225, 86, - 122, 217, 5, 153, 177, 218, 237, 53, 154, 22, - 234, 245, 136, 29, 51, 78, 55, 0, 17, 106, - 86, 163, 208, 216, 236, 54, 45, 131, 77, 233, - 223, 105, 197, 215, 77, 52, 175, 255, 140, 215, - 201, 133, 68, 70, 183, 185, 89, 47, 181, 94, - 237, 13, 170, 26, 158, 93, 144, 189, 74, 81, - 47, 143, 26, 239, 228, 2, 112, 101, 2, 149, - 241, 137, 248, 186, 232, 68, 102, 255, 252, 87, - 127, 177, 226, 69, 10, 0, 61, 128, 19, 214, - 193, 44, 43, 2, 114, 3, 155, 44, 245, 249, - 241, 128, 11, 30, 94, 35, 5, 40, 34, 164, - 224, 121, 189, 46, 29, 74, 190, 169, 117, 157, - 246, 13, 178, 16, 100, 59, 188, 40, 120, 225, - 77, 172, 123, 103, 188, 90, 65, 12, 236, 0, - 134, 110, 194, 8, 243, 56, 73, 247, 94, 198, - 111, 154, 79, 254, 223, 127, 45, 56, 167, 242, - 191, 106, 155, 46, 251, 32, 196, 137, 130, 156, - 15, 121, 13, 69, 220, 131, 175, 20, 125, 92, - 134, 130, 185, 240, 122, 202, 236, 183, 87, 121, - 243, 51, 209, 16, 141, 229, 22, 220, 72, 29, - 12, 143, 84, 81, 164, 203, 6, 78, 218, 38, - 152, 126, 109, 90, 15, 136, 117, 197, 107, 97, - 131, 11, 251, 55, 96, 36, 28, 83, 33, 25, - 64, 16, 72, 109, 109, 114, 214, 187, 239, 65, - 6, 6, 110, 18, 238, 10, 37, 0, 218, 241, - 178, 217, 8, 51, 34, 136, 81, 217, 49, 199, - 14, 10, 187, 201, 43, 21, 29, 23, 35, 43, - 1, 90, 6, 34, 210, 84, 208, 48, 145, 203, - 113, 75, 148, 132, 120, 166, 24, 136, 4, 65, - 251, 17, 43, 146, 60, 113, 12, 171, 17, 42, - 188, 97, 128, 141, 100, 32, 113, 175, 218, 246, - 101, 88, 197, 226, 17, 52, 205, 34, 210, 146, - 162, 35, 186, 70, 107, 139, 224, 96, 180, 79, - 231, 221, 143, 190, 67, 64, 10, 165, 226, 50, - 97, 40, 12, 196, 130, 121, 97, 139, 36, 139, - 128, 72, 162, 109, 239, 239, 101, 157, 155, 78, - 191, 211, 125, 222, 63, 29, 92, 24, 132, 47, - 187, 52, 209, 157, 46, 81, 176, 17, 247, 178, - 241, 56, 67, 235, 204, 42, 105, 129, 32, 235, - 54, 196, 96, 236, 197, 66, 204, 199, 121, 70, - 77, 136, 60, 35, 229, 114, 137, 99, 108, 206, - 235, 255, 183, 86, 148, 73, 203, 207, 169, 107, - 119, 209, 55, 125, 177, 6, 180, 237, 121, 0, - 177, 109, 185, 106, 21, 198, 230, 90, 137, 208, - 42, 6, 97, 107, 12, 171, 192, 145, 211, 33, - 61, 241, 143, 122, 110, 105, 34, 254, 244, 210, - 210, 118, 129, 80, 65, 74, 55, 226, 4, 113, - 220, 184, 42, 160, 120, 185, 221, 55, 123, 163, - 226, 5, 94, 238, 128, 173, 43, 197, 218, 112, - 194, 20, 225, 167, 242, 212, 190, 113, 232, 108, - 125, 135, 121, 186, 135, 127, 226, 223, 204, 39, - 134, 167, 71, 21, 30, 139, 163, 196, 135, 119, - 208, 253, 218, 18, 178, 218, 94, 100, 94, 187, - 66, 76, 82, 237, 181, 237, 67, 44, 246, 28, - 172, 5, 64, 210, 167, 86, 120, 192, 87, 10, - 60, 190, 60, 58, 62, 5, 198, 72, 222, 127, - 212, 250, 39, 190, 207, 187, 36, 248, 71, 210, - 229, 208, 99, 197, 70, 100, 152, 78, 188, 46, - 93, 17, 214, 36, 119, 12, 162, 255, 90, 245, - 25, 193, 186, 253, 103, 75, 117, 41, 42, 18, - 6, 234, 143, 177, 12, 43, 211, 7, 21, 110, - 141, 74, 25, 179, 31, 223, 0, 70, 5, 182, - 225, 14, 210, 10, 61, 21, 222, 52, 78, 82, - 207, 148, 148, 146, 105, 160, 6, 10, 247, 0, - 50, 112, 5, 64, 194, 242, 72, 18, 32, 0, - 178, 144, 178, 22, 110, 58, 170, 113, 64, 187, - 121, 116, 94, 203, 227, 35, 249, 212, 91, 253, - 108, 111, 174, 248, 39, 222, 61, 8, 82, 13, - 221, 92, 112, 55, 68, 205, 66, 170, 220, 62, - 24, 19, 66, 109, 34, 183, 233, 69, 53, 211, - 173, 0, 164, 45, 101, 140, 10, 130, 215, 134, - 172, 70, 183, 193, 41, 161, 121, 173, 92, 101, - 88, 227, 15, 17, 130, 7, 55, 127, 224, 19, - 17, 160, 196, 101, 24, 180, 85, 55, 32, 107, - 123, 46, 156, 244, 230, 200, 200, 197, 225, 96, - 97, 34, 184, 116, 83, 22, 115, 186, 53, 207, - 1, 126, 34, 235, 100, 170, 116, 98, 190, 23, - 198, 179, 12, 81, 66, 45, 214, 184, 156, 68, - 224, 75, 140, 211, 238, 6, 147, 92, 215, 220, - 247, 255, 133, 187, 184, 39, 36, 161, 200, 195, - 204, 37, 116, 183, 194, 145, 32, 59, 165, 94, - 197, 184, 175, 200, 223, 92, 186, 118, 44, 109, - 191, 203, 127, 31, 48, 31, 159, 226, 73, 173, - 190, 73, 10, 138, 51, 47, 39, 141, 77, 48, - 7, 164, 169, 234, 159, 202, 126, 94, 68, 93, - 39, 19, 127, 119, 35, 180, 199, 226, 185, 37, - 69, 10, 3, 68, 31, 103, 159, 23, 253, 58, - 46, 247, 99, 231, 108, 73, 125, 151, 54, 244, - 217, 117, 109, 165, 93, 2, 154, 63, 85, 241, - 210, 34, 112, 23, 31, 133, 249, 157, 196, 35, - 184, 192, 171, 15, 89, 111, 5, 76, 196, 24, - 108, 249, 96, 55, 86, 132, 54, 156, 172, 135, - 77, 40, 101, 168, 52, 116, 148, 240, 32, 181, - 160, 118, 243, 52, 155, 231, 162, 213, 119, 89, - 143, 116, 18, 207, 26, 42, 223, 67, 150, 56, - 108, 21, 183, 195, 63, 176, 215, 84, 240, 179, - 162, 110, 7, 100, 153, 214, 25, 39, 254, 151, - 22, 60, 191, 80, 221, 24, 245, 70, 178, 249, - 246, 80, 85, 238, 219, 77, 62, 31, 217, 19, - 246, 249, 102, 223, 205, 221, 188, 104, 121, 187, - 38, 146, 174, 26, 255, 60, 73, 89, 153, 81, - 70, 217, 245, 9, 143, 66, 56, 148, 230, 144, - 58, 178, 125, 15, 146, 165, 249, 54, 223, 249, - 243, 229, 115, 26, 176, 154, 156, 140, 249, 242, - 78, 193, 23, 212, 144, 119, 136, 117, 202, 102, - 53, 13, 28, 175, 177, 30, 234, 93, 160, 16, - 175, 231, 252, 88, 39, 56, 224, 31, 213, 132, - 82, 203, 187, 8, 182, 60, 227, 52, 248, 84, - 121, 183, 170, 173, 216, 139, 89, 89, 188, 116, - 90, 138, 72, 3, 225, 82, 158, 64, 105, 226, - 229, 24, 220, 120, 104, 23, 107, 140, 92, 219, - 170, 192, 205, 229, 133, 37, 202, 118, 199, 182, - 83, 130, 145, 6, 242, 115, 205, 3, 89, 62, - 164, 45, 205, 211, 5, 39, 47, 47, 22, 129, - 208, 153, 25, 154, 43, 31, 9, 23, 35, 155, - 248, 131, 106, 63, 181, 175, 44, 71, 29, 250, - 80, 167, 6, 151, 36, 245, 231, 113, 241, 107, - 117, 151, 2, 14, 242, 40, 197, 94, 139, 4, - 130, 224, 91, 134, 91, 43, 133, 198, 233, 250, - 127, 40, 185, 29, 217, 253, 67, 219, 114, 141, - 9, 91, 191, 217, 70, 203, 216, 210, 229, 107, - 57, 117, 131, 175, 119, 227, 174, 88, 176, 218, - 169, 185, 95, 62, 127, 161, 62, 105, 78, 233, - 146, 195, 187, 27, 251, 68, 162, 65, 17, 1, - 50, 25, 7, 173, 192, 236, 186, 232, 147, 15, - 223, 126, 207, 97, 51, 173, 181, 223, 173, 171, - 187, 109, 71, 140, 65, 104, 147, 161, 191, 150, - 178, 252, 55, 194, 112, 164, 133, 80, 115, 34, - 122, 172, 148, 56, 71, 41, 1, 126, 62, 49, - 10, 74, 232, 129, 251, 186, 30, 239, 248, 154, - 128, 160, 147, 241, 13, 205, 221, 211, 154, 115, - 255, 49, 248, 31, 196, 63, 152, 224, 215, 87, - 224, 96, 200, 117, 200, 102, 202, 177, 59, 213, - 150, 29, 80, 7, 117, 217, 151, 145, 140, 151, - 65, 105, 27, 174, 190, 78, 106, 236, 235, 22, - 80, 59, 83, 68, 130, 233, 168, 250, 4, 254, - 151, 58, 1, 158, 122, 209, 71, 241, 225, 128, - 195, 88, 254, 23, 255, 75, 237, 109, 247, 78, - 154, 6, 119, 161, 209, 195, 240, 128, 206, 221, - 116, 166, 6, 215, 131, 10, 63, 237, 189, 91, - 146, 8, 221, 24, 199, 12, 191, 116, 4, 252, - 50, 131, 213, 120, 153, 52, 210, 229, 199, 158, - 105, 213, 29, 160, 146, 168, 84, 225, 166, 110, - 103, 224, 152, 234, 50, 44, 96, 176, 175, 246, - 54, 226, 20, 17, 88, 53, 227, 111, 180, 91, - 41, 210, 72, 16, 75, 72, 221, 34, 209, 140, - 73, 61, 181, 237, 141, 232, 33, 54, 196, 127, - 127, 235, 75, 148, 234, 249, 254, 221, 216, 35, - 67, 19, 189, 242, 17, 5, 55, 196, 146, 203, - 254, 125, 155, 81, 245, 166, 144, 249, 108, 175, - 217, 176, 244, 182, 138, 147, 166, 117, 210, 130, - 120, 41, 24, 239, 82, 229, 19, 169, 148, 160, - 214, 211, 200, 146, 233, 182, 29, 89, 206, 133, - 81, 77, 121, 169, 14, 128, 202, 45, 142, 251, - 136, 29, 89, 182, 199, 143, 218, 55, 129, 63, - 183, 35, 7, 138, 112, 93, 247, 129, 181, 84, - 126, 174, 3, 68, 105, 55, 17, 216, 233, 197, - 213, 89, 6, 234, 127, 230, 154, 85, 111, 182, - 74, 11, 172, 226, 202, 199, 251, 225, 203, 68, - 240, 98, 237, 157, 145, 255, 217, 42, 250, 202, - 194, 134, 41, 37, 129, 175, 88, 7, 147, 64, - 209, 109, 232, 246, 38, 75, 200, 114, 99, 116, - 36, 142, 34, 71, 25, 25, 21, 49, 59, 251, - 85, 78, 246, 43, 170, 197, 144, 69, 183, 98, - 210, 198, 144, 243, 142, 47, 57, 20, 119, 2, - 29, 146, 0, 242, 68, 209, 209, 195, 235, 76, - 116, 194, 239, 184, 10, 62, 117, 121, 224, 237, - 224, 122, 95, 151, 212, 202, 19, 97, 14, 90, - 105, 80, 195, 113, 255, 234, 141, 209, 157, 141, - 76, 79, 32, 56, 90, 216, 2, 130, 233, 11, - 192, 8, 226, 53, 27, 230, 171, 189, 210, 27, - 228, 188, 189, 92, 162, 218, 246, 252, 80, 97, - 210, 222, 119, 217, 36, 19, 137, 108, 61, 86, - 141, 182, 48, 204, 112, 93, 183, 55, 149, 160, - 4, 19, 15, 93, 183, 155, 85, 171, 221, 47, - 29, 202, 71, 159, 169, 221, 53, 45, 250, 241, - 159, 0, 79, 42, 148, 255, 213, 68, 4, 84, - 140, 77, 12, 146, 207, 150, 51, 173, 136, 142, - 127, 83, 237, 122, 189, 152, 8, 115, 8, 227, - 146, 50, 108, 52, 25, 86, 131, 13, 139, 213, - 199, 160, 226, 161, 96, 226, 145, 233, 213, 49, - 217, 222, 139, 120, 166, 163, 162, 51, 93, 11, - 218, 231, 146, 59, 160, 57, 211, 145, 164, 236, - 61, 162, 140, 147, 123, 235, 78, 27, 53, 218, - 151, 170, 40, 252, 143, 120, 12, 56, 147, 206, - 106, 23, 156, 251, 100, 206, 35, 171, 93, 24, - 146, 13, 91, 222, 192, 179, 176, 4, 4, 218, - 114, 123, 240, 175, 61, 13, 52, 230, 121, 252, - 141, 24, 9, 63, 20, 89, 117, 144, 209, 189, - 148, 179, 142, 6, 11, 91, 171, 201, 120, 198, - 246, 205, 250, 152, 160, 168, 146, 142, 202, 83, - 44, 84, 189, 106, 198, 179, 217, 210, 18, 132, - 73, 173, 11, 1, 6, 222, 127, 182, 161, 15, - 245, 220, 54, 151, 163, 19, 171, 59, 103, 128, - 172, 147, 204, 96, 221, 149, 180, 77, 149, 182, - 127, 170, 169, 17, 152, 164, 176, 238, 17, 80, - 45, 192, 165, 15, 156, 207, 212, 33, 235, 108, - 102, 210, 16, 93, 0, 212, 227, 201, 208, 57, - 14, 130, 2, 203, 15, 209, 31, 148, 120, 180, - 200, 183, 107, 55, 54, 161, 105, 27, 171, 217, - 219, 160, 5, 66, 229, 137, 10, 183, 131, 19, - 252, 146, 253, 18, 207, 201, 143, 62, 166, 135, - 58, 137, 170, 179, 121, 82, 214, 85, 13, 27, - 88, 91, 20, 102, 22, 169, 213, 49, 192, 29, - 154, 129, 74, 169, 107, 111, 214, 78, 217, 110, - 51, 53, 201, 249, 170, 147, 5, 11, 212, 179, - 61, 183, 184, 121, 17, 149, 255, 51, 220, 172, - 104, 75, 21, 235, 19, 182, 85, 108, 154, 4, - 198, 45, 248, 89, 118, 203, 5, 73, 173, 111, - 32, 204, 255, 243, 231, 253, 21, 38, 58, 85, - 163, 45, 185, 83, 210, 45, 202, 84, 155, 139, - 248, 107, 210, 118, 109, 157, 89, 216, 214, 11, - 48, 67, 179, 24, 183, 86, 19, 73, 181, 126, - 11, 235, 103, 28, 205, 123, 57, 219, 12, 201, - 142, 3, 157, 106, 172, 64, 229, 193, 45, 58, - 171, 15, 162, 100, 233, 57, 124, 6, 150, 214, - 116, 196, 254, 87, 55, 6, 72, 240, 19, 21, - 70, 160, 50, 227, 181, 63, 19, 136, 174, 130, - 88, 16, 119, 134, 87, 223, 133, 59, 192, 236, - 61, 49, 153, 90, 227, 246, 228, 68, 191, 113, - 187, 227, 251, 24, 13, 92, 14, 128, 183, 130, - 167, 213, 124, 201, 224, 87, 23, 55, 118, 120, - 148, 208, 19, 193, 103, 10, 8, 242, 212, 19, - 228, 117, 10, 137, 131, 187, 251, 210, 153, 0, - 210, 143, 186, 124, 171, 143, 72, 159, 56, 220, - 118, 161, 152, 248, 92, 102, 255, 61, 101, 86, - 12, 57, 174, 53, 159, 182, 38, 98, 16, 16, - 124, 39, 141, 17, 213, 67, 235, 205, 105, 214, - 42, 45, 151, 194, 115, 182, 178, 180, 74, 180, - 82, 104, 175, 3, 234, 118, 31, 239, 159, 103, - 139, 16, 241, 146, 125, 241, 230, 222, 2, 45, - 72, 72, 127, 77, 139, 69, 105, 39, 23, 18, - 29, 13, 174, 35, 133, 27, 89, 115, 67, 203, - 250, 144, 185, 166, 67, 212, 6, 7, 36, 137, - 115, 53, 81, 136, 162, 231, 21, 112, 24, 254, - 212, 9, 219, 237, 111, 6, 230, 138, 122, 245, - 206, 3, 7, 45, 182, 192, 240, 146, 191, 1, - 9, 122, 203, 66, 211, 39, 15, 233, 76, 129, - 250, 169, 211, 162, 144, 200, 108, 18, 82, 141, - 139, 45, 245, 109, 140, 194, 127, 178, 217, 27, - 132, 54, 56, 79, 13, 64, 79, 212, 161, 26, - 224, 196, 233, 12, 42, 83, 189, 253, 191, 130, - 128, 124, 208, 49, 80, 214, 122, 109, 193, 95, - 221, 237, 14, 152, 106, 76, 193, 147, 241, 4, - 215, 235, 186, 29, 209, 246, 39, 253, 204, 157, - 62, 59, 177, 90, 31, 214, 204, 106, 94, 94, - 170, 47, 76, 120, 180, 255, 245, 103, 254, 224, - 221, 0, 163, 81, 8, 184, 227, 158, 35, 182, - 144, 112, 89, 136, 216, 27, 157, 244, 224, 19, - 30, 96, 202, 194, 195, 28, 78, 161, 205, 60, - 205, 53, 55, 67, 220, 130, 66, 253, 93, 71, - 104, 115, 180, 202, 104, 19, 108, 83, 140, 148, - 7, 249, 72, 219, 189, 24, 241, 194, 35, 35, - 83, 123, 18, 111, 179, 121, 187, 175, 48, 77, - 66, 81, 199, 244, 187, 93, 147, 50, 51, 70, - 212, 254, 12, 111, 99, 83, 145, 146, 94, 207, - 248, 195, 97, 72, 231, 134, 93, 49, 65, 60, - 29, 160, 237, 100, 88, 8, 207, 100, 121, 105, - 204, 199, 52, 160, 221, 91, 31, 210, 227, 174, - 175, 42, 164, 115, 224, 164, 201, 30, 37, 139, - 14, 204, 251, 177, 251, 25, 49, 200, 113, 215, - 51, 100, 179, 104, 19, 134, 187, 137, 212, 153, - 132, 222, 53, 42, 147, 208, 96, 224, 168, 205, - 220, 120, 199, 193, 166, 73, 210, 28, 206, 54, - 239, 221, 72, 197, 214, 21, 172, 174, 23, 215, - 140, 61, 251, 27, 20, 27, 241, 28, 59, 1, - 136, 61, 11, 176, 47, 170, 147, 64, 74, 221, - 7, 194, 3, 18, 55, 179, 128, 207, 111, 176, - 251, 194, 149, 116, 213, 210, 44, 8, 228, 126, - 49, 255, 16, 244, 76, 172, 143, 92, 111, 148, - 112, 209, 8, 193, 215, 63, 49, 41, 86, 30, - 156, 133, 13, 185, 127, 211, 138, 128, 252, 39, - 20, 101, 75, 209, 131, 13, 41, 147, 167, 114, - 223, 186, 191, 137, 153, 177, 232, 94, 175, 53, - 90, 51, 33, 139, 184, 77, 90, 7, 173, 31, - 29, 119, 81, 78, 100, 34, 123, 59, 180, 211, - 141, 235, 222, 55, 64, 185, 23, 153, 64, 59, - 233, 205, 77, 245, 113, 19, 2, 55, 246, 87, - 65, 16, 156, 14, 53, 166, 186, 110, 129, 174, - 208, 83, 80, 190, 62, 101, 109, 103, 177, 187, - 136, 125, 247, 140, 254, 137, 14, 181, 100, 178, - 135, 123, 80, 80, 1, 42, 24, 18, 222, 226, - 93, 189, 174, 207, 212, 118, 161, 134, 231, 84, - 215, 130, 28, 120, 19, 156, 30, 213, 20, 192, - 46, 217, 77, 176, 168, 27, 225, 122, 247, 63, - 154, 155, 213, 56, 37, 28, 159, 83, 157, 170, - 44, 40, 40, 197, 56, 18, 241, 167, 105, 229, - 241, 41, 239, 17, 158, 161, 42, 1, 200, 213, - 239, 104, 224, 12, 204, 164, 182, 21, 236, 191, - 178, 162, 17, 174, 155, 189, 231, 85, 211, 196, - 1, 116, 71, 130, 40, 5, 149, 12, 195, 134, - 146, 119, 124, 117, 212, 253, 6, 53, 188, 48, - 126, 131, 176, 229, 25, 149, 109, 157, 160, 209, - 250, 90, 108, 44, 122, 240, 39, 160, 216, 145, - 102, 8, 210, 196, 146, 23, 221, 73, 248, 244, - 188, 122, 97, 224, 53, 5, 152, 126, 171, 213, - 100, 125, 51, 147, 7, 93, 255, 85, 220, 41, - 132, 203, 209, 20, 18, 95, 42, 90, 189, 55, - 107, 241, 5, 172, 215, 78, 145, 101, 196, 53, - 112, 158, 252, 220, 19, 189, 160, 2, 88, 68, - 161, 130, 213, 187, 74, 47, 159, 143, 243, 79, - 14, 81, 181, 121, 91, 246, 176, 15, 181, 179, - 163, 209, 244, 225, 74, 196, 238, 219, 40, 107, - 174, 238, 206, 209, 95, 202, 243, 71, 134, 84, - 64, 239, 121, 80, 172, 229, 159, 149, 62, 236, - 141, 114, 149, 212, 226, 87, 182, 67, 47, 115, - 47, 50, 68, 68, 175, 128, 84, 101, 133, 241, - 118, 210, 98, 19, 77, 68, 108, 126, 181, 248, - 189, 77, 72, 192, 64, 100, 59, 69, 216, 2, - 227, 42, 220, 233, 156, 236, 73, 224, 194, 79, - 245, 94, 177, 75, 0, 206, 171, 45, 33, 77, - 27, 232, 183, 117, 55, 156, 99, 62, 159, 166, - 54, 138, 64, 136, 101, 193, 182, 84, 75, 41, - 189, 243, 131, 8, 135, 142, 3, 33, 254, 191, - 76, 64, 136, 63, 95, 88, 122, 246, 67, 145, - 214, 41, 13, 16, 176, 204, 68, 20, 43, 35, - 49, 72, 159, 183, 181, 159, 142, 156, 176, 160, - 249, 47, 228, 93, 173, 212, 158, 26, 35, 91, - 23, 58, 225, 170, 138, 43, 194, 109, 187, 128, - 110, 107, 209, 14, 113, 208, 135, 176, 204, 131, - 179, 14, 45, 234, 118, 92, 166, 135, 106, 199, - 184, 185, 128, 87, 66, 104, 10, 213, 208, 107, - 235, 246, 221, 182, 222, 175, 88, 133, 166, 217, - 13, 7, 37, 25, 29, 171, 35, 188, 201, 249, - 56, 28, 100, 77, 47, 138, 215, 42, 39, 126, - 110, 109, 128, 223, 64, 119, 138, 206, 36, 113, - 7, 187, 102, 7, 161, 128, 89, 253, 248, 10, - 67, 24, 14, 11, 117, 78, 240, 103, 101, 156, - 209, 121, 26, 15, 30, 146, 130, 15, 95, 103, - 7, 173, 145, 37, 223, 197, 59, 181, 103, 108, - 243, 234, 111, 19, 226, 217, 149, 233, 228, 224, - 149, 12, 152, 128, 135, 246, 99, 128, 15, 87, - 81, 208, 8, 22, 153, 85, 177, 24, 55, 137, - 208, 64, 168, 159, 138, 139, 23, 85, 149, 33, - 121, 138, 1, 23, 248, 135, 173, 60, 7, 232, - 73, 238, 47, 51, 223, 106, 161, 156, 158, 227, - 36, 246, 208, 2, 142, 25, 25, 128, 15, 3, - 94, 205, 84, 155, 146, 172, 112, 66, 3, 127, - 26, 121, 168, 107, 108, 79, 164, 60, 86, 16, - 238, 253, 42, 27, 204, 216, 223, 249, 223, 242, - 229, 154, 171, 97, 131, 166, 154, 105, 51, 208, - 128, 250, 191, 122, 193, 131, 156, 97, 31, 204, - 91, 193, 58, 110, 228, 180, 150, 22, 197, 244, - 13, 247, 182, 64, 95, 42, 58, 252, 127, 166, - 162, 113, 171, 237, 122, 31, 139, 114, 194, 246, - 30, 209, 25, 116, 92, 67, 168, 80, 253, 71, - 144, 75, 240, 207, 28, 43, 137, 73, 64, 139, - 93, 152, 44, 64, 126, 31, 202, 71, 145, 11, - 210, 44, 145, 16, 67, 55, 166, 201, 164, 254, - 118, 102, 227, 198, 240, 214, 228, 11, 21, 53, - 209, 188, 138, 135, 167, 28, 23, 144, 228, 157, - 96, 224, 192, 137, 107, 255, 204, 29, 249, 139, - 105, 181, 51, 158, 52, 24, 143, 77, 219, 66, - 119, 212, 215, 138, 234, 93, 181, 162, 18, 14, - 183, 144, 209, 93, 72, 90, 64, 142, 112, 103, - 111, 210, 238, 125, 222, 101, 252, 235, 33, 137, - 245, 26, 60, 202, 185, 201, 151, 137, 96, 101, - 3, 237, 255, 239, 144, 127, 180, 173, 129, 35, - 129, 226, 200, 228, 126, 47, 203, 44, 91, 193, - 32, 173, 72, 159, 241, 26, 151, 140, 164, 253, - 148, 14, 56, 209, 223, 81, 113, 255, 41, 182, - 197, 201, 137, 244, 87, 40, 51, 190, 205, 72, - 232, 117, 210, 201, 138, 126, 46, 203, 148, 209, - 29, 194, 11, 66, 10, 130, 88, 235, 223, 60, - 137, 13, 157, 77, 214, 61, 59, 153, 234, 60, - 198, 80, 21, 9, 184, 11, 54, 109, 208, 72, - 38, 197, 248, 223, 142, 76, 174, 137, 180, 170, - 211, 45, 169, 33, 2, 115, 6, 156, 70, 200, - 186, 122, 232, 69, 52, 97, 148, 255, 70, 130, - 194, 212, 234, 64, 247, 185, 35, 95, 210, 130, - 56, 66, 72, 102, 250, 17, 125, 91, 117, 243, - 17, 222, 196, 41, 46, 36, 34, 146, 186, 72, - 130, 112, 138, 190, 220, 225, 33, 158, 148, 104, - 97, 228, 73, 181, 48, 202, 70, 25, 46, 18, - 214, 111, 21, 28, 76, 50, 93, 4, 48, 253, - 112, 122, 228, 55, 47, 172, 102, 7, 23, 118, - 211, 32, 87, 134, 6, 15, 161, 14, 72, 90, - 203, 174, 122, 57, 115, 64, 123, 50, 160, 245, - 25, 39, 44, 70, 178, 72, 11, 215, 204, 127, - 63, 196, 71, 35, 106, 136, 180, 46, 29, 29, - 254, 116, 22, 197, 57, 134, 220, 211, 6, 78, - 110, 188, 240, 7, 166, 239, 33, 104, 215, 133, - 196, 122, 137, 164, 135, 206, 104, 107, 146, 77, - 211, 216, 151, 136, 170, 58, 250, 116, 87, 202, - 10, 31, 212, 108, 249, 74, 99, 102, 14, 49, - 187, 156, 0, 170, 100, 147, 52, 37, 98, 248, - 97, 56, 88, 251, 157, 96, 181, 157, 184, 142, - 194, 90, 191, 77, 47, 90, 145, 21, 208, 118, - 69, 94, 233, 177, 134, 53, 224, 75, 221, 146, - 12, 217, 0, 108, 222, 155, 221, 118, 143, 122, - 179, 8, 202, 128, 247, 13, 148, 197, 0, 68, - 197, 127, 140, 168, 130, 193, 147, 95, 171, 148, - 5, 109, 80, 246, 157, 60, 125, 35, 77, 84, - 110, 48, 50, 216, 60, 26, 245, 124, 99, 1, - 242, 47, 123, 253, 29, 43, 202, 251, 253, 105, - 56, 141, 80, 37, 138, 140, 101, 43, 13, 29, - 49, 107, 11, 184, 168, 55, 93, 205, 115, 196, - 151, 119, 174, 179, 125, 21, 184, 216, 210, 27, - 234, 243, 178, 56, 152, 8, 141, 99, 47, 241, - 4, 113, 140, 43, 64, 119, 27, 225, 143, 71, - 167, 208, 185, 103, 188, 224, 170, 219, 225, 23, - 148, 95, 64, 35, 150, 31, 209, 189, 1, 29, - 94, 46, 87, 7, 133, 22, 83, 201, 242, 168, - 131, 255, 54, 12, 83, 122, 151, 17, 191, 80, - 215, 211, 221, 234, 175, 199, 106, 130, 68, 16, - 108, 213, 34, 45, 55, 221, 84, 116, 64, 40, - 42, 126, 200, 226, 236, 121, 29, 75, 225, 231, - 70, 10, 31, 188, 148, 218, 55, 246, 158, 235, - 205, 152, 208, 131, 97, 1, 112, 240, 60, 200, - 149, 92, 117, 177, 140, 119, 30, 220, 129, 207, - 175, 173, 170, 97, 94, 184, 220, 176, 90, 218, - 114, 176, 250, 144, 36, 52, 219, 213, 122, 16, - 223, 160, 215, 216, 188, 147, 201, 175, 128, 23, - 247, 208, 118, 163, 95, 144, 85, 200, 23, 137, - 188, 58, 229, 85, 50, 35, 79, 198, 191, 252, - 64, 142, 45, 179, 106, 193, 81, 163, 155, 123, - 87, 0, 103, 232, 112, 32, 248, 232, 239, 226, - 206, 12, 253, 126, 0, 182, 223, 242, 129, 42, - 36, 188, 212, 191, 240, 255, 67, 200, 83, 27, - 50, 121, 77, 83, 183, 161, 62, 115, 246, 205, - 15, 189, 3, 132, 109, 226, 85, 123, 202, 63, - 135, 250, 251, 124, 207, 167, 117, 212, 117, 124, - 49, 8, 139, 144, 174, 112, 207, 73, 83, 85, - 205, 177, 110, 15, 185, 98, 92, 75, 249, 71, - 146, 95, 70, 224, 0, 143, 8, 217, 104, 125, - 51, 160, 242, 151, 88, 123, 194, 59, 79, 86, - 94, 87, 40, 200, 240, 118, 25, 106, 48, 51, - 211, 0, 101, 54, 49, 177, 55, 82, 171, 101, - 217, 98, 180, 122, 199, 239, 13, 206, 22, 60, - 174, 71, 211, 209, 222, 217, 43, 105, 75, 67, - 126, 40, 146, 204, 24, 235, 230, 24, 187, 107, - 229, 135, 156, 72, 98, 83, 73, 13, 147, 241, - 15, 138, 57, 254, 225, 161, 99, 232, 118, 174, - 189, 125, 133, 14, 178, 235, 12, 99, 197, 128, - 75, 237, 247, 36, 170, 215, 222, 60, 158, 29, - 33, 116, 22, 209, 247, 43, 247, 33, 187, 227, - 63, 166, 15, 114, 237, 245, 0, 23, 199, 18, - 136, 128, 69, 239, 193, 39, 217, 35, 236, 204, - 92, 243, 148, 173, 226, 235, 98, 110, 27, 60, - 223, 116, 67, 6, 231, 58, 131, 93, 9, 52, - 126, 61, 87, 224, 242, 28, 209, 192, 83, 234, - 37, 62, 250, 222, 74, 72, 187, 131, 29, 134, - 80, 5, 53, 76, 199, 125, 89, 62, 40, 15, - 134, 186, 90, 101, 132, 110, 65, 190, 80, 55, - 137, 240, 47, 235, 60, 31, 221, 62, 50, 241, - 196, 167, 221, 16, 196, 57, 54, 16, 79, 78, - 134, 4, 170, 90, 221, 110, 82, 68, 112, 182, - 241, 232, 110, 160, 221, 138, 182, 187, 41, 156, - 13, 159, 43, 76, 178, 49, 208, 48, 99, 216, - 5, 222, 38, 119, 85, 138, 241, 144, 74, 51, - 200, 8, 186, 135, 196, 80, 144, 15, 177, 228, - 112, 31, 208, 175, 143, 74, 53, 107, 35, 6, - 38, 11, 99, 104, 235, 249, 244, 232, 194, 89, - 126, 188, 40, 134, 91, 205, 34, 26, 187, 106, - 238, 230, 17, 25, 194, 34, 179, 9, 38, 87, - 52, 39, 253, 64, 150, 52, 171, 92, 56, 6, - 9, 157, 58, 215, 250, 39, 10, 250, 236, 158, - 218, 156, 174, 130, 237, 109, 14, 139, 126, 81, - 72, 251, 207, 169, 248, 187, 196, 169, 77, 101, - 127, 184, 110, 173, 228, 88, 200, 82, 230, 152, - 90, 102, 52, 173, 250, 93, 142, 216, 25, 42, - 252, 212, 25, 86, 185, 241, 213, 15, 174, 106, - 124, 125, 124, 195, 22, 190, 240, 145, 254, 60, - 165, 205, 53, 113, 244, 72, 159, 52, 189, 247, - 14, 19, 162, 18, 95, 160, 226, 31, 161, 31, - 240, 224, 214, 0, 139, 145, 162, 216, 85, 49, - 222, 204, 236, 104, 50, 255, 159, 182, 123, 37, - 123, 180, 8, 113, 172, 204, 159, 128, 225, 243, - 177, 244, 240, 72, 66, 3, 23, 68, 68, 125, - 63, 161, 245, 62, 210, 220, 187, 89, 12, 35, - 92, 252, 76, 51, 30, 150, 238, 75, 144, 137, - 246, 46, 184, 211, 106, 54, 228, 77, 192, 144, - 91, 23, 23, 63, 254, 161, 157, 119, 21, 86, - 63, 41, 10, 224, 129, 177, 4, 232, 63, 224, - 206, 210, 79, 177, 19, 183, 241, 54, 40, 73, - 110, 19, 213, 91, 229, 227, 106, 35, 4, 17, - 222, 57, 62, 72, 70, 120, 220, 65, 56, 191, - 80, 23, 7, 109, 89, 41, 142, 85, 167, 48, - 74, 205, 84, 133, 136, 245, 113, 9, 136, 54, - 102, 203, 91, 232, 144, 60, 175, 76, 44, 91, - 213, 228, 137, 3, 8, 156, 7, 2, 116, 64, - 57, 213, 28, 129, 216, 226, 245, 149, 248, 90, - 192, 211, 8, 54, 37, 67, 162, 150, 205, 201, - 12, 200, 64, 178, 149, 58, 163, 63, 231, 9, - 104, 230, 175, 125, 153, 62, 191, 166, 186, 147, - 22, 164, 105, 30, 96, 118, 95, 226, 248, 26, - 53, 100, 16, 9, 2, 64, 16, 62, 239, 243, - 93, 39, 108, 115, 213, 196, 73, 170, 174, 48, - 41, 192, 224, 90, 44, 154, 182, 196, 66, 18, - 3, 14, 19, 8, 155, 103, 175, 3, 23, 172, - 12, 187, 75, 20, 169, 210, 14, 182, 121, 216, - 35, 3, 168, 97, 191, 158, 105, 139, 166, 177, - 230, 178, 5, 98, 9, 184, 14, 159, 59, 230, - 89, 96, 241, 65, 208, 62, 78, 249, 219, 193, - 73, 77, 27, 53, 232, 69, 237, 213, 36, 20, - 57, 145, 174, 202, 112, 76, 62, 176, 75, 107, - 129, 42, 199, 1, 57, 4, 113, 54, 255, 236, - 247, 12, 240, 235, 52, 7, 144, 204, 232, 2, - 26, 167, 133, 202, 127, 244, 131, 214, 230, 131, - 143, 118, 100, 219, 75, 133, 220, 254, 51, 133, - 144, 4, 243, 153, 68, 144, 41, 158, 195, 245, - 197, 35, 190, 163, 147, 194, 235, 84, 36, 243, - 198, 129, 214, 139, 223, 202, 43, 79, 127, 142, - 44, 138, 7, 87, 207, 184, 235, 231, 93, 14, - 215, 105, 119, 39, 202, 222, 239, 247, 221, 244, - 73, 66, 214, 166, 91, 56, 141, 94, 167, 248, - 223, 28, 222, 231, 42, 36, 191, 234, 100, 91, - 40, 9, 176, 152, 206, 101, 0, 245, 236, 140, - 74, 122, 36, 211, 127, 140, 255, 97, 69, 153, - 240, 45, 4, 194, 10, 159, 212, 103, 160, 189, - 103, 60, 145, 202, 53, 196, 53, 88, 155, 99, - 86, 92, 236, 103, 236, 205, 230, 8, 238, 40, - 37, 217, 177, 27, 165, 51, 176, 11, 87, 55, - 99, 102, 191, 186, 43, 251, 225, 18, 12, 226, - 109, 54, 182, 165, 65, 19, 200, 149, 135, 153, - 170, 136, 54, 173, 106, 93, 122, 245, 1, 0, - 69, 129, 42, 6, 216, 42, 211, 207, 204, 69, - 231, 18, 43, 27, 19, 230, 121, 247, 164, 178, - 61, 238, 125, 210, 107, 3, 173, 67, 173, 186, - 230, 144, 237, 155, 114, 39, 248, 233, 56, 12, - 116, 91, 76, 28, 228, 221, 184, 13, 240, 241, - 159, 183, 185, 119, 160, 97, 11, 35, 189, 90, - 16, 247, 70, 225, 133, 173, 109, 120, 195, 214, - 4, 3, 171, 25, 11, 28, 175, 242, 218, 21, - 82, 234, 0, 25, 3, 226, 115, 99, 170, 23, - 108, 241, 151, 58, 110, 206, 14, 166, 227, 21, - 31, 167, 18, 4, 54, 130, 189, 28, 86, 192, - 115, 231, 0, 170, 219, 195, 205, 229, 54, 41, - 226, 59, 78, 5, 75, 123, 235, 134, 180, 10, - 224, 222, 55, 248, 84, 156, 142, 95, 232, 96, - 16, 165, 199, 161, 79, 25, 245, 164, 54, 74, - 98, 49, 15, 232, 142, 49, 58, 248, 150, 44, - 166, 83, 21, 250, 133, 91, 240, 118, 66, 12, - 82, 8, 2, 145, 76, 46, 123, 211, 228, 200, - 248, 101, 201, 154, 232, 80, 186, 220, 40, 48, - 184, 230, 26, 9, 216, 206, 251, 150, 42, 175, - 230, 77, 59, 140, 159, 48, 86, 238, 175, 24, - 207, 16, 112, 198, 248, 95, 92, 69, 86, 9, - 16, 36, 24, 2, 191, 64, 189, 58, 13, 161, - 241, 48, 239, 152, 133, 86, 211, 96, 224, 241, - 39, 227, 103, 59, 118, 95, 15, 105, 184, 186, - 228, 101, 93, 182, 56, 210, 190, 118, 98, 215, - 10, 74, 12, 239, 185, 121, 122, 186, 22, 140, - 150, 92, 107, 95, 47, 193, 162, 111, 108, 61, - 59, 45, 85, 190, 124, 242, 230, 191, 172, 82, - 54, 106, 170, 59, 143, 246, 214, 62, 227, 49, - 102, 130, 92, 156, 27, 244, 100, 131, 14, 250, - 161, 224, 199, 148, 232, 160, 156, 17, 236, 204, - 78, 152, 23, 102, 248, 180, 62, 212, 27, 70, - 201, 88, 227, 74, 208, 83, 239, 150, 109, 143, - 111, 108, 69, 127, 105, 130, 189, 138, 51, 47, - 91, 170, 168, 193, 30, 150, 60, 154, 52, 175, - 232, 159, 192, 1, 113, 53, 137, 211, 3, 46, - 200, 236, 1, 211, 61, 131, 243, 217, 75, 124, - 227, 217, 241, 141, 191, 46, 248, 242, 234, 231, - 251, 25, 203, 56, 240, 154, 235, 163, 122, 61, - 195, 6, 80, 93, 249, 175, 236, 105, 219, 248, - 246, 44, 46, 249, 227, 170, 1, 179, 26, 146, - 235, 159, 45, 49, 249, 161, 27, 224, 162, 236, - 179, 129, 90, 24, 201, 171, 146, 251, 51, 165, - 2, 80, 205, 171, 15, 91, 122, 210, 232, 89, - 42, 220, 84, 78, 103, 67, 13, 110, 200, 165, - 50, 17, 125, 53, 192, 125, 44, 29, 37, 253, - 94, 224, 135, 233, 158, 4, 111, 102, 225, 5, - 182, 115, 163, 240, 83, 91, 21, 224, 124, 79, - 95, 175, 85, 221, 101, 113, 27, 6, 96, 196, - 235, 37, 221, 74, 61, 80, 131, 27, 239, 39, - 105, 67, 201, 68, 63, 170, 45, 67, 85, 11, - 101, 158, 245, 103, 133, 199, 226, 13, 224, 13, - 149, 20, 29, 19, 89, 240, 98, 191, 200, 81, - 208, 58, 184, 160, 121, 113, 252, 185, 116, 187, - 141, 154, 204, 128, 222, 125, 219, 67, 224, 145, - 133, 108, 222, 39, 244, 39, 217, 241, 32, 195, - 227, 230, 151, 218, 19, 175, 84, 93, 204, 194, - 69, 138, 154, 99, 176, 119, 182, 229, 206, 142, - 101, 242, 84, 92, 89, 56, 216, 233, 221, 202, - 90, 88, 247, 173, 45, 211, 28, 110, 158, 239, - 3, 95, 60, 196, 86, 23, 182, 95, 188, 173, - 124, 143, 156, 149, 108, 112, 12, 116, 200, 193, - 106, 102, 107, 176, 141, 76, 123, 165, 44, 12, - 250, 233, 10, 223, 187, 203, 130, 125, 45, 6, - 67, 246, 23, 252, 232, 65, 141, 199, 36, 95, - 192, 59, 199, 142, 109, 160, 248, 11, 64, 67, - 25, 157, 120, 225, 181, 85, 211, 74, 147, 94, - 251, 183, 22, 137, 96, 88, 124, 179, 96, 22, - 196, 158, 179, 14, 72, 43, 240, 198, 172, 179, - 255, 190, 162, 207, 68, 244, 230, 167, 90, 235, - 27, 102, 235, 71, 188, 159, 153, 192, 178, 188, - 227, 254, 121, 122, 104, 208, 78, 15, 28, 131, - 85, 150, 104, 219, 84, 75, 48, 133, 221, 128, - 250, 200, 210, 17, 113, 111, 187, 24, 137, 101, - 109, 166, 119, 50, 61, 50, 77, 230, 8, 54, - 135, 8, 78, 191, 182, 49, 91, 214, 109, 76, - 139, 126, 152, 54, 147, 140, 36, 126, 232, 200, - 20, 94, 34, 63, 117, 147, 193, 13, 253, 210, - 176, 254, 204, 228, 167, 33, 107, 36, 101, 228, - 9, 34, 11, 71, 236, 209, 238, 90, 7, 146, - 57, 185, 109, 226, 92, 36, 165, 219, 239, 44, - 189, 44, 57, 235, 26, 96, 14, 151, 139, 197, - 113, 12, 2, 94, 34, 197, 100, 219, 129, 179, - 156, 123, 225, 163, 251, 228, 110, 136, 213, 82, - 50, 128, 249, 159, 146, 238, 130, 220, 119, 94, - 226, 41, 247, 0, 220, 179, 221, 122, 43, 223, - 69, 185, 118, 78, 81, 187, 125, 196, 64, 139, - 54, 195, 153, 252, 182, 24, 239, 248, 139, 123, - 109, 183, 9, 154, 56, 172, 15, 158, 97, 180, - 173, 49, 184, 242, 182, 53, 212, 58, 0, 134, - 32, 80, 99, 188, 95, 176, 246, 168, 15, 138, - 214, 129, 195, 36, 31, 170, 34, 187, 159, 148, - 47, 9, 168, 65, 211, 132, 102, 10, 8, 171, - 40, 103, 110, 33, 83, 20, 116, 145, 18, 68, - 112, 21, 176, 115, 16, 97, 126, 5, 15, 162, - 209, 99, 43, 14, 75, 207, 23, 24, 230, 87, - 226, 171, 96, 191, 135, 172, 109, 69, 24, 2, - 175, 240, 113, 115, 206, 140, 93, 97, 191, 53, - 133, 163, 35, 173, 4, 203, 154, 100, 50, 189, - 215, 202, 125, 62, 135, 233, 69, 69, 204, 166, - 50, 191, 7, 213, 88, 80, 115, 168, 169, 238, - 183, 224, 16, 73, 146, 51, 155, 104, 111, 248, - 221, 3, 131, 64, 86, 175, 199, 190, 144, 209, - 106, 231, 59, 15, 73, 41, 83, 12, 29, 191, - 13, 190, 202, 92, 69, 198, 65, 255, 236, 243, - 64, 255, 189, 6, 88, 202, 69, 77, 135, 108, - 168, 123, 61, 23, 237, 15, 171, 44, 247, 26, - 218, 253, 127, 126, 182, 0, 34, 10, 248, 64, - 17, 97, 118, 28, 88, 25, 64, 227, 113, 0, - 138, 101, 245, 181, 156, 204, 226, 225, 80, 71, - 75, 163, 247, 143, 22, 235, 143, 49, 137, 193, - 97, 128, 1, 237, 155, 104, 12, 80, 35, 238, - 17, 31, 182, 75, 244, 35, 217, 174, 221, 104, - 232, 172, 136, 250, 160, 213, 42, 237, 57, 156, - 244, 106, 183, 65, 65, 49, 91, 50, 215, 4, - 11, 83, 92, 31, 97, 31, 83, 9, 192, 194, - 248, 53, 123, 122, 64, 40, 167, 206, 20, 49, - 128, 63, 204, 8, 4, 125, 181, 184, 189, 31, - 147, 167, 174, 127, 125, 125, 77, 126, 147, 25, - 149, 162, 44, 196, 192, 159, 108, 133, 142, 52, - 200, 58, 24, 151, 166, 42, 237, 152, 70, 250, - 40, 7, 72, 8, 52, 74, 11, 198, 226, 95, - 171, 98, 78, 125, 149, 56, 189, 65, 49, 49, - 41, 131, 162, 123, 215, 153, 11, 4, 176, 20, - 253, 31, 176, 80, 107, 221, 57, 196, 55, 222, - 86, 234, 61, 203, 50, 154, 252, 233, 181, 250, - 55, 121, 239, 151, 205, 14, 123, 32, 52, 216, - 120, 207, 171, 140, 242, 219, 106, 192, 220, 64, - 253, 153, 121, 164, 160, 195, 156, 93, 248, 166, - 10, 218, 134, 226, 139, 138, 254, 109, 18, 164, - 66, 131, 24, 156, 168, 102, 152, 214, 206, 13, - 235, 47, 183, 102, 229, 212, 164, 95, 209, 107, - 168, 108, 119, 189, 74, 145, 173, 78, 200, 233, - 130, 234, 60, 151, 205, 133, 54, 61, 233, 122, - 199, 173, 158, 28, 147, 155, 166, 230, 232, 230, - 219, 27, 230, 23, 48, 195, 66, 243, 47, 220, - 145, 247, 245, 203, 202, 148, 242, 16, 55, 2, - 117, 32, 65, 195, 173, 62, 86, 186, 25, 36, - 131, 149, 24, 59, 9, 126, 149, 100, 37, 82, - 255, 30, 75, 191, 223, 158, 249, 230, 84, 252, - 180, 162, 155, 90, 244, 235, 177, 17, 207, 156, - 15, 209, 48, 195, 47, 242, 253, 206, 122, 161, - 250, 252, 246, 40, 240, 233, 120, 154, 141, 141, - 224, 189, 216, 120, 254, 98, 83, 121, 231, 167, - 249, 91, 108, 22, 87, 69, 62, 231, 205, 109, - 122, 230, 225, 187, 101, 125, 117, 219, 132, 176, - 123, 62, 206, 51, 119, 166, 149, 235, 68, 239, - 149, 252, 9, 136, 140, 141, 235, 109, 58, 25, - 137, 81, 5, 9, 75, 249, 129, 29, 181, 146, - 59, 89, 176, 0, 1, 161, 183, 31, 105, 50, - 227, 131, 13, 26, 131, 5, 33, 26, 195, 120, - 15, 13, 159, 188, 56, 19, 25, 36, 152, 71, - 0, 57, 117, 245, 69, 17, 8, 78, 23, 119, - 131, 230, 88, 192, 23, 127, 64, 56, 246, 159, - 174, 101, 216, 101, 15, 203, 155, 124, 54, 229, - 213, 6, 64, 10, 118, 89, 11, 72, 217, 104, - 235, 68, 142, 211, 59, 54, 123, 111, 236, 84, - 192, 122, 15, 133, 36, 173, 151, 54, 154, 156, - 27, 37, 162, 85, 63, 245, 254, 247, 252, 202, - 84, 9, 234, 220, 96, 104, 19, 232, 6, 82, - 208, 42, 11, 39, 46, 118, 52, 64, 247, 31, - 130, 227, 37, 24, 113, 19, 99, 133, 61, 243, - 221, 30, 94, 136, 111, 91, 242, 127, 129, 190, - 239, 246, 237, 165, 226, 25, 128, 113, 118, 181, - 112, 112, 19, 5, 176, 116, 235, 162, 237, 32, - 235, 164, 116, 6, 197, 214, 153, 66, 61, 142, - 6, 241, 225, 99, 224, 163, 4, 248, 11, 78, - 41, 4, 234, 168, 231, 231, 97, 57, 239, 46, - 175, 14, 175, 70, 169, 119, 197, 172, 160, 35, - 225, 12, 202, 7, 251, 193, 16, 36, 133, 45, - 139, 0, 81, 53, 134, 18, 224, 20, 253, 148, - 242, 228, 131, 209, 200, 199, 233, 219, 90, 169, - 221, 78, 75, 106, 169, 35, 162, 44, 73, 91, - 61, 247, 153, 149, 144, 242, 250, 155, 255, 228, - 128, 40, 174, 102, 149, 75, 152, 162, 178, 113, - 204, 48, 188, 95, 245, 246, 255, 126, 191, 114, - 100, 115, 96, 57, 141, 243, 86, 87, 74, 149, - 12, 171, 212, 9, 198, 71, 34, 157, 140, 179, - 175, 37, 213, 223, 183, 201, 9, 24, 138, 7, - 47, 117, 164, 151, 37, 30, 79, 125, 146, 73, - 5, 215, 232, 22, 144, 87, 249, 207, 45, 220, - 94, 201, 130, 40, 51, 84, 13, 116, 253, 110, - 99, 191, 45, 148, 225, 30, 248, 50, 114, 162, - 135, 127, 234, 127, 74, 39, 188, 46, 154, 205, - 1, 132, 127, 48, 22, 183, 66, 62, 100, 68, - 83, 243, 79, 153, 241, 113, 102, 53, 141, 93, - 254, 163, 148, 192, 210, 56, 101, 207, 170, 4, - 92, 10, 252, 193, 170, 241, 0, 210, 202, 31, - 213, 206, 166, 225, 122, 164, 188, 58, 147, 80, - 69, 36, 81, 216, 202, 14, 50, 124, 40, 106, - 129, 225, 54, 91, 6, 72, 173, 157, 107, 250, - 54, 188, 65, 126, 145, 78, 62, 229, 178, 122, - 235, 63, 167, 235, 19, 126, 209, 10, 0, 190, - 178, 55, 241, 222, 111, 232, 111, 251, 137, 75, - 18, 115, 85, 226, 21, 71, 219, 83, 43, 213, - 182, 116, 178, 110, 134, 154, 158, 125, 111, 184, - 66, 248, 174, 160, 37, 154, 135, 203, 89, 202, - 100, 118, 211, 50, 118, 57, 94, 210, 188, 98, - 38, 45, 188, 118, 221, 107, 163, 151, 6, 9, - 181, 210, 41, 182, 200, 183, 203, 55, 142, 196, - 200, 162, 202, 104, 37, 154, 230, 83, 74, 61, - 132, 187, 60, 224, 119, 234, 107, 204, 83, 106, - 53, 229, 168, 215, 4, 76, 47, 24, 110, 197, - 166, 105, 95, 114, 90, 237, 125, 147, 66, 11, - 51, 201, 38, 191, 76, 126, 60, 81, 23, 101, - 16, 76, 91, 12, 146, 226, 246, 76, 223, 210, - 31, 249, 150, 177, 61, 238, 204, 149, 232, 175, - 249, 165, 143, 2, 214, 251, 227, 243, 253, 113, - 2, 27, 74, 185, 201, 193, 130, 226, 156, 53, - 71, 18, 101, 244, 234, 104, 138, 70, 224, 53, - 48, 52, 176, 255, 81, 65, 103, 197, 222, 81, - 8, 49, 97, 86, 184, 252, 208, 58, 202, 122, - 197, 88, 50, 9, 197, 127, 181, 74, 242, 139, - 135, 40, 14, 231, 23, 165, 55, 11, 130, 199, - 151, 103, 112, 239, 37, 103, 189, 61, 82, 28, - 218, 219, 242, 9, 207, 208, 158, 237, 250, 212, - 188, 12, 199, 74, 107, 236, 125, 162, 122, 77, - 204, 16, 220, 106, 199, 165, 179, 74, 23, 156, - 115, 35, 252, 216, 124, 144, 166, 231, 234, 169, - 44, 191, 21, 113, 54, 197, 250, 90, 238, 99, - 225, 171, 246, 86, 236, 247, 249, 255, 254, 176, - 98, 124, 19, 35, 226, 72, 206, 148, 80, 81, - 53, 203, 52, 85, 220, 7, 145, 63, 193, 118, - 170, 233, 211, 205, 225, 45, 222, 161, 199, 190, - 148, 19, 172, 48, 197, 243, 27, 5, 170, 50, - 26, 62, 238, 2, 24, 230, 45, 10, 86, 102, - 65, 253, 46, 210, 75, 93, 126, 11, 107, 198, - 51, 221, 24, 204, 209, 73, 151, 228, 139, 222, - 60, 60, 165, 45, 236, 176, 223, 169, 131, 20, - 111, 161, 134, 220, 245, 249, 196, 107, 85, 200, - 36, 183, 185, 119, 156, 174, 200, 92, 156, 44, - 208, 173, 112, 21, 144, 61, 220, 161, 80, 56, - 62, 235, 58, 103, 151, 97, 152, 209, 26, 183, - 162, 230, 239, 194, 79, 37, 192, 135, 235, 81, - 171, 6, 223, 209, 120, 89, 20, 210, 27, 198, - 253, 67, 13, 76, 159, 99, 111, 168, 137, 153, - 128, 2, 103, 10, 112, 82, 122, 132, 254, 10, - 186, 61, 147, 123, 120, 83, 48, 79, 41, 206, - 40, 135, 212, 108, 102, 228, 207, 8, 36, 57, - 122, 75, 141, 177, 221, 231, 212, 40, 81, 255, - 167, 206, 96, 96, 247, 233, 127, 88, 121, 188, - 40, 63, 171, 53, 187, 129, 122, 19, 24, 235, - 108, 213, 56, 166, 103, 111, 206, 5, 28, 181, - 180, 192, 140, 159, 151, 195, 141, 50, 26, 184, - 223, 197, 36, 54, 85, 151, 197, 195, 138, 204, - 171, 161, 91, 134, 157, 108, 0, 44, 233, 236, - 85, 250, 145, 102, 178, 43, 7, 194, 184, 47, - 126, 139, 153, 94, 7, 26, 228, 239, 218, 208, - 102, 145, 199, 211, 24, 128, 254, 81, 4, 142, - 58, 90, 26, 168, 172, 153, 208, 107, 38, 19, - 158, 4, 160, 57, 117, 84, 41, 9, 21, 86, - 104, 209, 163, 107, 6, 137, 161, 253, 242, 85, - 166, 6, 245, 42, 205, 152, 218, 1, 69, 165, - 236, 147, 74, 16, 189, 230, 43, 10, 61, 220, - 116, 113, 255, 180, 85, 106, 210, 92, 133, 126, - 142, 170, 254, 33, 4, 0, 236, 176, 208, 196, - 158, 26, 123, 234, 44, 208, 75, 235, 27, 18, - 128, 224, 110, 251, 122, 13, 153, 252, 65, 134, - 33, 112, 38, 70, 80, 234, 79, 226, 64, 110, - 74, 105, 183, 178, 198, 67, 216, 60, 168, 214, - 132, 207, 236, 79, 27, 33, 49, 229, 193, 109, - 252, 244, 167, 231, 99, 166, 9, 135, 75, 45, - 187, 184, 57, 250, 87, 80, 229, 197, 209, 184, - 203, 68, 67, 6, 216, 113, 154, 190, 103, 60, - 245, 14, 241, 222, 100, 40, 140, 71, 101, 198, - 240, 157, 61, 25, 242, 244, 25, 247, 9, 198, - 104, 170, 162, 26, 89, 39, 27, 173, 160, 67, - 113, 198, 128, 46, 59, 251, 55, 214, 164, 102, - 223, 141, 167, 95, 78, 151, 44, 210, 144, 143, - 171, 100, 140, 187, 23, 178, 14, 55, 249, 68, - 187, 200, 201, 50, 7, 30, 155, 254, 77, 159, - 34, 123, 101, 249, 230, 56, 130, 54, 180, 151, - 124, 15, 219, 98, 165, 58, 39, 195, 87, 139, - 0, 45, 140, 182, 223, 51, 214, 19, 61, 109, - 205, 84, 12, 127, 75, 233, 139, 204, 87, 34, - 88, 88, 98, 29, 63, 106, 233, 163, 234, 183, - 166, 56, 113, 26, 49, 51, 25, 104, 147, 183, - 152, 76, 62, 12, 117, 217, 99, 100, 213, 202, - 239, 172, 24, 50, 212, 156, 251, 63, 34, 70, - 159, 92, 35, 196, 181, 253, 192, 146, 145, 35, - 123, 6, 47, 227, 2, 211, 115, 145, 73, 0, - 179, 66, 17, 197, 86, 70, 106, 18, 162, 122, - 186, 101, 137, 166, 232, 109, 82, 247, 223, 111, -}; diff --git a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomTest.c b/U= efiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomTest.c deleted file mode 100644 index 97a388ca1c..0000000000 --- a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomTest.c +++ /dev/null @@ -1,926 +0,0 @@ -/** @file - Random test case for Unit tests of the CpuPageTableLib instance of the= CpuPageTableLib class - - Copyright (c) 2022, Intel Corporation. All rights reserved.<BR> - SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -#include "CpuPageTableLibUnitTest.h" -#include "RandomTest.h" - -UINTN RandomNumber =3D 0; -extern IA32_PAGING_ENTRY mValidMaskNoLeaf[6]; -extern IA32_PAGING_ENTRY mValidMaskLeaf[6]; -extern IA32_PAGING_ENTRY mValidMaskLeafFlag[6]; -UINTN mRandomOption; -IA32_MAP_ATTRIBUTE mSupportedBit; -extern UINTN mNumberCount; -extern UINT8 mNumbers[]; -UINTN mNumberIndex; -UINT64 AlignedTable[] =3D { - ~((UINT64)SIZE_4KB - 1), - ~((UINT64)SIZE_2MB - 1), - ~((UINT64)SIZE_1GB - 1) -}; - -/** - Generates a pseudorandom byte stream of the specified size. - - Return FALSE to indicate this interface is not supported. - - @param[out] Output Pointer to buffer to receive random value. - @param[in] Size Size of random bytes to generate. - - @retval TRUE Always return TRUE - -**/ -BOOLEAN -EFIAPI -RandomBytesUsingArray ( - OUT UINT8 *Output, - IN UINTN Size - ) -{ - UINTN Index; - - for (Index =3D 0; Index < Size; Index++) { - if (mNumberIndex >=3D mNumberCount) { - mNumberIndex =3D 0; - } - - Output[Index] =3D mNumbers[mNumberIndex]; - mNumberIndex++; - } - - return TRUE; -} - -/** - Generates a pseudorandom byte stream of the specified size. - - Return FALSE to indicate this interface is not supported. - - @param[out] Output Pointer to buffer to receive random value. - @param[in] Size Size of random bytes to generate. - - @retval TRUE Pseudorandom byte stream generated successfully. - @retval FALSE Pseudorandom number generator fails -**/ -BOOLEAN -EFIAPI -LocalRandomBytes ( - OUT UINT8 *Output, - IN UINTN Size - ) -{ - if (mRandomOption & USE_RANDOM_ARRAY) { - return RandomBytesUsingArray (Output, Size); - } else { - return RandomBytes (Output, Size); - } -} - -/** - Return a random boolean. - - @return boolean -**/ -BOOLEAN -RandomBoolean ( - VOID - ) -{ - BOOLEAN Value; - - LocalRandomBytes ((UINT8 *)&Value, sizeof (BOOLEAN)); - return Value%2; -} - -/** - Return a 32bit random number. - - @param Start Start of the random number range. - @param Limit Limit of the random number range, and return value can b= e Limit. - @return 32bit random number -**/ -UINT32 -Random32 ( - UINT32 Start, - UINT32 Limit - ) -{ - UINT64 Value; - - LocalRandomBytes ((UINT8 *)&Value, sizeof (UINT64)); - return (UINT32)(Value % (Limit - Start + 1)) + Start; -} - -/** - Return a 64bit random number. - - @param Start Start of the random number range. - @param Limit Limit of the random number range, and return value can b= e Limit. - @return 64bit random number -**/ -UINT64 -Random64 ( - UINT64 Start, - UINT64 Limit - ) -{ - UINT64 Value; - - LocalRandomBytes ((UINT8 *)&Value, sizeof (UINT64)); - if (Limit - Start =3D=3D MAX_UINT64) { - return (UINT64)(Value); - } - - return (UINT64)(Value % (Limit - Start + 1)) + Start; -} - -/** - Check if the Page table entry is valid - - @param[in] PagingEntry The entry in page table to verify - @param[in] Level the level of PagingEntry. - @param[in] MaxLeafLevel Max leaf entry level. - @param[in] LinearAddress The linear address verified. - - @retval Leaf entry. -**/ -UNIT_TEST_STATUS -ValidateAndRandomeModifyPageTablePageTableEntry ( - IN IA32_PAGING_ENTRY *PagingEntry, - IN UINTN Level, - IN UINTN MaxLeafLevel, - IN UINT64 Address - ) -{ - UINT64 Index; - UINT64 TempPhysicalBase; - IA32_PAGING_ENTRY *ChildPageEntry; - UNIT_TEST_STATUS Status; - - if (PagingEntry->Pce.Present =3D=3D 0) { - return UNIT_TEST_PASSED; - } - - if ((PagingEntry->Uint64 & mValidMaskLeafFlag[Level].Uint64) =3D=3D mV= alidMaskLeafFlag[Level].Uint64) { - // - // It is a Leaf - // - if (Level > MaxLeafLevel) { - UT_ASSERT_TRUE (Level <=3D MaxLeafLevel); - } - - if ((PagingEntry->Uint64 & mValidMaskLeaf[Level].Uint64) !=3D Paging= Entry->Uint64) { - UT_ASSERT_EQUAL ((PagingEntry->Uint64 & mValidMaskLeaf[Level].Uint= 64), PagingEntry->Uint64); - } - - if ((RandomNumber < 100) && RandomBoolean ()) { - RandomNumber++; - if (Level =3D=3D 1) { - TempPhysicalBase =3D PagingEntry->Pte4K.Bits.PageTableBaseAddres= s; - } else { - TempPhysicalBase =3D PagingEntry->PleB.Bits.PageTableBaseAddress= ; - } - - PagingEntry->Uint64 =3D (Random64 (0, MAX_UINT64) & mV= alidMaskLeaf[Level].Uint64) | mValidMaskLeafFlag[Level].Uint64; - PagingEntry->Pte4K.Bits.Present =3D 1; - if (Level =3D=3D 1) { - PagingEntry->Pte4K.Bits.PageTableBaseAddress =3D TempPhysicalBas= e; - } else { - PagingEntry->PleB.Bits.PageTableBaseAddress =3D TempPhysicalBase= ; - } - - if ((PagingEntry->Uint64 & mValidMaskLeaf[Level].Uint64) !=3D Pagi= ngEntry->Uint64) { - UT_ASSERT_EQUAL ((PagingEntry->Uint64 & mValidMaskLeaf[Level].Ui= nt64), PagingEntry->Uint64); - } - } - - return UNIT_TEST_PASSED; - } - - // - // Not a leaf - // - UT_ASSERT_NOT_EQUAL (Level, 1); - if ((PagingEntry->Uint64 & mValidMaskNoLeaf[Level].Uint64) !=3D Paging= Entry->Uint64) { - DEBUG ((DEBUG_ERROR, "ERROR: Level %d no Leaf entry is 0x%lx, which = reserved bit is set \n", Level, PagingEntry->Uint64)); - UT_ASSERT_EQUAL ((PagingEntry->Uint64 & mValidMaskNoLeaf[Level].Uint= 64), PagingEntry->Uint64); - } - - if ((RandomNumber < 100) && RandomBoolean ()) { - RandomNumber++; - TempPhysicalBase =3D PagingEntry->Pnle.Bits.PageTableBaseAddress; - - PagingEntry->Uint64 =3D Random64 (0, MAX_UIN= T64) & mValidMaskNoLeaf[Level].Uint64; - PagingEntry->Pnle.Bits.Present =3D 1; - PagingEntry->Pnle.Bits.PageTableBaseAddress =3D TempPhysicalBase; - ASSERT ((PagingEntry->Uint64 & mValidMaskLeafFlag[Level].Uint64) !=3D= mValidMaskLeafFlag[Level].Uint64); - } - - ChildPageEntry =3D (IA32_PAGING_ENTRY *)(UINTN)((PagingEntry->Pnle.Bi= ts.PageTableBaseAddress) << 12); - for (Index =3D 0; Index < 512; Index++) { - Status =3D ValidateAndRandomeModifyPageTablePageTableEntry (&ChildPa= geEntry[Index], Level-1, MaxLeafLevel, Address + (Index<<(9*(Level-1) + 3= ))); - if (Status !=3D UNIT_TEST_PASSED) { - return Status; - } - } - - return UNIT_TEST_PASSED; -} - -/** - Check if the Page table is valid - - @param[in] PageTable The pointer to the page table. - @param[in] PagingMode The paging mode. - - @retval UNIT_TEST_PASSED It is a valid Page Table -**/ -UNIT_TEST_STATUS -ValidateAndRandomeModifyPageTable ( - IN UINTN PageTable, - IN PAGING_MODE PagingMode - ) -{ - UINTN MaxLevel; - UINTN MaxLeafLevel; - UINT64 Index; - UNIT_TEST_STATUS Status; - IA32_PAGING_ENTRY *PagingEntry; - - if ((PagingMode =3D=3D Paging32bit) || (PagingMode =3D=3D PagingPae) |= | (PagingMode >=3D PagingModeMax)) { - // - // 32bit paging is never supported. - // PAE paging will be supported later. - // - return UNIT_TEST_ERROR_TEST_FAILED; - } - - MaxLeafLevel =3D (UINT8)PagingMode; - MaxLevel =3D (UINT8)(PagingMode >> 8); - - PagingEntry =3D (IA32_PAGING_ENTRY *)(UINTN)PageTable; - for (Index =3D 0; Index < 512; Index++) { - Status =3D ValidateAndRandomeModifyPageTablePageTableEntry (&PagingE= ntry[Index], MaxLevel, MaxLeafLevel, Index << (9 * MaxLevel + 3)); - if (Status !=3D UNIT_TEST_PASSED) { - return Status; - } - } - - return Status; -} - -/** - Generate single random map entry. - The map entry can be the input of function PageTableMap - the LinearAddress and length is aligned to aligned table. - - @param MaxAddress Max Address. - @param MapEntrys Output MapEntrys contains all parameter as input of= function PageTableMap -**/ -VOID -GenerateSingleRandomMapEntry ( - IN UINT64 MaxAddress, - IN OUT MAP_ENTRYS *MapEntrys - ) -{ - UINTN MapsIndex; - UINT64 FormerLinearAddress; - UINT64 FormerLinearAddressBottom; - UINT64 FormerLinearAddressTop; - - MapsIndex =3D MapEntrys->Count; - - ASSERT (MapsIndex < MapEntrys->MaxCount); - // - // use AlignedTable to avoid that a random number can be very hard to = be 1G or 2M aligned - // - if ((MapsIndex !=3D 0) && (RandomBoolean ())) { - FormerLinearAddress =3D MapEntrys->Maps[Random32 (0, (UINT32)MapsInd= ex-1)].LinearAddress; - if (FormerLinearAddress < 2 * (UINT64)SIZE_1GB) { - FormerLinearAddressBottom =3D 0; - } else { - FormerLinearAddressBottom =3D FormerLinearAddress - 2 * (UINT64)SI= ZE_1GB; - } - - if (FormerLinearAddress + 2 * (UINT64)SIZE_1GB > MaxAddress) { - FormerLinearAddressTop =3D MaxAddress; - } else { - FormerLinearAddressTop =3D FormerLinearAddress + 2 * (UINT64)SIZE_= 1GB; - } - - MapEntrys->Maps[MapsIndex].LinearAddress =3D Random64 (FormerLinearA= ddressBottom, FormerLinearAddressTop) & AlignedTable[Random32 (0, ARRAY_S= IZE (AlignedTable) -1)]; - } else { - MapEntrys->Maps[MapsIndex].LinearAddress =3D Random64 (0, MaxAddress= ) & AlignedTable[Random32 (0, ARRAY_SIZE (AlignedTable) -1)]; - } - - // - // To have better performance, limit the size less than 10G - // - MapEntrys->Maps[MapsIndex].Length =3D Random64 (0, MIN (MaxAddress - M= apEntrys->Maps[MapsIndex].LinearAddress, 10 * (UINT64)SIZE_1GB)) & Aligne= dTable[Random32 (0, ARRAY_SIZE (AlignedTable) -1)]; - - if ((MapsIndex !=3D 0) && (RandomBoolean ())) { - MapEntrys->Maps[MapsIndex].Attribute.Uint64 =3D MapEntrys->Maps[Rand= om32 (0, (UINT32)MapsIndex-1)].Attribute.Uint64; - MapEntrys->Maps[MapsIndex].Mask.Uint64 =3D MapEntrys->Maps[Rand= om32 (0, (UINT32)MapsIndex-1)].Mask.Uint64; - } else { - MapEntrys->Maps[MapsIndex].Attribute.Uint64 =3D Random64 (0, MAX_UIN= T64) & mSupportedBit.Uint64; - MapEntrys->Maps[MapsIndex].Mask.Uint64 =3D Random64 (0, MAX_UIN= T64) & mSupportedBit.Uint64; - if (MapEntrys->Maps[MapsIndex].Mask.Bits.ProtectionKey !=3D 0) { - MapEntrys->Maps[MapsIndex].Mask.Bits.ProtectionKey =3D 0xF; - } - } - - if (mRandomOption & ONLY_ONE_ONE_MAPPING) { - MapEntrys->Maps[MapsIndex].Attribute.Bits.PageTableBaseAddress =3D M= apEntrys->Maps[MapsIndex].LinearAddress >> 12; - MapEntrys->Maps[MapsIndex].Mask.Bits.PageTableBaseAddress =3D 0= xFFFFFFFFFF; - } else { - // - // Todo: If the mask bit for base address is zero, when dump the pag= etable, every entry mapping to physical address zeor. - // This means the map count will be a large number, and imposs= ible to finish in proper time. - // Need to avoid such case when remove the Random option ONLY_= ONE_ONE_MAPPING - // - MapEntrys->Maps[MapsIndex].Attribute.Bits.PageTableBaseAddress =3D (= Random64 (0, (((UINT64)1)<<52) - 1) & AlignedTable[Random32 (0, ARRAY_SIZ= E (AlignedTable) -1)])>> 12; - if (RandomBoolean ()) { - MapEntrys->Maps[MapsIndex].Mask.Bits.PageTableBaseAddress =3D 0; - } - } - - MapEntrys->Count +=3D 1; -} - -/** - Compare the attribute for one point. - MapEntrys records every memory ranges that is used as input - Map and MapCount are gotten from Page table - Compare if this point have same attribute. - - @param[in] Address Address of one Point. - @param[in] MapEntrys Record every memory ranges that is used as inp= ut - @param[in] Map Pointer to an array that describes multiple li= near address ranges. - @param[in] MapCount Pointer to a UINTN that hold the number of ent= ries in the Map. - @param[in] InitMap Pointer to an array that describes init map en= tries. - @param[in] InitMapCount Pointer to a UINTN that hold the number of ini= t map entries. - - @retval TRUE At least one byte of data is available to be rea= d - @retval FALSE No data is available to be read -**/ -BOOLEAN -CompareEntrysforOnePoint ( - IN UINT64 Address, - IN MAP_ENTRYS *MapEntrys, - IN IA32_MAP_ENTRY *Map, - IN UINTN MapCount, - IN IA32_MAP_ENTRY *InitMap, - IN UINTN InitMapCount - ) -{ - UINTN Index; - IA32_MAP_ATTRIBUTE AttributeInInitMap; - IA32_MAP_ATTRIBUTE AttributeInMap; - IA32_MAP_ATTRIBUTE AttributeInMapEntrys; - IA32_MAP_ATTRIBUTE MaskInMapEntrys; - - AttributeInMap.Uint64 =3D 0; - AttributeInMapEntrys.Uint64 =3D 0; - AttributeInInitMap.Uint64 =3D 0; - MaskInMapEntrys.Uint64 =3D 0; - // - // Assume every entry in maps does not overlap with each other - // - for (Index =3D 0; Index < MapCount; Index++) { - if ((Address >=3D Map[Index].LinearAddress) && (Address < (Map[Index= ].LinearAddress + Map[Index].Length))) { - AttributeInMap.Uint64 =3D (Map[Index].Attribute= .Uint64 & mSupportedBit.Uint64); - AttributeInMap.Bits.PageTableBaseAddress =3D ((Address - Map[Index= ].LinearAddress) >> 12) + Map[Index].Attribute.Bits.PageTableBaseAddress; - break; - } - } - - // - // Assume every entry in maps does not overlap with each other - // - for (Index =3D 0; Index < InitMapCount; Index++) { - if ((Address >=3D InitMap[Index].LinearAddress) && (Address < (InitM= ap[Index].LinearAddress + InitMap[Index].Length))) { - AttributeInInitMap.Uint64 =3D (InitMap[Index].A= ttribute.Uint64 & mSupportedBit.Uint64); - AttributeInInitMap.Bits.PageTableBaseAddress =3D ((Address - InitM= ap[Index].LinearAddress) >> 12) + InitMap[Index].Attribute.Bits.PageTable= BaseAddress; - break; - } - } - - AttributeInMapEntrys.Uint64 =3D AttributeInInitMap.Uint64; - - for (Index =3D MapEntrys->InitCount; Index < MapEntrys->Count; Index++= ) { - if ((Address >=3D MapEntrys->Maps[Index].LinearAddress) && (Address = < (MapEntrys->Maps[Index].LinearAddress + MapEntrys->Maps[Index].Length))= ) { - if (AttributeInMapEntrys.Bits.Present =3D=3D 0) { - AttributeInMapEntrys.Uint64 =3D 0; - MaskInMapEntrys.Uint64 =3D 0; - } - - MaskInMapEntrys.Uint64 |=3D MapEntrys->Maps[Index].Mask.Uint6= 4; - AttributeInMapEntrys.Uint64 &=3D (~MapEntrys->Maps[Index].Mask.Uin= t64); - AttributeInMapEntrys.Uint64 |=3D (MapEntrys->Maps[Index].Attribut= e.Uint64 & MapEntrys->Maps[Index].Mask.Uint64); - if (MapEntrys->Maps[Index].Mask.Bits.PageTableBaseAddress !=3D 0) = { - AttributeInMapEntrys.Bits.PageTableBaseAddress =3D ((Address - M= apEntrys->Maps[Index].LinearAddress) >> 12) + MapEntrys->Maps[Index].Attr= ibute.Bits.PageTableBaseAddress; - } - } - } - - if (AttributeInMap.Bits.Present =3D=3D 0) { - if (AttributeInMapEntrys.Bits.Present =3D=3D 0) { - return TRUE; - } - } - - if ((AttributeInMap.Uint64 & MaskInMapEntrys.Uint64) !=3D (AttributeIn= MapEntrys.Uint64 & MaskInMapEntrys.Uint64)) { - DEBUG ((DEBUG_INFO, "=3D=3D=3D=3D=3D=3Ddetailed information begin=3D= =3D=3D=3D=3D\n")); - DEBUG ((DEBUG_INFO, "\nError: Detect different attribute on a point = with linear address: 0x%lx\n", Address)); - DEBUG ((DEBUG_INFO, "By parsing page table, the point has Attribute = 0x%lx, and map to physical address 0x%lx\n", IA32_MAP_ATTRIBUTE_ATTRIBUTE= S (&AttributeInMap) & MaskInMapEntrys.Uint64, AttributeInMap.Bits.PageTab= leBaseAddress)); - DEBUG ((DEBUG_INFO, "While according to inputs, the point should Att= ribute 0x%lx, and should map to physical address 0x%lx\n", IA32_MAP_ATTRI= BUTE_ATTRIBUTES (&AttributeInMapEntrys) & MaskInMapEntrys.Uint64, Attribu= teInMapEntrys.Bits.PageTableBaseAddress)); - DEBUG ((DEBUG_INFO, "The total Mask is 0x%lx\n", MaskInMapEntrys.Uin= t64)); - - if (MapEntrys->InitCount !=3D 0) { - DEBUG ((DEBUG_INFO, "Below is the initialization status:\n")); - for (Index =3D 0; Index < InitMapCount; Index++) { - if ((Address >=3D InitMap[Index].LinearAddress) && (Address < (I= nitMap[Index].LinearAddress + InitMap[Index].Length))) { - DEBUG ((DEBUG_INFO, " *")); - } else { - DEBUG ((DEBUG_INFO, " ")); - } - - DEBUG ((DEBUG_INFO, " %02d: {0x%lx, 0x%lx, 0x%lx}\n", Index, In= itMap[Index].LinearAddress, InitMap[Index].LinearAddress + InitMap[Index]= .Length, InitMap[Index].Attribute.Uint64)); - } - } - - DEBUG ((DEBUG_INFO, "Below is the inputs:\n")); - DEBUG ((DEBUG_INFO, " Index: {LinearAddress, LinearLimit, Mask, Att= ribute}\n")); - for (Index =3D MapEntrys->InitCount; Index < MapEntrys->Count; Index= ++) { - if ((Address >=3D MapEntrys->Maps[Index].LinearAddress) && (Addres= s < (MapEntrys->Maps[Index].LinearAddress + MapEntrys->Maps[Index].Length= ))) { - DEBUG ((DEBUG_INFO, " *")); - } else { - DEBUG ((DEBUG_INFO, " ")); - } - - DEBUG (( - DEBUG_INFO, - " %02d: {0x%lx, 0x%lx, 0x%lx,0x%lx}\n", - Index, - MapEntrys->Maps[Index].LinearAddress, - MapEntrys->Maps[Index].LinearAddress + MapEntrys->Maps[Index].Le= ngth, - MapEntrys->Maps[Index].Mask.Uint64, - MapEntrys->Maps[Index].Attribute.Uint64 - )); - } - - DEBUG ((DEBUG_INFO, "Below is the dumped from pagetable:\n")); - for (Index =3D 0; Index < MapCount; Index++) { - if ((Address >=3D Map[Index].LinearAddress) && (Address < (Map[Ind= ex].LinearAddress + Map[Index].Length))) { - DEBUG ((DEBUG_INFO, " *")); - } else { - DEBUG ((DEBUG_INFO, " ")); - } - - DEBUG ((DEBUG_INFO, "%02d: {0x%lx, 0x%lx, 0x%lx}\n", Index, Map[In= dex].LinearAddress, Map[Index].LinearAddress + Map[Index].Length, Map[Ind= ex].Attribute.Uint64)); - } - - DEBUG ((DEBUG_INFO, "=3D=3D=3D=3D=3D=3Ddetailed information done=3D=3D= =3D=3D=3D\n")); - return FALSE; - } - - return TRUE; -} - -/** - Append key point of a given address to Buffer - if buffer is NULL, only count needed count - - @param[in, out] Buffer Buffer to contains all key point. - @param[in, out] Count Count of the key point. - @param[in] Address given address -**/ -VOID -AppendKeyPointToBuffer ( - IN OUT UINT64 *Buffer, - IN OUT UINTN *Count, - IN UINT64 Address - ) -{ - if ( Buffer !=3D NULL) { - Buffer[*Count] =3D Address; - (*Count)++; - Buffer[*Count] =3D Address+1; - (*Count)++; - Buffer[*Count] =3D Address-1; - (*Count)++; - } else { - (*Count) =3D (*Count) +3; - } -} - -/** - Get all key points from a buffer - if buffer is NULL, only count needed count - - @param[in] MapEntrys Record every memory ranges that is used as inp= ut - @param[in] Map Pointer to an array that describes multiple li= near address ranges. - @param[in] MapCount Pointer to a UINTN that hold the actual number= of entries in the Map. - @param[in, out] Buffer Buffer to contains all key point. - @param[in, out] Count Count of the key point. -**/ -VOID -GetKeyPointList ( - IN MAP_ENTRYS *MapEntrys, - IN IA32_MAP_ENTRY *Map, - IN UINTN MapCount, - IN OUT UINT64 *Buffer, - IN OUT UINTN *Count - ) -{ - UINTN TemCount; - UINTN Index1; - UINTN Index2; - - TemCount =3D 0; - - for (Index1 =3D 0; Index1 < MapEntrys->Count; Index1++) { - AppendKeyPointToBuffer (Buffer, &TemCount, MapEntrys->Maps[Index1].L= inearAddress); - AppendKeyPointToBuffer (Buffer, &TemCount, MapEntrys->Maps[Index1].L= inearAddress + MapEntrys->Maps[Index1].Length); - } - - for (Index2 =3D 0; Index2 < MapCount; Index2++) { - if (Buffer !=3D NULL) { - for (Index1 =3D 0; Index1 < TemCount; Index1++) { - if (Buffer[Index1] =3D=3D Map[Index2].LinearAddress) { - break; - } - } - - if (Index1 < TemCount) { - continue; - } - } - - AppendKeyPointToBuffer (Buffer, &TemCount, Map[Index2].LinearAddress= ); - } - - for (Index2 =3D 0; Index2 < MapCount; Index2++) { - if (Buffer !=3D NULL) { - for (Index1 =3D 0; Index1 < TemCount; Index1++) { - if (Buffer[Index1] =3D=3D (Map[Index2].LinearAddress + Map[Index= 2].Length)) { - break; - } - } - - if (Index1 < TemCount) { - continue; - } - } - - AppendKeyPointToBuffer (Buffer, &TemCount, Map[Index2].LinearAddress= + Map[Index2].Length); - } - - *Count =3D TemCount; -} - -/** - Generate random one range with randome attribute, and add it into page= table - Compare the key point has same attribute - - @param[in, out] PageTable The pointer to the page table to update,= or pointer to NULL if a new page table is to be created. - @param[in] PagingMode The paging mode. - @param[in] MaxAddress Max Address. - @param[in] MapEntrys Record every memory ranges that is used = as input - @param[in] PagesRecord Used to record memory usage for page tab= le. - @param[in] InitMap Pointer to an array that describes init m= ap entries. - @param[in] InitMapCount Pointer to a UINTN that hold the number o= f init map entries. - - @retval UNIT_TEST_PASSED The test is successful. -**/ -UNIT_TEST_STATUS -SingleMapEntryTest ( - IN OUT UINTN *PageTable, - IN PAGING_MODE PagingMode, - IN UINT64 MaxAddress, - IN MAP_ENTRYS *MapEntrys, - IN ALLOCATE_PAGE_RECORDS *PagesRecord, - IN IA32_MAP_ENTRY *InitMap, - IN UINTN InitMapCount - ) -{ - UINTN MapsIndex; - RETURN_STATUS Status; - UINTN PageTableBufferSize; - VOID *Buffer; - IA32_MAP_ENTRY *Map; - UINTN MapCount; - UINTN Index; - UINTN KeyPointCount; - UINTN NewKeyPointCount; - UINT64 *KeyPointBuffer; - UINTN Level; - UINT64 Value; - UNIT_TEST_STATUS TestStatus; - - MapsIndex =3D MapEntrys->Count; - - GenerateSingleRandomMapEntry (MaxAddress, MapEntrys); - - PageTableBufferSize =3D 0; - Status =3D PageTableMap ( - PageTable, - PagingMode, - NULL, - &PageTableBufferSize, - MapEntrys->Maps[MapsIndex].LinearAddress, - MapEntrys->Maps[MapsIndex].Length, - &MapEntrys->Maps[MapsIndex].Attribute, - &MapEntrys->Maps[MapsIndex].Mask - ); - if (PageTableBufferSize !=3D 0) { - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - - // - // Allocate memory for Page table - // Note the memory is used in one complete Random test. - // - Buffer =3D PagesRecord->AllocatePagesForPageTable (PagesRecord, EFI_= SIZE_TO_PAGES (PageTableBufferSize)); - UT_ASSERT_NOT_EQUAL (Buffer, NULL); - Status =3D PageTableMap ( - PageTable, - PagingMode, - Buffer, - &PageTableBufferSize, - MapEntrys->Maps[MapsIndex].LinearAddress, - MapEntrys->Maps[MapsIndex].Length, - &MapEntrys->Maps[MapsIndex].Attribute, - &MapEntrys->Maps[MapsIndex].Mask - ); - } - - if (Status !=3D RETURN_SUCCESS ) { - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - } - - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - TestStatus =3D IsPageTableValid (*PageTable, PagingMode); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - - MapCount =3D 0; - Status =3D PageTableParse (*PageTable, PagingMode, NULL, &MapCount); - if (MapCount !=3D 0) { - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - - // - // Allocate memory for Maps - // Note the memory is only used in this one Single MapEntry Test - // - Map =3D AllocatePages (EFI_SIZE_TO_PAGES (MapCount * sizeof (IA32_MA= P_ENTRY))); - ASSERT (Map !=3D NULL); - Status =3D PageTableParse (*PageTable, PagingMode, Map, &MapCount); - } - - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - - // - // Allocate memory to record all key point - // Note the memory is only used in this one Single MapEntry Test - // - KeyPointCount =3D 0; - GetKeyPointList (MapEntrys, Map, MapCount, NULL, &KeyPointCount); - KeyPointBuffer =3D AllocatePages (EFI_SIZE_TO_PAGES (KeyPointCount * s= izeof (UINT64))); - ASSERT (KeyPointBuffer !=3D NULL); - NewKeyPointCount =3D 0; - GetKeyPointList (MapEntrys, Map, MapCount, KeyPointBuffer, &NewKeyPoin= tCount); - - // - // Compare all key point's attribute - // - for (Index =3D 0; Index < NewKeyPointCount; Index++) { - if (!CompareEntrysforOnePoint (KeyPointBuffer[Index], MapEntrys, Map= , MapCount, InitMap, InitMapCount)) { - DEBUG ((DEBUG_INFO, "Error happens at below key point\n")); - DEBUG ((DEBUG_INFO, "Index =3D %d KeyPointBuffer[Index] =3D 0x%lx\= n", Index, KeyPointBuffer[Index])); - Value =3D GetEntryFromPageTable (*PageTable, PagingMode, KeyPointB= uffer[Index], &Level); - DEBUG ((DEBUG_INFO, "From Page table, this key point is in level %= d entry, with entry value is 0x%lx\n", Level, Value)); - UT_ASSERT_TRUE (FALSE); - } - } - - FreePages (KeyPointBuffer, EFI_SIZE_TO_PAGES (KeyPointCount * sizeof (= UINT64))); - if (MapCount !=3D 0) { - FreePages (Map, EFI_SIZE_TO_PAGES (MapCount * sizeof (IA32_MAP_ENTRY= ))); - } - - return UNIT_TEST_PASSED; -} - -/** - Allocate page and record the information in PagesRecord - - @param[in] PagesRecord Point to a struct to record memory usage - @param[in] Pages Page count needed to allocate - - @return A pointer to the allocated buffer or NULL if allocation fails. -**/ -VOID * -EFIAPI -RecordAllocatePages ( - IN ALLOCATE_PAGE_RECORDS *PagesRecord, - IN UINTN Pages - ) -{ - VOID *Buffer; - - Buffer =3D NULL; - if (PagesRecord->Count < PagesRecord->MaxCount) { - Buffer =3D AllocatePages (P= ages); - PagesRecord->Records[PagesRecord->Count].Buffer =3D Buffer; - PagesRecord->Records[PagesRecord->Count].Pages =3D Pages; - PagesRecord->Count++; - } - - ASSERT (Buffer !=3D NULL); - - return Buffer; -} - -/** - The function is a whole Random test, it will call SingleMapEntryTest f= or ExpctedEntryNumber times - - @param[in] ExpctedEntryNumber The count of random entry - @param[in] PagingMode The paging mode. - - @retval UNIT_TEST_PASSED The test is successful. -**/ -UNIT_TEST_STATUS -MultipleMapEntryTest ( - IN UINTN ExpctedEntryNumber, - IN PAGING_MODE PagingMode - ) -{ - UINTN PageTable; - UINT64 MaxAddress; - MAP_ENTRYS *MapEntrys; - ALLOCATE_PAGE_RECORDS *PagesRecord; - UINTN Index; - UNIT_TEST_STATUS TestStatus; - RETURN_STATUS Status; - IA32_MAP_ENTRY *InitMap; - UINTN InitMapCount; - - MaxAddress =3D GetMaxAddress (PagingMode); - PageTable =3D 0; - MapEntrys =3D AllocatePages (EFI_SIZE_TO_PAGES (1000*sizeof (MAP_ENTR= Y) + sizeof (MAP_ENTRYS))); - ASSERT (MapEntrys !=3D NULL); - MapEntrys->Count =3D 0; - MapEntrys->InitCount =3D 0; - MapEntrys->MaxCount =3D 1000; - PagesRecord =3D AllocatePages (EFI_SIZE_TO_PAGES (1000*sizeof= (ALLOCATE_PAGE_RECORD) + sizeof (ALLOCATE_PAGE_RECORDS))); - ASSERT (PagesRecord !=3D NULL); - PagesRecord->Count =3D 0; - PagesRecord->MaxCount =3D 1000; - PagesRecord->AllocatePagesForPageTable =3D RecordAllocatePages; - - if (mRandomOption & MANUAL_CHANGE_PAGE_TABLE) { - ExpctedEntryNumber =3D ExpctedEntryNumber/2; - } - - for (Index =3D 0; Index < ExpctedEntryNumber; Index++) { - TestStatus =3D SingleMapEntryTest ( - &PageTable, - PagingMode, - MaxAddress, - MapEntrys, - PagesRecord, - NULL, - 0 - ); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - } - - if ((mRandomOption & MANUAL_CHANGE_PAGE_TABLE) !=3D 0) { - MapEntrys->InitCount =3D ExpctedEntryNumber; - TestStatus =3D ValidateAndRandomeModifyPageTable (PageTabl= e, PagingMode); - RandomNumber =3D 0; - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - - InitMapCount =3D 0; - Status =3D PageTableParse (PageTable, PagingMode, NULL, &InitM= apCount); - if (InitMapCount !=3D 0) { - UT_ASSERT_EQUAL (Status, RETURN_BUFFER_TOO_SMALL); - - // - // Allocate memory for Maps - // Note the memory is only used in this one Single MapEntry Test - // - InitMap =3D AllocatePages (EFI_SIZE_TO_PAGES (InitMapCount * sizeo= f (IA32_MAP_ENTRY))); - ASSERT (InitMap !=3D NULL); - Status =3D PageTableParse (PageTable, PagingMode, InitMap, &InitMa= pCount); - } - - UT_ASSERT_EQUAL (Status, RETURN_SUCCESS); - for (Index =3D 0; Index < ExpctedEntryNumber; Index++) { - TestStatus =3D SingleMapEntryTest ( - &PageTable, - PagingMode, - MaxAddress, - MapEntrys, - PagesRecord, - InitMap, - InitMapCount - ); - if (TestStatus !=3D UNIT_TEST_PASSED) { - return TestStatus; - } - } - - if (InitMapCount !=3D 0) { - FreePages (InitMap, EFI_SIZE_TO_PAGES (InitMapCount*sizeof (IA32_M= AP_ENTRY))); - } - } - - FreePages ( - MapEntrys, - EFI_SIZE_TO_PAGES (1000*sizeof (MAP_ENTRY) + sizeof (MAP_ENTRYS)) - ); - - for (Index =3D 0; Index < PagesRecord->Count; Index++) { - FreePages (PagesRecord->Records[Index].Buffer, PagesRecord->Records[= Index].Pages); - } - - FreePages (PagesRecord, EFI_SIZE_TO_PAGES (1000*sizeof (ALLOCATE_PAGE_= RECORD) + sizeof (ALLOCATE_PAGE_RECORDS))); - - return UNIT_TEST_PASSED; -} - -/** - Random Test - - @param[in] Context [Optional] An optional parameter that enables: - 1) test-case reuse with varied parameters and - 2) test-case re-entry for Target tests that nee= d a - reboot. This parameter is a VOID* and it is th= e - responsibility of the test author to ensure tha= t the - contents are well understood by all test cases = that may - consume it. - - @retval UNIT_TEST_PASSED The Unit test has completed and = the test - case was successful. - @retval UNIT_TEST_ERROR_TEST_FAILED A test case assertion has failed= . -**/ -UNIT_TEST_STATUS -EFIAPI -TestCaseforRandomTest ( - IN UNIT_TEST_CONTEXT Context - ) -{ - UNIT_TEST_STATUS Status; - UINTN Index; - - UT_ASSERT_EQUAL (RandomSeed (NULL, 0), TRUE); - UT_ASSERT_EQUAL (Random32 (100, 100), 100); - UT_ASSERT_EQUAL (Random64 (100, 100), 100); - UT_ASSERT_TRUE ((Random32 (9, 10) >=3D 9) & (Random32 (9, 10) <=3D 10)= ); - UT_ASSERT_TRUE ((Random64 (9, 10) >=3D 9) & (Random64 (9, 10) <=3D 10)= ); - - mSupportedBit.Bits.Present =3D 1; - mSupportedBit.Bits.ReadWrite =3D 1; - mSupportedBit.Bits.UserSupervisor =3D 1; - mSupportedBit.Bits.WriteThrough =3D 1; - mSupportedBit.Bits.CacheDisabled =3D 1; - mSupportedBit.Bits.Accessed =3D 1; - mSupportedBit.Bits.Dirty =3D 1; - mSupportedBit.Bits.Pat =3D 1; - mSupportedBit.Bits.Global =3D 1; - mSupportedBit.Bits.Reserved1 =3D 0; - mSupportedBit.Bits.PageTableBaseAddress =3D 0; - mSupportedBit.Bits.Reserved2 =3D 0; - mSupportedBit.Bits.ProtectionKey =3D 0xF; - mSupportedBit.Bits.Nx =3D 1; - - mRandomOption =3D ((CPU_PAGE_TABLE_LIB_RANDOM_TEST_CONTEXT *)Context)-= RandomOption;- mNumberIndex =3D 0; - - for (Index =3D 0; Index < ((CPU_PAGE_TABLE_LIB_RANDOM_TEST_CONTEXT *)C= ontext)->TestCount; Index++) { - Status =3D MultipleMapEntryTest ( - ((CPU_PAGE_TABLE_LIB_RANDOM_TEST_CONTEXT *)Context)->Test= RangeCount, - ((CPU_PAGE_TABLE_LIB_RANDOM_TEST_CONTEXT *)Context)->Pagi= ngMode - ); - if (Status !=3D UNIT_TEST_PASSED) { - return Status; - } - - DEBUG ((DEBUG_INFO, ".")); - } - - DEBUG ((DEBUG_INFO, "\n")); - - return UNIT_TEST_PASSED; -} diff --git a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/TestHelper.c b/U= efiCpuPkg/Library/CpuPageTableLib/UnitTest/TestHelper.c deleted file mode 100644 index 5bd70c0f65..0000000000 --- a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/TestHelper.c +++ /dev/null @@ -1,309 +0,0 @@ -/** @file - helper file for Unit tests of the CpuPageTableLib instance of the CpuP= ageTableLib class - - Copyright (c) 2022, Intel Corporation. All rights reserved.<BR> - SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -#include "CpuPageTableLibUnitTest.h" -#include "../CpuPageTable.h" - -// -// Global Data to validate if the page table is legal -// mValidMaskNoLeaf[0] is not used -// mValidMaskNoLeaf[1] ... mValidMaskNoLeaf [5] represent PTE ... PML5E -// mValidMaskNoLeaf[Index] means if it is a valid no leaf entry, entry s= hould equal to (entry & mValidMaskNoLeaf[Index]) -// mValidMaskLeaf[Index] means if it is a valid leaf entry, entry should= equal to (entry & mValidMaskLeaf[Index]) -// mValidMaskLeafFlag[Index] means if it is a leaf entry, if and only if= ((entry & mValidMaskLeafFlag[Index]) =3D=3D mValidMaskLeafFlag[Index]) -// -IA32_PAGING_ENTRY mValidMaskNoLeaf[6]; -IA32_PAGING_ENTRY mValidMaskLeaf[6]; -IA32_PAGING_ENTRY mValidMaskLeafFlag[6]; - -/** - Init global data. - - @param[in] MemorySpace Memory space -**/ -VOID -InitGlobalData ( - UINTN MemorySpace - ) -{ - UINTN Index; - - ASSERT (MemorySpace <=3D 52); - mValidMaskNoLeaf[0].Uint64 =3D 0; - mValidMaskLeaf[0].Uint64 =3D 0; - mValidMaskLeafFlag[0].Uint64 =3D 0; - - // - // Set common part for all kinds of entrys. - // - for (Index =3D 1; Index < 6; Index++) { - mValidMaskNoLeaf[Index].Uint64 =3D MAX_UINT64; - mValidMaskLeaf[Index].Uint64 =3D MAX_UINT64; - - // - // bit 51:M is reserved, and should be zero - // - if (MemorySpace - 1 < 51) { - mValidMaskNoLeaf[Index].Uint64 =3D BitFieldWrite64 (mValidMaskNoLe= af[Index].Uint64, MemorySpace - 1, 51, 0); - mValidMaskLeaf[Index].Uint64 =3D BitFieldWrite64 (mValidMaskLeaf= [Index].Uint64, MemorySpace - 1, 51, 0); - } - } - - // - // Handle mask for no leaf entry. - // - mValidMaskNoLeaf[1].Uint64 =3D 0; // PTE can't map to pa= ge structure. - mValidMaskNoLeaf[2].Pnle.Bits.MustBeZero =3D 0; // for PML4E, bit 7 mu= st be zero. - mValidMaskNoLeaf[3].Pnle.Bits.MustBeZero =3D 0; // for PML5E, bit 7 mu= st be zero. - mValidMaskNoLeaf[4].Pml4.Bits.MustBeZero =3D 0; // for PML4E, bit 7 mu= st be zero. - mValidMaskNoLeaf[5].Pml4.Bits.MustBeZero =3D 0; // for PML5E, bit 7 mu= st be zero. - - // - // Handle mask for leaf entry. - // No need to modification for PTE, since it doesn't have extra reserv= ed bit - // - mValidMaskLeaf[2].Uint64 =3D BitFieldWrite64 (mValidMaskLeaf[2].Uint64= , 13, 20, 0); // bit 13-20 is reserved for PDE - mValidMaskLeaf[3].Uint64 =3D BitFieldWrite64 (mValidMaskLeaf[2].Uint64= , 13, 29, 0); // bit 13-29 is reserved for PDPTE - mValidMaskLeaf[4].Uint64 =3D 0; = // for PML4E, no possible to map to page. - mValidMaskLeaf[5].Uint64 =3D 0; = // for PML5E, no possible to map to page. - - // - // Handle Flags to indicate it is a leaf entry. - // for PML4E and PML5E, no possible to map to page, so the flag should= be MAX_UINT64. - // - mValidMaskLeafFlag[1].Pce.Present =3D 1; // For PTE, as long as it is = present, it maps to page - // - // For PDE and PDPTE, the bit 7 should be set to map to pages - // - mValidMaskLeafFlag[2].Pde2M.Bits.MustBeOne =3D 1; - mValidMaskLeafFlag[2].Pde2M.Bits.Present =3D 1; - mValidMaskLeafFlag[3].Pde2M.Bits.MustBeOne =3D 1; - mValidMaskLeafFlag[3].Pde2M.Bits.Present =3D 1; - mValidMaskLeafFlag[4].Uint64 =3D MAX_UINT64; - mValidMaskLeafFlag[5].Uint64 =3D MAX_UINT64; -} - -/** - Check if the Page table entry is valid - - @param[in] PagingEntry The entry in page table to verify - @param[in] Level the level of PagingEntry. - @param[in] MaxLeafLevel Max leaf entry level. - @param[in] LinearAddress The linear address verified. - - @retval Leaf entry. -**/ -UNIT_TEST_STATUS -IsPageTableEntryValid ( - IN IA32_PAGING_ENTRY *PagingEntry, - IN UINTN Level, - IN UINTN MaxLeafLevel, - IN UINT64 Address - ) -{ - UINT64 Index; - IA32_PAGING_ENTRY *ChildPageEntry; - UNIT_TEST_STATUS Status; - - if (PagingEntry->Pce.Present =3D=3D 0) { - return UNIT_TEST_PASSED; - } - - if ((PagingEntry->Uint64 & mValidMaskLeafFlag[Level].Uint64) =3D=3D mV= alidMaskLeafFlag[Level].Uint64) { - // - // It is a Leaf - // - if (Level > MaxLeafLevel) { - DEBUG ((DEBUG_ERROR, "ERROR: Level %d entry 0x%lx is a leaf entry,= but max leaf level is %d \n", Level, PagingEntry->Uint64, MaxLeafLevel))= ; - UT_ASSERT_TRUE (Level <=3D MaxLeafLevel); - } - - if ((PagingEntry->Uint64 & mValidMaskLeaf[Level].Uint64) !=3D Paging= Entry->Uint64) { - DEBUG ((DEBUG_ERROR, "ERROR: Level %d Leaf entry is 0x%lx, which r= eserved bit is set \n", Level, PagingEntry->Uint64)); - UT_ASSERT_EQUAL ((PagingEntry->Uint64 & mValidMaskLeaf[Level].Uint= 64), PagingEntry->Uint64); - } - - return UNIT_TEST_PASSED; - } - - // - // Not a leaf - // - UT_ASSERT_NOT_EQUAL (Level, 1); - if ((PagingEntry->Uint64 & mValidMaskNoLeaf[Level].Uint64) !=3D Paging= Entry->Uint64) { - DEBUG ((DEBUG_ERROR, "ERROR: Level %d no Leaf entry is 0x%lx, which = reserved bit is set \n", Level, PagingEntry->Uint64)); - UT_ASSERT_EQUAL ((PagingEntry->Uint64 & mValidMaskNoLeaf[Level].Uint= 64), PagingEntry->Uint64); - } - - ChildPageEntry =3D (IA32_PAGING_ENTRY *)(UINTN)(((UINTN)(PagingEntry-= Pnle.Bits.PageTableBaseAddress)) << 12);- for (Index =3D 0; Index < 512; Index++) { - Status =3D IsPageTableEntryValid (&ChildPageEntry[Index], Level-1, M= axLeafLevel, Address + (Index<<(9*(Level-1) + 3))); - if (Status !=3D UNIT_TEST_PASSED) { - return Status; - } - } - - return UNIT_TEST_PASSED; -} - -/** - Check if the Page table is valid - - @param[in] PageTable The pointer to the page table. - @param[in] PagingMode The paging mode. - - @retval UNIT_TEST_PASSED It is a valid Page Table -**/ -UNIT_TEST_STATUS -IsPageTableValid ( - IN UINTN PageTable, - IN PAGING_MODE PagingMode - ) -{ - UINTN MaxLevel; - UINTN MaxLeafLevel; - UINT64 Index; - UNIT_TEST_STATUS Status; - IA32_PAGING_ENTRY *PagingEntry; - - if ((PagingMode =3D=3D Paging32bit) || (PagingMode =3D=3D PagingPae) |= | (PagingMode >=3D PagingModeMax)) { - // - // 32bit paging is never supported. - // PAE paging will be supported later. - // - return UNIT_TEST_ERROR_TEST_FAILED; - } - - MaxLeafLevel =3D (UINT8)PagingMode; - MaxLevel =3D (UINT8)(PagingMode >> 8); - - PagingEntry =3D (IA32_PAGING_ENTRY *)(UINTN)PageTable; - for (Index =3D 0; Index < 512; Index++) { - Status =3D IsPageTableEntryValid (&PagingEntry[Index], MaxLevel, Max= LeafLevel, Index << (9 * MaxLevel + 3)); - if (Status !=3D UNIT_TEST_PASSED) { - return Status; - } - } - - return Status; -} - -/** - Get the leaf entry for a given linear address from one entry in page t= able - - @param[in] PagingEntry The entry in page table which covers t= he linear address - @param[in, out] Level On input, is the level of PagingEntry. - On outout, is the level of the leaf en= try - @param[in] MaxLeafLevel Max leaf entry level. - @param[in] LinearAddress The linear address. - - @retval Leaf entry. -**/ -UINT64 -GetEntryFromSubPageTable ( - IN IA32_PAGING_ENTRY *PagingEntry, - IN OUT UINTN *Level, - IN UINTN MaxLeafLevel, - IN UINT64 Address - ) -{ - UINT64 Index; - IA32_PAGING_ENTRY *ChildPageEntry; - - if (PagingEntry->Pce.Present =3D=3D 0) { - return 0; - } - - if ((PagingEntry->Uint64 & mValidMaskLeafFlag[*Level].Uint64) =3D=3D m= ValidMaskLeafFlag[*Level].Uint64) { - // - // It is a Leaf - // - return PagingEntry->Uint64; - } - - // - // Not a leaf - // - ChildPageEntry =3D (IA32_PAGING_ENTRY *)(UINTN)(((UINTN)(PagingEntry-= Pnle.Bits.PageTableBaseAddress)) << 12);- *Level =3D *Level -1; - Index =3D Address >> (*Level * 9 + 3); - ASSERT (Index =3D=3D (Index & ((1<< 9) - 1))); - - return GetEntryFromSubPageTable (&ChildPageEntry[Index], Level, MaxLea= fLevel, Address - (Index << (9 * *Level + 3))); -} - -/** - Get the leaf entry for a given linear address from a page table - - @param[in] PageTable The pointer to the page table. - @param[in] PagingMode The paging mode. - @param[in] LinearAddress The linear address. - @param[out] Level leaf entry's level. - - @retval Leaf entry. -**/ -UINT64 -GetEntryFromPageTable ( - IN UINTN PageTable, - IN PAGING_MODE PagingMode, - IN UINT64 Address, - OUT UINTN *Level - ) -{ - UINTN MaxLevel; - UINTN MaxLeafLevel; - UINT64 Index; - IA32_PAGING_ENTRY *PagingEntry; - - if ((PagingMode =3D=3D Paging32bit) || (PagingMode =3D=3D PagingPae) |= | (PagingMode >=3D PagingModeMax)) { - // - // 32bit paging is never supported. - // PAE paging will be supported later. - // - return 0; - } - - MaxLeafLevel =3D (UINT8)PagingMode; - MaxLevel =3D (UINT8)(PagingMode >> 8); - - Index =3D Address >> (MaxLevel * 9 + 3); - ASSERT (Index =3D=3D (Index & ((1<< 9) - 1))); - PagingEntry =3D (IA32_PAGING_ENTRY *)(UINTN)PageTable; - *Level =3D MaxLevel; - - return GetEntryFromSubPageTable (&PagingEntry[Index], Level, MaxLeafLe= vel, Address - (Index << (9 * MaxLevel + 3))); -} - -/** - Get max physical adrress supported by specific page mode - - @param[in] Mode The paging mode. - - @retval max address. -**/ -UINT64 -GetMaxAddress ( - IN PAGING_MODE Mode - ) -{ - switch (Mode) { - case Paging32bit: - case PagingPae: - return SIZE_4GB; - - case Paging4Level: - case Paging4Level1GB: - case Paging5Level: - case Paging5Level1GB: - return 1ull << MIN (12 + (Mode >> 8) * 9, 52); - - default: - ASSERT (0); - return 0; - } -} diff --git a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTableLibU= nitTest.h b/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTableLibUn= itTest.h deleted file mode 100644 index 801d718e44..0000000000 --- a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTableLibUnitTest= .h +++ /dev/null @@ -1,117 +0,0 @@ -/** @file - - Copyright (c) 2022, Intel Corporation. All rights reserved.<BR> - SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -#ifndef CPU_PAGE_TABLE_SUPPORT_H_ -#define CPU_PAGE_TABLE_SUPPORT_H_ - -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <stdarg.h> -#include <stddef.h> -#include <setjmp.h> -#include <cmocka.h> -#include <time.h> - -#include <Uefi.h> -#include <Library/BaseLib.h> -#include <Library/BaseMemoryLib.h> -#include <Library/DebugLib.h> -#include <Library/UnitTestLib.h> -#include <Library/CpuPageTableLib.h> -#include <Library/MemoryAllocationLib.h> -#include <Library/UnitTestHostBaseLib.h> -#include <Library/BaseCryptLib.h> -#include "../CpuPageTable.h" - -#define UNIT_TEST_APP_NAME "Cpu Page Table Lib Unit Tests" -#define UNIT_TEST_APP_VERSION "1.0" - -// -// Random Options -// - -// -// Only test one-one mapping case -// -#define ONLY_ONE_ONE_MAPPING 0x00000001 - -// -// Change page table without using function PageTableMap, and use the mo= dified page table as input -// -#define MANUAL_CHANGE_PAGE_TABLE 0x00000002 - -// -// Use pre-generated random number array to generate random number -// -#define USE_RANDOM_ARRAY 0x00000004 - -typedef struct { - PAGING_MODE PagingMode; - UINTN TestCount; - UINTN TestRangeCount; - UINTN RandomOption; -} CPU_PAGE_TABLE_LIB_RANDOM_TEST_CONTEXT; - -/** - Random Test - - @param[in] Context [Optional] An optional parameter that enables: - 1) test-case reuse with varied parameters and - 2) test-case re-entry for Target tests that nee= d a - reboot. This parameter is a VOID* and it is th= e - responsibility of the test author to ensure tha= t the - contents are well understood by all test cases = that may - consume it. - - @retval UNIT_TEST_PASSED The Unit test has completed and = the test - case was successful. - @retval UNIT_TEST_ERROR_TEST_FAILED A test case assertion has failed= . -**/ -UNIT_TEST_STATUS -EFIAPI -TestCaseforRandomTest ( - IN UNIT_TEST_CONTEXT Context - ); - -/** - Init global data - - @param[in] MemorySpace Memory space -**/ -VOID -InitGlobalData ( - UINTN MemorySpace - ); - -/** - Check if the Page table is valid - - @param[in] PageTable The pointer to the page table. - @param[in] PagingMode The paging mode. - - @retval UNIT_TEST_PASSED It is a valid Page Table -**/ -UNIT_TEST_STATUS -IsPageTableValid ( - IN UINTN PageTable, - IN PAGING_MODE PagingMode - ); - -/** - Get max physical adrress supported by specific page mode - - @param[in] Mode The paging mode. - - @retval max address. -**/ -UINT64 -GetMaxAddress ( - IN PAGING_MODE Mode - ); - -#endif diff --git a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTableLibU= nitTestHost.inf b/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTabl= eLibUnitTestHost.inf deleted file mode 100644 index eb71c5ad68..0000000000 --- a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTableLibUnitTest= Host.inf +++ /dev/null @@ -1,42 +0,0 @@ -## @file -# Unit tests of the CpuPageTableLib instance of the CpuPageTableLib clas= s -# -# Copyright (c) 2022, Intel Corporation. All rights reserved.<BR> -# SPDX-License-Identifier: BSD-2-Clause-Patent -## - -[Defines] - INF_VERSION =3D 0x00010006 - BASE_NAME =3D CpuPageTableLibUnitTestHost - FILE_GUID =3D D8DC32C2-7272-43A8-B145-1723BED8E11= 9 - MODULE_TYPE =3D HOST_APPLICATION - VERSION_STRING =3D 1.0 - -# -# The following information is for reference only and not required by th= e build tools. -# -# VALID_ARCHITECTURES =3D IA32 X64 -# - -[Sources] - CpuPageTableLibUnitTestHost.c - RandomTest.c - TestHelper.c - RandomNumber.c - RandomTest.h - CpuPageTableLibUnitTest.h - -[Packages] - MdePkg/MdePkg.dec - UefiCpuPkg/UefiCpuPkg.dec - UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec - CryptoPkg/CryptoPkg.dec - -[LibraryClasses] - BaseLib - BaseMemoryLib - DebugLib - CpuPageTableLib - UnitTestLib - MemoryAllocationLib - BaseCryptLib diff --git a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomTest.h b/U= efiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomTest.h deleted file mode 100644 index cdc81e0af3..0000000000 --- a/UefiCpuPkg/Library/CpuPageTableLib/UnitTest/RandomTest.h +++ /dev/null @@ -1,57 +0,0 @@ -/** @file - Internal header for Random test. - - Copyright (c) 2022, Intel Corporation. All rights reserved.<BR> - SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -#ifndef RANDOM_TEST_H_ -#define RANDOM_TEST_H_ - -#include "CpuPageTableLibUnitTest.h" - -typedef struct _ALLOCATE_PAGE_RECORDS ALLOCATE_PAGE_RECORDS; - -typedef -VOID * -(EFIAPI *ALLOCATE_PAGES)( - IN ALLOCATE_PAGE_RECORDS *PagesRecord, - IN UINTN Pages - ); - -typedef struct { - VOID *Buffer; - UINTN Pages; -} ALLOCATE_PAGE_RECORD; - -struct _ALLOCATE_PAGE_RECORDS { - UINTN Count; - UINTN MaxCount; - ALLOCATE_PAGES AllocatePagesForPageTable; - ALLOCATE_PAGE_RECORD Records[0]; -}; - -typedef struct { - UINT64 LinearAddress; - UINT64 Length; - IA32_MAP_ATTRIBUTE Attribute; - IA32_MAP_ATTRIBUTE Mask; -} MAP_ENTRY; - -typedef struct { - UINTN Count; - UINTN InitCount; - UINTN MaxCount; - MAP_ENTRY Maps[10]; -} MAP_ENTRYS; - -UINT64 -GetEntryFromPageTable ( - IN UINTN PageTable, - IN PAGING_MODE PagingMode, - IN UINT64 Address, - OUT UINTN *Level - ); - -#endif diff --git a/UefiCpuPkg/Test/UefiCpuPkgHostTest.dsc b/UefiCpuPkg/Test/Uef= iCpuPkgHostTest.dsc index e72e4cd622..8a5c456830 100644 --- a/UefiCpuPkg/Test/UefiCpuPkgHostTest.dsc +++ b/UefiCpuPkg/Test/UefiCpuPkgHostTest.dsc @@ -20,10 +20,6 @@ =20 [LibraryClasses] MtrrLib|UefiCpuPkg/Library/MtrrLib/MtrrLib.inf - CpuPageTableLib|UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf - OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf - BaseCryptLib|CryptoPkg/Library/BaseCryptLib/UnitTestHostBaseCryptLib.i= nf - RngLib|MdePkg/Library/BaseRngLib/BaseRngLib.inf =20 [PcdsPatchableInModule] gUefiCpuPkgTokenSpaceGuid.PcdCpuNumberOfReservedVariableMtrrs|0 @@ -33,8 +29,3 @@ # Build HOST_APPLICATION that tests the MtrrLib # UefiCpuPkg/Library/MtrrLib/UnitTest/MtrrLibUnitTestHost.inf - - # - # Build HOST_APPLICATION that tests the CpuPageTableLib - # - UefiCpuPkg/Library/CpuPageTableLib/UnitTest/CpuPageTableLibUnitTestHos= t.inf diff --git a/UefiCpuPkg/UefiCpuPkg.ci.yaml b/UefiCpuPkg/UefiCpuPkg.ci.yam= l index bbdc44a45b..6e0ab95fd8 100644 --- a/UefiCpuPkg/UefiCpuPkg.ci.yaml +++ b/UefiCpuPkg/UefiCpuPkg.ci.yaml @@ -15,7 +15,6 @@ ## "<ErrorID>", "<KeyWord>" ## ] "ExceptionList": [ - "8006", "main" ], ## Both file path and directory path are accepted. "IgnoreFiles": [ @@ -39,8 +38,7 @@ ], # For host based unit tests "AcceptableDependencies-HOST_APPLICATION":[ - "UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec", - "CryptoPkg/CryptoPkg.dec" + "UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec" ], # For UEFI shell based apps "AcceptableDependencies-UEFI_APPLICATION":[], --=20 2.27.0.windows.1
|
|
[edk2-stable202208 3/3] Revert "BaseTools: Fix DSC LibraryClass precedence rule"
gaoliming
This reverts commit 039bdb4d3e96f9c9264abf135b8a0eef2e2b4860 for tag20220=
8. This brings the behavior changes, and needs more discussion. Signed-off-by: Liming Gao <gaoliming@...> Cc: Yuwei Chen <yuwei.chen@...> Cc: Bob Feng <bob.c.feng@...> --- BaseTools/Source/Python/Workspace/DscBuildData.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BaseTools/Source/Python/Workspace/DscBuildData.py b/BaseTool= s/Source/Python/Workspace/DscBuildData.py index 41f93c93f2..e9f68384b4 100644 --- a/BaseTools/Source/Python/Workspace/DscBuildData.py +++ b/BaseTools/Source/Python/Workspace/DscBuildData.py @@ -872,7 +872,7 @@ class DscBuildData(PlatformBuildClassObject): if ModuleType !=3D TAB_COMMON and ModuleType not in SUP_= MODULE_LIST: EdkLogger.error('build', OPTION_UNKNOWN, "Unknown mo= dule type [%s]" % ModuleType, File=3Dself.MetaFile, ExtraData=3DLi= braryInstance, Line=3DLineNo) - LibraryClassDict[ModuleType, Arch, LibraryClass] =3D Lib= raryInstance + LibraryClassDict[Arch, ModuleType, LibraryClass] =3D Lib= raryInstance if LibraryInstance not in self._LibraryInstances: self._LibraryInstances.append(LibraryInstance) =20 @@ -881,7 +881,7 @@ class DscBuildData(PlatformBuildClassObject): for LibraryClass in LibraryClassSet: # try all possible module types for ModuleType in SUP_MODULE_LIST: - LibraryInstance =3D LibraryClassDict[ModuleType, sel= f._Arch, LibraryClass] + LibraryInstance =3D LibraryClassDict[self._Arch, Mod= uleType, LibraryClass] if LibraryInstance is None: continue self._LibraryClasses[LibraryClass, ModuleType] =3D L= ibraryInstance --=20 2.27.0.windows.1
|
|
Re: TianoCore edk2-test Bug Triage Meeting
Geer, Ken (EXL)
Hi Edhaya,
I regret I have been unable to attend or contribute to this meeting. Terry Lee, (Terry Lee terry.lee@... ) whom some on this team know, will be taking my place. Picking my successor is no doubt my best contribution so far… 😊
Please update the invite to add terry and drop me. Thank you!
Thank you.
Ken Geer Superdome Flex Security Architect, CISSP HPE Mission Critical Servers, Enterprise X86 Lab
-----Original Appointment-----
From: G Edhaya Chandran <Edhaya.Chandran@...>
Sent: Tuesday, September 7, 2021 12:45 AM To: G Edhaya Chandran; Samer El-Haj-Mahmoud; Barton Gao; Heinrich Schuchardt; Venkatesh, Supreeth; Gjertsen, Carolyn; Sunny Wang; Mark Woods; Grant Likely; Joseph Hemann; Stuart Yoder; Jeremy Linton; Paul Yang; Vincent Stehle; Rob Herring; devel@edk2.groups.io Cc: gaoliming; 'Hsiung, Harry L'; 'Guptha, Soumya K'; 'Kinney, Michael D'; heinrich.schuchardt@...; Dong Wei Subject: TianoCore edk2-test Bug Triage Meeting When: Occurs the first Thursday of every 1 month(s) effective 9/2/2021 until 9/2/2022 from 7:30 PM to 8:30 PM (UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi. Where: https://armltd.zoom.us/j/93809865843?pwd=dU1hSzk4NHM2RGhaRDRyWWZxUzY5dz09&from=addon
TianoCore edk2-test Bug Triage meeting Hosted by: G Edhaya Chandran, Barton Gao
Updated the series to monthly. Changed the medium to Zoom
Agenda: • Discussion on the progress of the BZ tickets dispositioned in the previous meeting • Dispositioning the the new BZ tickets • Specific agenda items from the community members
Edhaya Chandran G is inviting you to a scheduled Zoom meeting. IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
|
|
回复: [edk2-devel] BaseTools no longer builds on macOS: "error: unknown warning option '-Werror=stringop-overflow'"
gaoliming
Mike: I agree with you.
Thanks Liming 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Michael D Kinney
Hi Rebecca,
+Liming
This looks like a low risk change to me. But given that the release is supposed to occur tonight, we may need to delay the release 1-2 days to make sure there are no side effects.
Can you please prepare a patch with this change for review and make sure it is marked for this stable tag.
There is one other revert being considered, so a delay of 1-2 days may be appropriate for that issue as well.
Mike
From: Rebecca Cran <rebecca@...>
Sent: Thursday, August 25, 2022 4:13 PM To: devel@edk2.groups.io; afish@... Cc: Kinney, Michael D <michael.d.kinney@...> Subject: Re: [edk2-devel] BaseTools no longer builds on macOS: "error: unknown warning option '-Werror=stringop-overflow'"
Thanks, that patch works. Is it too late to get it in for the stable tag?
Reviewed-by: Rebecca Cran <rebecca@...>
On 8/25/22 11:49, Andrew Fish via groups.io wrote:
|
|
Re: [PATCH edk2-stable202208 1/1] BaseTools: Fix DevicePath GNUmakefile for macOS
Michael D Kinney
Reviewed-by: Michael D Kinney <michael.d.kinney@...>
toggle quoted messageShow quoted text
I approve for edk2-stable202208 Mike
-----Original Message-----
|
|
Re: BaseTools no longer builds on macOS: "error: unknown warning option '-Werror=stringop-overflow'"
Rebecca Cran
Thanks. I've submitted it - the subject is "[PATCH edk2-stable202208 1/1] BaseTools: Fix DevicePath GNUmakefile for macOS"
-- Rebecca Cran
On 8/25/2022 5:51 PM, Kinney, Michael D
wrote:
|
|
[PATCH edk2-stable202208 1/1] BaseTools: Fix DevicePath GNUmakefile for macOS
Rebecca Cran
On macOS, /usr/bin/gcc is clang, and so doesn't have
the -Wno-error=stringop-overflow flag that was added for gcc 12. Update the GNUmakefile for DevicePath to skip setting that on macOS. Signed-off-by: Rebecca Cran <rebecca@...> --- BaseTools/Source/C/DevicePath/GNUmakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BaseTools/Source/C/DevicePath/GNUmakefile b/BaseTools/Source/C/DevicePath/GNUmakefile index c217674345b1..17f213879e82 100644 --- a/BaseTools/Source/C/DevicePath/GNUmakefile +++ b/BaseTools/Source/C/DevicePath/GNUmakefile @@ -16,10 +16,12 @@ include $(MAKEROOT)/Makefiles/app.makefile GCCVERSION = $(shell gcc -dumpversion | awk -F'.' '{print $$1}') ifneq ("$(GCCVERSION)", "5") ifneq ($(CXX), llvm) +ifneq ($(DARWIN),Darwin) # gcc 12 trips over device path handling BUILD_CFLAGS += -Wno-error=stringop-overflow endif endif +endif LIBS = -lCommon ifeq ($(CYGWIN), CYGWIN) -- 2.30.1 (Apple Git-130)
|
|
Re: MdeModulePkg build fails for AARCH64 on Ubuntu 22.04
Bob Feng
+ Huang Long, the bug submitter.
toggle quoted messageShow quoted text
I am OK to revert this patch for this stable tag. Since this patch break the MdeModulePkg build, also suggest to add this case in edk2 CI. Thanks, Bob
-----Original Message-----
From: Kinney, Michael D <michael.d.kinney@...> Sent: Thursday, August 25, 2022 11:44 PM To: devel@edk2.groups.io; quic_llindhol@...; Feng, Bob C <bob.c.feng@...>; Gao, Liming <gaoliming@...>; 'Ard Biesheuvel' <ardb@...>; rebecca@...; Chen, Christine <yuwei.chen@...>; Kinney, Michael D <michael.d.kinney@...> Cc: 'Andrew Fish' <afish@...>; Wang, Jian J <jian.j.wang@...> Subject: RE: [edk2-devel] MdeModulePkg build fails for AARCH64 on Ubuntu 22.04 Hi Bob, There was feedback in the Bugzilla on July 5 asking if this is a DSC spec issue or a BaseTools implementation issue. There was no response to that question. Why was a spec change not considered for this case to match the BaseTools behavior? Why were no additional details added to the BZ? I agree with Leif. If this change introduced regressions, we should consider a revert and evaluate again after the release. Thanks, Mike -----Original Message-----
|
|
[PATCH 1/1] OvmfPkg: Set default Pci PCDs in Tdx guest
Min Xu
From: Min M Xu <min.m.xu@...>
In previous implementation below Pci related PCDs were set based on the ResourceDescriptor passed in TdHob. - PcdPciMmio64Base / PcdPciMmio64Size - PcdPciMmio32Base / PcdPciMmio32Size - PcdPciIoBase / PcdPciIoSize The PCDs will not be set if TdHob doesn't include these information. This patch set the PCDs with the information initialized in PlatformInitLib by default. Then TdxDxe will check the ResourceDescriptor in TdHob and reset them if they're included. Cc: Erdem Aktas <erdemaktas@...> Cc: James Bottomley <jejb@...> Cc: Jiewen Yao <jiewen.yao@...> Cc: Gerd Hoffmann <kraxel@...> Cc: Tom Lendacky <thomas.lendacky@...> Signed-off-by: Min Xu <min.m.xu@...> --- OvmfPkg/TdxDxe/TdxDxe.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/OvmfPkg/TdxDxe/TdxDxe.c b/OvmfPkg/TdxDxe/TdxDxe.c index 2318db989792..bfdaef59dd58 100644 --- a/OvmfPkg/TdxDxe/TdxDxe.c +++ b/OvmfPkg/TdxDxe/TdxDxe.c @@ -68,20 +68,20 @@ SetPcdSettings ( PcdStatus = PcdSet64S (PcdTdxSharedBitMask, TdSharedPageMask ()); ASSERT_RETURN_ERROR (PcdStatus); DEBUG ((DEBUG_INFO, "TdxSharedBitMask=0x%llx\n", PcdGet64 (PcdTdxSharedBitMask))); - } else { - PcdStatus = PcdSet64S (PcdPciMmio64Base, PlatformInfoHob->PcdPciMmio64Base); - ASSERT_RETURN_ERROR (PcdStatus); - PcdStatus = PcdSet64S (PcdPciMmio64Size, PlatformInfoHob->PcdPciMmio64Size); - ASSERT_RETURN_ERROR (PcdStatus); - PcdStatus = PcdSet64S (PcdPciMmio32Base, PlatformInfoHob->PcdPciMmio32Base); - ASSERT_RETURN_ERROR (PcdStatus); - PcdStatus = PcdSet64S (PcdPciMmio32Size, PlatformInfoHob->PcdPciMmio32Size); - ASSERT_RETURN_ERROR (PcdStatus); - PcdStatus = PcdSet64S (PcdPciIoBase, PlatformInfoHob->PcdPciIoBase); - ASSERT_RETURN_ERROR (PcdStatus); - PcdStatus = PcdSet64S (PcdPciIoSize, PlatformInfoHob->PcdPciIoSize); - ASSERT_RETURN_ERROR (PcdStatus); } + + PcdStatus = PcdSet64S (PcdPciMmio64Base, PlatformInfoHob->PcdPciMmio64Base); + ASSERT_RETURN_ERROR (PcdStatus); + PcdStatus = PcdSet64S (PcdPciMmio64Size, PlatformInfoHob->PcdPciMmio64Size); + ASSERT_RETURN_ERROR (PcdStatus); + PcdStatus = PcdSet64S (PcdPciMmio32Base, PlatformInfoHob->PcdPciMmio32Base); + ASSERT_RETURN_ERROR (PcdStatus); + PcdStatus = PcdSet64S (PcdPciMmio32Size, PlatformInfoHob->PcdPciMmio32Size); + ASSERT_RETURN_ERROR (PcdStatus); + PcdStatus = PcdSet64S (PcdPciIoBase, PlatformInfoHob->PcdPciIoBase); + ASSERT_RETURN_ERROR (PcdStatus); + PcdStatus = PcdSet64S (PcdPciIoSize, PlatformInfoHob->PcdPciIoSize); + ASSERT_RETURN_ERROR (PcdStatus); } /** -- 2.29.2.windows.2
|
|
Re: MdeModulePkg build fails for AARCH64 on Ubuntu 22.04
Ni, Ray
I didn't check with Bob about that patch.
toggle quoted messageShow quoted text
I guess that was to fix a bug I found in BaseTools which didn't take care of the library override properly. Or the rule of the library override was in a chaos that didn't seem to be an understood rule. If some platforms happen to rely on this rule, I agree this is a risk. So, I think a better solution is to evaluate the library instance mapping before and after the patch. Thanks, Ray
-----Original Message-----
|
|
Re: BaseTools no longer builds on macOS: "error: unknown warning option '-Werror=stringop-overflow'"
Michael D Kinney
Hi Rebecca,
+Liming
This looks like a low risk change to me. But given that the release is supposed to occur tonight, we may need to delay the release 1-2 days to make sure there are no side effects.
Can you please prepare a patch with this change for review and make sure it is marked for this stable tag.
There is one other revert being considered, so a delay of 1-2 days may be appropriate for that issue as well.
Mike
From: Rebecca Cran <rebecca@...>
Thanks, that patch works. Is it too late to get it in for the stable tag?
Reviewed-by: Rebecca Cran <rebecca@...>
On 8/25/22 11:49, Andrew Fish via groups.io wrote:
|
|
Re: BaseTools no longer builds on macOS: "error: unknown warning option '-Werror=stringop-overflow'"
Rebecca Cran
Thanks, that patch works. Is it too late to get it in for the
stable tag?
Reviewed-by: Rebecca Cran <rebecca@...>
On 8/25/22 11:49, Andrew Fish via
groups.io wrote:
Maybe having the check last would be cleaner. |